-
-
Notifications
You must be signed in to change notification settings - Fork 267
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.10 branch #1968
Backport H5Dchunk_iter to 1.10 branch #1968
Conversation
The test failure encountered in #666 may be an issue here as well |
This needs to go to 1.12 first. We move features down the chain of maintenance branches. |
…up#2074) * Align arg types of H5D_chunk_iter_op_t with H5Dget_chunk_info * Modify chunk_info test to for unsigned / hsize_t types * Fix types in test
d26e528
to
9b3a35b
Compare
…FGroup#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
…to mkitti/h5dchunk_iter_1_10
/* In HDF5 1.10 this will not fail. It will fail in 1.12 and older. */ | ||
/* | ||
if (ret != FAIL) | ||
TEST_ERROR; | ||
*/ |
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.
Trying to fix this creates new issues on HDF5 1.10.
I backported the I noticed some difference in return value behavior of Since the HDF5 1.12 version of |
This backports H5Dchunk_iter #6 to the 1.10 branch from the 1.13 development branch.
xref: https://forum.hdfgroup.org/t/possibility-of-backporting-h5dchunk-iter-to-1-12/9971/2
To do:
test/chunk_iter.c
H5Dchunk_iter
to 1.12: Backport H5Dchunk_iter to 1.12 branch #1970