-
Notifications
You must be signed in to change notification settings - Fork 9
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
ci: disable power9, add a100 and roci jobs #348
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
d5b7cd0
ci: disable power9 and add roci jobs
rbberger bf92fef
Correct test/test_eos_tabulated.cpp
rbberger fad8a87
cmake: build singularity_eos.cpp even without Fortran
rbberger c543f2e
ci: bump GCC version to 10.3.0
rbberger 98f67ea
ci: use cray-mpich on roci
rbberger 3bfd2a0
ci: force kokkos to use std=14
rbberger 2d70df6
ci: add a100 jobs
rbberger 14b2f3f
ci: report spack upstream that is used
rbberger 92378d9
Update spackage
rbberger 3ca5654
Add xcap_deployment repo
rbberger 8c468bf
Use submodules for offline nodes
rbberger 507aa18
Update spiner and ports-of-call submodule commit
rbberger f03ea42
ci: add missing +spiner
rbberger f75632b
ci: prepare goldfiles.tar.gz prior to other jobs
rbberger 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 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 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 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 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 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
Submodule ports-of-call
updated
4 files
+1 −1 | CMakeLists.txt | |
+9 −0 | ports-of-call/portability.hpp | |
+6 −3 | ports-of-call/portable_errors.hpp | |
+1 −0 | spack-repo/packages/ports-of-call/package.py |
Submodule spiner
updated
19 files
+46 −0 | .github/workflows/deps.yml | |
+1 −1 | .github/workflows/docs.yml | |
+1 −1 | .github/workflows/formatting.yml | |
+1 −1 | .github/workflows/tests.yml | |
+31 −30 | .gitlab-ci.yml | |
+128 −107 | CMakeLists.txt | |
+2 −2 | README.md | |
+11 −10 | cmake/spinerConfig.cmake.in | |
+37 −21 | doc/sphinx/src/databox.rst | |
+110 −11 | doc/sphinx/src/interpolation.rst | |
+1 −0 | spack-repo/packages/ports-of-call/package.py | |
+13 −18 | spack-repo/packages/spiner/package.py | |
+122 −112 | spiner/databox.hpp | |
+6 −146 | spiner/interpolation.hpp | |
+221 −0 | spiner/piecewise_grid_1d.hpp | |
+179 −0 | spiner/regular_grid_1d.hpp | |
+5 −0 | spiner/sp5.hpp | |
+3 −2 | test/CMakeLists.txt | |
+160 −3 | test/test.cpp |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what necessitated this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Yurlungur ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I didn't change this, @rbberger did, but I think he just moved these registration calls from the fortran if statement to the closure if statement. Since this is C++ code technically, not fortran code.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will blow up compile times in RIOT. While it is c++ source, they are really only needed in w/in the context of defining fortran interfaces and for EAP.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh this is a good catch. Thank you! Yes let's move it back into the fortran. I can submit a PR. @rbberger will this be ok?