Skip to content
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

HDF5 I/O optimizations #1129

Merged
merged 11 commits into from
Oct 27, 2021
Prev Previous commit
Next Next commit
Fix code style check
  • Loading branch information
jeanbez committed Oct 19, 2021
commit b4bdc5b50db2ac381526caed4305981b9aa90ea1
2 changes: 1 addition & 1 deletion src/IO/HDF5/HDF5IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1823,7 +1823,7 @@ HDF5IOHandlerImpl::listPaths(Writable* writable,
hid_t gapl = H5Pcreate(H5P_GROUP_ACCESS);
if( m_hdf5_collective_metadata )
{
H5Pset_all_coll_metadata_ops(gapl, true);
H5Pset_all_coll_metadata_ops(gapl, true);
}

hid_t node_id = H5Gopen(file.id,
Expand Down
2 changes: 1 addition & 1 deletion src/IO/HDF5/ParallelHDF5IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ ParallelHDF5IOHandlerImpl::ParallelHDF5IOHandlerImpl(

status = H5Pset_coll_metadata_write(m_fileAccessProperty, collective_metadata);
VERIFY(status >= 0, "[HDF5] Internal error: Failed to set metadata write HDF5 file access property");

ax3l marked this conversation as resolved.
Show resolved Hide resolved
auto const strByte = auxiliary::getEnvString( "OPENPMD_HDF5_ALIGNMENT", "1" );
std::stringstream sstream(strByte);
hsize_t bytes;
Expand Down