-
Notifications
You must be signed in to change notification settings - Fork 8
Fix warnings, consistent include guards, clean up (some) includes #147
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
0d2db38
initial implementation
ebchin 190edd8
bugfixes
ebchin 2a7e7a1
refine allocators and memory
ebchin 78fe154
turn on cpp17
ebchin 3a095b1
spack package cpp17
ebchin c207411
more memory concepts, containers, and tests
ebchin 498c370
2d arrays and cleanup
ebchin 8d31ed8
2d arrays and managed arrays
ebchin 868c730
add benchmark
ebchin 88bc28c
allocator fixes, benchmarking tests, speed tests
ebchin 4e5c35d
small fixes
ebchin 331cb61
small changes, constexpr fixes
ebchin 749347f
add geometry types
ebchin 1912756
fix warnings with new data types
ebchin 990f285
initialize rhs
ebchin a1f69b0
consistent define guards
ebchin 139e487
fix warnings and update ctor
ebchin 03e70e6
fix axom debug def
ebchin 19e4a25
get rid of stack array
ebchin 20a8d5c
reduce debug output
ebchin 38451e6
fix axom_debug again
ebchin d6d92e9
Merge branch 'develop' into flex-array
ebchin da1bba6
fix compilation issues and warnings
ebchin 20d733d
fix more warnings
ebchin 5d1c39a
Merge branch 'develop' into flex-array
ebchin 58394ac
add comments and refine naming
ebchin bca0c29
add comments; more clear and consistent naming
ebchin ba23788
few more comments
ebchin d1876b0
more comments
ebchin dfaeaaf
add more comments, clean up comment style
ebchin 37cf352
clean up style
ebchin c3decc9
add comments
ebchin 461fce8
add comments and make style consistent
ebchin 841b6e7
add type alias
ebchin 0910c40
fix cuda warnings
ebchin 7820c64
add some more benchmarks
ebchin bce6b7d
fix macros
ebchin b6a27c1
add another disable
ebchin 6be0f6c
add lots of benchmarks
ebchin ecd8f9c
turn on more tests
ebchin d903462
add some more striders
ebchin 35f7b4a
more temp changes
ebchin 824c4c6
Merge branch 'flex-array' of github.com:LLNL/Tribol into flex-array
ebchin 64e24d6
add new stride implementation
ebchin 95f2ef1
change back to axom arrays
ebchin 49e25c1
Merge branch 'develop' into flex-array
ebchin b8bc5fe
restore containers and remove vector
ebchin e87b666
fix header list
ebchin d6b5387
remove vector, add host enzyme vars
ebchin 23ea2df
formatting
ebchin 2fbcae4
clang format
ebchin 5b8e108
fix include guard label
ebchin 0a484bc
refine enzyme implementation
ebchin 78274d1
remove printfs
ebchin 5d811a9
address review comments
ebchin 98a430d
fix indexing
ebchin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -81,6 +81,7 @@ class Tribol(CachedCMakePackage, CudaPackage, ROCmPackage): | |
|
|
||
| # Other libraries | ||
| depends_on("[email protected]:+lapack") | ||
| depends_on("[email protected]:+lapack", when="+enzyme") | ||
| depends_on("[email protected]:") | ||
|
|
||
| depends_on("[email protected]:", when="+raja") | ||
|
|
@@ -95,6 +96,8 @@ class Tribol(CachedCMakePackage, CudaPackage, ROCmPackage): | |
|
|
||
| depends_on("mfem+metis+mpi", when="+redecomp") | ||
| depends_on("mfem+asan", when="+asan") | ||
| # Tribol uses MFEM's enzyme header | ||
| depends_on("mfem+enzyme", when="+enzyme") | ||
|
|
||
| with when("+profiling"): | ||
| depends_on("caliper+mpi") | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.