-
Notifications
You must be signed in to change notification settings - Fork 132
Fix 8 HPC-sensitive bugs: GPU kernels, MPI broadcast, domain decomposition #1242
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
sbryngelson
merged 14 commits into
MFlowCode:master
from
sbryngelson:fix/hpc-bugfixes-batch
Feb 26, 2026
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
7f54286
Fix z-boundary backward FD stencil using fields(2) instead of fields(3)
sbryngelson 0af98ae
Fix bc_x%ve3 never MPI-broadcast (duplicate ve2 instead)
sbryngelson 85102be
Fix fluid_rho broadcast using MPI_LOGICAL instead of mpi_p
sbryngelson abdabcf
Fix loc_violations used uninitialized in MPI_Allreduce
sbryngelson 4051479
Fix loc_violations gaining implicit SAVE attribute
sbryngelson c275404
Fix GRCBC subsonic inflow using wrong L index
sbryngelson 6eea7ea
Fix G_K exponential degradation in damage model
sbryngelson e1790e6
Fix domain decomposition overwriting muscl_order
sbryngelson 358519a
Fix NaN check reading wrong index in MPI unpack
sbryngelson 8efac1d
Replace error stop with s_mpi_abort in NaN diagnostic
sbryngelson 944c6ad
Replace error stop with s_mpi_abort in NaN timestep output check
sbryngelson 04b389a
Merge branch 'master' into fix/hpc-bugfixes-batch
sbryngelson 53d4a5b
Merge branch 'master' into fix/hpc-bugfixes-batch
sbryngelson 9f19bc8
Merge branch 'master' into fix/hpc-bugfixes-batch
sbryngelson 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
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. GRCBC with num_fluids > 1 is generally not defined, so this change is redundant, but you can keep it for now |
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.
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 think one of the AI reviewers commented on this, but I'm not sure that
s_mpi_abortis supported in GPU regions. I suppose this doesn't matter since we don't support GPUs with Intel compilers, but it could arise as a problem down the road.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 don't think either is supported, actually
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.
but thanks for the comment. of course reply if you know differently