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
Remove unecessary strict check
  • Loading branch information
jeanbez committed Oct 20, 2021
commit ff31e04df21d2106c69e24b70cb28b88ebec7d1f
4 changes: 0 additions & 4 deletions src/IO/HDF5/ParallelHDF5IOHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,6 @@ ParallelHDF5IOHandlerImpl::ParallelHDF5IOHandlerImpl(
auto const hdf5_collective_metadata = auxiliary::getEnvString( "OPENPMD_HDF5_COLLECTIVE_METADATA", "ON" );
if( hdf5_collective_metadata == "OFF" )
collective_metadata = 0;
else
{
VERIFY(hdf5_collective_metadata == "OFF", "[HDF5] Internal error: OPENPMD_HDF5_COLLECTIVE_METADATA property must be either ON or OFF");
}

ax3l marked this conversation as resolved.
Show resolved Hide resolved
status = H5Pset_all_coll_metadata_ops(m_fileAccessProperty, collective_metadata);
VERIFY(status >= 0, "[HDF5] Internal error: Failed to set metadata read HDF5 file access property");
Expand Down