Skip to content

Commit 067cc0b

Browse files
pkcoffjeanbez
andauthored
Update to one chunk MPI-IO for h5bench_exerciser.c (#135)
It is more optimal and mimics how most applications will run with HDF5 to set the one chunk option for MPI-IO instead of multi chunk. Co-authored-by: Jean Luca Bez <[email protected]>
1 parent e40ea6f commit 067cc0b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

exerciser/h5bench_exerciser.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -559,9 +559,7 @@ main(int argc, char *argv[])
559559
/* If we are chunking the data.. */
560560
if (useChunked) {
561561
H5Pset_chunk(dataSetPropList, numDims, fileBlock);
562-
H5Pset_dxpl_mpio_chunk_opt(xferPropList, H5FD_MPIO_CHUNK_MULTI_IO);
563-
// H5Pset_dxpl_mpio_chunk_opt(xferPropList, H5FD_MPIO_CHUNK_ONE_IO); //Not implemented in CCIO
564-
// yet!
562+
H5Pset_dxpl_mpio_chunk_opt(xferPropList, H5FD_MPIO_CHUNK_ONE_IO);
565563
}
566564

567565
H5Pset_fill_time(dataSetPropList, H5D_FILL_TIME_NEVER);

0 commit comments

Comments
 (0)