-
-
Notifications
You must be signed in to change notification settings - Fork 254
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
Implementation of the mpio driver with selection I/O. #3222
Merged
Merged
Changes from 22 commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
25c434e
Implementation of the mpio driver with selection I/O.
vchoi-hdfgroup 45e0709
Committing clang-format changes
github-actions[bot] a8c0351
Add comments for the changes. Minor modifications to the mpio driver …
vchoi-hdfgroup c3fee29
Committing clang-format changes
github-actions[bot] f75cbd3
Correct spelling error.
vchoi-hdfgroup db37097
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup d1d5abf
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup b6cc695
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup a39f805
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup 56e0ca3
Add tests for the three bugs found when setting H5D_SELECTION_IO_MODE…
vchoi-hdfgroup 41f68d4
Committing clang-format changes
github-actions[bot] eddb315
Correct spelling error.
vchoi-hdfgroup 6604ad4
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup accb22f
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup 8b080ec
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup 5f20722
Add tests for selection I/O which are derived from test/vfd.c and mod…
vchoi-hdfgroup efbe96c
Committing clang-format changes
github-actions[bot] 40c3d64
Correct spelling errors.
vchoi-hdfgroup 83ab87d
Committing clang-format changes
github-actions[bot] ab7746c
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup eeb29b2
Merge branch 'develop' into new_mpio_develop
vchoi-hdfgroup 1fadf80
Committing clang-format changes
github-actions[bot] 340cf6b
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup a1fd1f4
Fix CI failures due ot ";" after macros.
vchoi-hdfgroup de6a7fd
Committing clang-format changes
github-actions[bot] 8e42490
This changes the default selection I/O to on for MPIO.
vchoi-hdfgroup dc886ee
Merge branch 'HDFGroup:develop' into new_mpio_develop
vchoi-hdfgroup d61facc
Fixes for the two issues in PR review:
vchoi-hdfgroup 2621bbb
Committing clang-format changes
github-actions[bot] 3bf430f
Address spelling/grammar errors from PR review.
vchoi-hdfgroup 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 understand we want to keep things consistent but if we're going to change the API to keep the count parameter the same type we should change it to size_t. I think we should just lave it alone for now though.
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.
So I will keep as size_t for read_selection() and write_selection()? But as uint32_t for write_vector and read_vector?
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.
Yeah I don't think we should change it now, it's already part of the API
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.
Just want to double-check:
as size_t will be used for all APIs and the related intermediate routines:
H5FDread/write_selection(), H5FDread/write_vector_from_selection(), H5FDread/write_from_selection()
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.
correction to previous comment: "count" as size_t
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.
Don't change any APIs right now, thanks, just revert the type change to the H5FD_class_t struct