-
-
Notifications
You must be signed in to change notification settings - Fork 265
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
Backport H5Dchunk_iter to 1.12 branch #1970
Backport H5Dchunk_iter to 1.12 branch #1970
Conversation
src/H5VLnative_dataset.c
Outdated
* operations, so this is a no-op. | ||
*/ | ||
break; | ||
} |
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.
The dataset wait case doesn't belong in 1.12
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.
Resolved in 0b97a78
We are now using H5VL_NATIVE_DATASET_CHUNK_ITER
instead.
src/H5VLconnector.h
Outdated
@@ -81,7 +81,9 @@ typedef enum H5VL_dataset_get_t { | |||
typedef enum H5VL_dataset_specific_t { | |||
H5VL_DATASET_SET_EXTENT, /* H5Dset_extent */ | |||
H5VL_DATASET_FLUSH, /* H5Dflush */ | |||
H5VL_DATASET_REFRESH /* H5Drefresh */ | |||
H5VL_DATASET_REFRESH, /* H5Drefresh */ | |||
H5VL_DATASET_WAIT, /* H5Dwait */ |
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.
Dataset wait doesn't belong in 1.12
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.
Resolved in 0b97a78
We are now using H5VL_NATIVE_DATASET_CHUNK_ITER
instead.
…info.c (HDFGroup#1820) The two macro schemes were not designed to work together. Also quiets some MSVC warnings about comparing pointers and integers.
…t elements, fix HDFGroup#1419 (HDFGroup#1969) * H5Dchunk_iter now passes chunk dimension scaled offsets, fix HDFGroup#1419 * Update docs for H5Dchunk_iter, H5Dget_chunk_info* Modified description for `H5Dchunk_iter`, `H5Dget_chunk_info`, and `H5Dget_chunk_info_by_coord` to the following * offset Logical position of the chunk’s first element in units of dataset elements * filter_mask Bitmask indicating the filters used when the chunk was written * size Chunk size in bytes, 0 if the chunk does not exist
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.
LGTM. Thanks for the work in backporting this!
H5Dchunk_iter was reintegrated reverting #733.
Incorporates changes to
H5chunk_iter
fromTo do:
xref: Backport H5Dchunk_iter to 1.10 branch #1968 (for 1.10 branch)