-
Notifications
You must be signed in to change notification settings - Fork 106
feat: Bump to C++20 and update TPLs #4127
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
Open
victorapm
wants to merge
23
commits into
develop
Choose a base branch
from
feature/paludettomag1/tpls-next
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
0fc3101
Support 2026 TPLs
victorapm 7779fbb
Add ROCm GEOS CI job
victorapm e2801cc
TPL tag
victorapm 6ba520f
Fix CUDA build with new TPLs
victorapm 803697c
Use shared device CI label
victorapm 2f69e1a
Run Uncrustify on GEOS sources
victorapm 5e3217f
Remove DIY warning workaround
victorapm c52032a
Fix C++20 Clang CI builds
victorapm afb2a7d
Fix device test builds
victorapm 9116976
Fix CUDA event test
victorapm 1b8c5f2
Fix Clang warning compatibility
victorapm 11758cb
Avoid parser string overlap warning
victorapm d0e0dea
Handle GCC 12 VTK warning
victorapm 8723e09
Update TPL image and LvArray
victorapm 3d8fea4
Format LvArray device tests
victorapm de5fa81
Fix CUDA test comparisons
victorapm dd7364c
Fix CMake target warnings
victorapm 03fb8eb
Fix VTK CI issues
victorapm 4d14733
Fix code rule violation
victorapm c22779b
Fix VTK multiblock mesh loading
victorapm 6dbd49f
Update TPL image
victorapm 63445db
Update TPL image
victorapm 1f12dc9
Rebaseline
victorapm 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
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
Submodule LvArray
updated
14 files
| +3 −5 | CMakeLists.txt | |
| +1 −1 | cmake/SetupTPL.cmake | |
| +7 −5 | src/input.hpp | |
| +3 −3 | unitTests/testArray1DOfArray1D.cpp | |
| +2 −2 | unitTests/testArrayView.hpp | |
| +1 −1 | unitTests/testMath.cpp | |
| +26 −18 | unitTests/testMemcpy.cpp | |
| +31 −24 | unitTests/testStackArray.cpp | |
| +17 −0 | unitTests/testTensorOpsCommon.hpp | |
| +2 −2 | unitTests/testTensorOpsEigen.cpp | |
| +7 −2 | unitTests/testTensorOpsOneSize.cpp | |
| +6 −6 | unitTests/testTensorOpsTwoSizes.hpp | |
| +6 −6 | unitTests/testTensorOpsTwoSizes1.cpp | |
| +14 −1 | unitTests/testUtils.hpp |
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.
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.
I'm a bit confused here. Since we are not enforcing C++20, shouldn't we always use
<format>?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.
Hi Dick, this branch is enforcing C++20, but
{fmt}remains intentional because GEOS usesfmt::runtime,fmt::join,fmt::is_formattableand customfmt::formatter. Also,<format>is not uniformly supported by the CUDA/HIP backends. Maybe we can address this on a separate PR