-
Notifications
You must be signed in to change notification settings - Fork 50
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
ADIOS2: Support NULL-Blocks (Chunks) #355
Conversation
f49bef1
to
26ac8f5
Compare
Add support to read back ADIOS2 data sets that contain empty blocks (NULL chunks). This is something to handle carefully and needed for a work-arounds in WarpX BTD.
26ac8f5
to
f11cdd3
Compare
@@ -66,6 +66,15 @@ def get_data(series, record_component, i_slice=None, pos_slice=None, | |||
data = np.full(record_component.shape, np.nan, record_component.dtype) | |||
for chunk in chunks: | |||
chunk_slice = chunk_to_slice(chunk) | |||
|
|||
# skip empty slices | |||
# https://github.com/ornladios/ADIOS2 |
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.
Should read ornladios/ADIOS2#3459
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.
@@ -98,6 +107,15 @@ def get_data(series, record_component, i_slice=None, pos_slice=None, | |||
s_valid = list(s) # same as s but reduced to valid regions in chunk | |||
s_target = [] # starts and stops in sliced array | |||
chunk_slice = chunk_to_slice(chunk) | |||
|
|||
# skip empty slices | |||
# https://github.com/ornladios/ADIOS2 |
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.
Should read ornladios/ADIOS2#3459
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.
Add support to read back ADIOS2 data sets that contain empty blocks (NULL chunks). This is something to handle carefully and needed for a work-arounds in WarpX BTD.
X-Refs.: