-
Notifications
You must be signed in to change notification settings - Fork 52
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
Introduce more flexible storeChunk() syntax, use to add ADIOS2 memory selection #1620
Open
franzpoeschel
wants to merge
42
commits into
openPMD:dev
Choose a base branch
from
franzpoeschel:adios2-memory-selection
base: dev
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.
Conversation
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
727cbbc
to
ddcdfc9
Compare
c05d535
to
ba7c582
Compare
ba7c582
to
d7eb891
Compare
332932f
to
efb0876
Compare
efb0876
to
39e3d71
Compare
47d497b
to
b2bc355
Compare
b699520
to
3430b6d
Compare
9b5acff
to
bd7b378
Compare
208c381
to
e51e635
Compare
c8be94b
to
8e455b4
Compare
for more information, see https://pre-commit.ci
Intel compilers having trouble
for more information, see https://pre-commit.ci
for more information, see https://pre-commit.ci
8e455b4
to
430fe3b
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
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.
We currently don't support memory selections yet, e.g. when you have a 2D memory buffer but want to write only an arbitrary block from it. That block is then non-contiguous, but ADIOS2 has so-called memory selections to support this.
We currently don't have an API that would be able to expose this (except in Python where the native Python buffer protocol is powerful enough to express this; we currently throw an error when detecting this
strides in selection are inefficient, not implemented!
). Since theloadChunk()/storeChunk()
API is somewhat convoluted by now anyway, I didn't want to add even further overloads.Instead, this PR proposes a new syntax for setting up load/store calls:
This API makes it easier to add functionality without going through every single overload and adapting it. Further, it makes the API more consistent, e.g. offset and extent are now always optional and not just for those calls that implement a default logic.
With this PR, the old API calls are now fully implemented via the new API, giving it a good test coverage.
TODO:
.noop_future()
to disable future return types.