-
Notifications
You must be signed in to change notification settings - Fork 0
changes for integration into proxySEM #39
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
29 commits
Select commit
Hold shift + click to select a range
86f6622
comment out assert calls which are not constexpr
rrsettgast 5d873d1
make camp more optional
rrsettgast abed558
some cmake fixes
rrsettgast 9c3f0d0
fixes for absolute paths in aggregateOrSplit.py
rrsettgast 6ff1f74
updated pmpl for data transfer
rrsettgast e6991d1
Merge branch 'main' into feature/integrationIntoProxySEM
rrsettgast 34c55b6
Merge branch 'feature/integrationIntoProxySEM' of github.com:GEOS-DEV…
rrsettgast 6d655d5
Merge branch 'main' into feature/integrationIntoProxySEM
rrsettgast 0582eed
use html url for submodules to avoid issues TotalEnergies staff were …
rrsettgast 64a16a7
change looping strategy for jacobian to static
rrsettgast 8abcdf3
templatize hard coded real types
rrsettgast ece7de7
some code review suggestions
rrsettgast 1c19a83
fix bug
rrsettgast f9232c3
try to fix bug again
rrsettgast a70ffbe
try to fix bug again
rrsettgast 8b0f231
try to fix bug again
rrsettgast b9cb71c
try to fix bug again
rrsettgast 7de0c15
cuda/std/tuple workaround and uncrustify
rrsettgast 3b4b89b
try again
rrsettgast 8598f07
try again
rrsettgast 2d82182
remove a bunch of crap...just don't use the bindings for cuda wihtout…
rrsettgast 3cba8eb
add cuda version through cmake
rrsettgast a34ddcf
try again buddy
rrsettgast 93cd3aa
stop listening to chat
rrsettgast 723a02c
fix some issues
rrsettgast cbca43c
add maple hostconfig
rrsettgast 85e40e0
some fixes
rrsettgast 28880b2
doxygen
rrsettgast 63d667d
Apply suggestions from code review
rrsettgast 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| # | ||
| set( PREPROCESSOR_DEFINES CUDA | ||
| HIP | ||
| CAMP | ||
| BOUNDS_CHECK | ||
| ) | ||
|
|
||
|
|
||
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 |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| set(CONFIG_NAME "maple_rocky9" CACHE PATH "") | ||
|
|
||
| set(COMPILER_DIR /opt/rh/gcc-toolset-13/root/ ) | ||
| set(CMAKE_C_COMPILER ${COMPILER_DIR}/bin/gcc CACHE PATH "") | ||
| set(CMAKE_CXX_COMPILER ${COMPILER_DIR}/bin/g++ CACHE PATH "") | ||
|
|
||
| # C++ options | ||
| set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG -mtune=native -march=native" CACHE STRING "") | ||
| set(CMAKE_CXX_FLAGS_RELWITHDEBINFO "-g ${CMAKE_CXX_FLAGS_RELEASE}" CACHE STRING "") | ||
| set(CMAKE_CXX_FLAGS_DEBUG "-O0 -g" CACHE STRING "") | ||
|
|
||
| # Cuda options | ||
| set(ENABLE_CUDA ON CACHE BOOL "") | ||
| set(CUDA_TOOLKIT_ROOT_DIR /hrtc/apps/cuda/12.6.20/aarch64/rocky9 CACHE STRING "") | ||
| set(CMAKE_CUDA_HOST_COMPILER ${CMAKE_CXX_COMPILER} CACHE STRING "") | ||
| set(CMAKE_CUDA_COMPILER ${CUDA_TOOLKIT_ROOT_DIR}/bin/nvcc CACHE STRING "") | ||
| set(CMAKE_CUDA_ARCHITECTURES 90 CACHE STRING "") | ||
| set(CMAKE_CUDA_STANDARD 17 CACHE STRING "") | ||
| set(CMAKE_CUDA_FLAGS "-restrict --expt-extended-lambda --expt-relaxed-constexpr -Werror cross-execution-space-call,reorder,deprecated-declarations" CACHE STRING "") | ||
| #set(CMAKE_CUDA_FLAGS_RELEASE "-O3 -DNDEBUG -Xcompiler -DNDEBUG -Xcompiler -O3 -Xcompiler -mcpu=powerpc64le -Xcompiler -mtune=powerpc64le" CACHE STRING "") | ||
| #set(CMAKE_CUDA_FLAGS_RELWITHDEBINFO "-g -lineinfo ${CMAKE_CUDA_FLAGS_RELEASE}" CACHE STRING "") | ||
| #set(CMAKE_CUDA_FLAGS_DEBUG "-g -G -O0 -Xcompiler -O0" CACHE STRING "") | ||
|
|
||
| set( SHIVA_ENABLE_CAMP OFF CACHE BOOL "Disable CAMP support" FORCE ) |
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.