herr_t H5Pset_coll_metadata_write(
hid_t fapl_id,
hbool_t is_collective
)
H5Pset_coll_metadata_write
tells the HDF5 Library
whether to perform metadata writes collectively (TRUE
)
or independently (FALSE
).
If collective access is selected, then on a flush of the metadata cache, all processes will divide the metadata cache entries to be flushed evenly among themselves and issue a single MPI-IO collective write operation. This is the preferred method when the size of the metadata created by the application is large.
If independent access is selected, the library uses the default method for doing metadata I/O either from process zero or independently from each process.
hid_t fapl_id |
|
IN: File access propery list identifier |
hbool_t is_collective |
|
IN: Boolean value indicating whether
metadata writes are collective (TRUE )
or independent (FALSE )
Default mode: Independent ( FALSE )
|
Release | Change |
1.10.0 | C function and Fortran wrapper introduced with this release. |