-
Notifications
You must be signed in to change notification settings - Fork 8
Parallel I/O integration #641
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
Draft
SeanBryan51
wants to merge
17
commits into
main
Choose a base branch
from
parallelio-playground
base: main
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.
Draft
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
3f1da61
src/offline/cable_mpi.F90: STOP when MPI is unavailable in mpi_grp_abort
SeanBryan51 4620bf6
src/offline/cable_mpi.F90: Add legacy communicator procedure overload…
SeanBryan51 441909b
src/offline/cable_mpi.F90: add mpi_grp_split
SeanBryan51 d1fea58
Replace abort with cable_abort
SeanBryan51 a4944ca
Add PIO as an optional dependency
SeanBryan51 ba5610a
Add parallel I/O abstraction
SeanBryan51 ad45ef5
Temporary commit (to remove): add unit tests
SeanBryan51 ef5f448
Add parallel I/O decomp utilities
SeanBryan51 1b31f68
Allow for selection of legacy MPI or parallel I/O at runtime
SeanBryan51 0a59cfa
Pass in mpi_grp to the serial and master drivers
SeanBryan51 362e82b
Introduce global structure variables
SeanBryan51 d21221a
Introduce local structure variables
SeanBryan51 a18d437
Add data structure for I/O decompositions
SeanBryan51 0fc8f64
src/offline/cable_mpimaster_stub.F90: update stub to accept mpi_grp_m…
SeanBryan51 dfe8a40
src/offline/cable_io_decomp.F90: add int32 and real64 decompositions
SeanBryan51 781b01d
src/util/netcdf/cable_netcdf_decomp_util.F90: add missing allocations
SeanBryan51 cbb490e
src/util/netcdf/cable_netcdf.F90: add overloads for put_att and get_att
SeanBryan51 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
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'd be in favour of making
fileandlinecompulsory- I know that gfortran at least defines__LINE__and__FILE__variables that people can use, not sure whether that's part of the standard though.edit: Saw you did use that in some of the abort routines elsewhere
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 agree, I don't see why
fileandlineshouldn't be compulsory -OPTIONALonly allowed that I could find and replaceabortwithcable_abortwithout having to specify thefileandlinearguments. It would be good to do this properly in a separate PR which addresses error handling (related #486).