Skip to content

Commit

Permalink
More debuggign printfs.
Browse files Browse the repository at this point in the history
  • Loading branch information
vchoi-hdfgroup committed Sep 16, 2023
1 parent a009bb6 commit 4b5480b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/H5Dscatgath.c
Original file line number Diff line number Diff line change
Expand Up @@ -1453,7 +1453,8 @@ H5D__compound_opt_read(size_t nelmts, H5S_sel_iter_t *iter, const H5D_type_info_
xubuf = ubuf + curr_off;

/* Copy the data into the right place. */
printf("opt_read: curr_nelmts=%zu\n", curr_nelmts);
printf("opt_read: curr_nelmts=%zu, src_stride=%zu, dst_stride=%zu, copy_size=%zu\n",
curr_nelmts, src_stride, dst_stride, copy_size);
for (i = 0; i < curr_nelmts; i++) {
memmove(xubuf, xdbuf, copy_size);

Expand Down

0 comments on commit 4b5480b

Please sign in to comment.