Skip to content
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

Merged
merged 1 commit into from
Feb 2, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member Author

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

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

volume = 1
for csl in chunk_slice:
volume *= csl.stop - csl.start
if volume == 0:
continue

# read only valid region
x = record_component[chunk_slice]
series.flush()
Expand Down Expand Up @@ -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
Copy link
Member Author

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

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

volume = 1
for csl in chunk_slice:
volume *= csl.stop - csl.start
if volume == 0:
continue

# read only valid region
for d, slice_d in enumerate(s):
start = chunk_slice[d].start
Expand Down