18#ifdef DEAL_II_WITH_HDF5
32 namespace HDF5ObjectImplementation
41# ifdef DEAL_II_WITH_MPI
42# if __cpp_lib_uncaught_exceptions >= 201411
44 if (std::uncaught_exceptions() != 0)
46 if (std::uncaught_exception() ==
true)
50 <<
"---------------------------------------------------------\n"
51 <<
"HDF5 " + type +
" objects call " + name +
53 <<
"them and release any resources they acquired. This call\n"
54 <<
"requires MPI synchronization. Since an exception is\n"
55 <<
"currently uncaught, this synchronization would likely\n"
56 <<
"deadlock because only the current process is trying to\n"
57 <<
"destroy the object. As a consequence, the program will be\n"
58 <<
"aborted and the HDF5 might be corrupted.\n"
59 <<
"---------------------------------------------------------"
62 MPI_Abort(MPI_COMM_WORLD, 1);
90 const hid_t & parent_group_id,
93 , query_io_mode(false)
94 , io_mode(H5D_MPIO_NO_COLLECTIVE)
95 , local_no_collective_cause(H5D_MPIO_SET_INDEPENDENT)
96 , global_no_collective_cause(H5D_MPIO_SET_INDEPENDENT)
98 hdf5_reference = std::shared_ptr<hid_t>(
new hid_t, [](hid_t *pointer) {
102 const herr_t ret = H5Dclose(*pointer);
107 dataspace = std::shared_ptr<hid_t>(
new hid_t, [](hid_t *pointer) {
111 const herr_t ret = H5Sclose(*pointer);
127 rank_ret = H5Sget_simple_extent_ndims(*
dataspace);
145 const hid_t & parent_group_id,
146 const std::vector<hsize_t> & dimensions,
147 const std::shared_ptr<hid_t> &t_type,
150 , rank(dimensions.size())
151 , dimensions(dimensions)
152 , query_io_mode(false)
153 , io_mode(H5D_MPIO_NO_COLLECTIVE)
154 , local_no_collective_cause(H5D_MPIO_SET_INDEPENDENT)
155 , global_no_collective_cause(H5D_MPIO_SET_INDEPENDENT)
157 hdf5_reference = std::shared_ptr<hid_t>(
new hid_t, [](hid_t *pointer) {
161 const herr_t ret = H5Dclose(*pointer);
166 dataspace = std::shared_ptr<hid_t>(
new hid_t, [](hid_t *pointer) {
170 const herr_t ret = H5Sclose(*pointer);
217 ExcMessage(
"query_io_mode should be true in order to use io_mode"));
220 case (H5D_MPIO_NO_COLLECTIVE):
221 return std::string(
"H5D_MPIO_NO_COLLECTIVE");
223 case (H5D_MPIO_CHUNK_INDEPENDENT):
224 return std::string(
"H5D_MPIO_CHUNK_INDEPENDENT");
226 case (H5D_MPIO_CHUNK_COLLECTIVE):
227 return std::string(
"H5D_MPIO_CHUNK_COLLECTIVE");
229 case (H5D_MPIO_CHUNK_MIXED):
230 return std::string(
"H5D_MPIO_CHUNK_MIXED");
232 case (H5D_MPIO_CONTIGUOUS_COLLECTIVE):
233 return std::string(
"H5D_MPIO_CONTIGUOUS_COLLECTIVE");
237 return std::string(
"Internal error");
242 return std::string(
"Internal error");
247 H5D_mpio_actual_io_mode_t
252 "query_io_mode should be true in order to use get_io_mode"));
264 "query_io_mode should be true in order to use get_local_no_collective_cause()"));
276 "query_io_mode should be true in order to use get_local_no_collective_cause()"));
288 "query_io_mode should be true in order to use get_global_no_collective_cause()"));
300 "query_io_mode should be true in order to use get_global_no_collective_cause()"));
330 const Group & parentGroup,
335 hdf5_reference = std::shared_ptr<hid_t>(
new hid_t, [](hid_t *pointer) {
338 const herr_t ret = H5Gclose(*pointer);
400# ifdef DEAL_II_WITH_MPI
413 :
File(name, mode, true, mpi_communicator)
424 hdf5_reference = std::shared_ptr<hid_t>(
new hid_t, [](hid_t *pointer) {
427 const herr_t err = H5Fclose(*pointer);
438# ifdef DEAL_II_WITH_MPI
439# ifdef H5_HAVE_PARALLEL
440 const MPI_Info info = MPI_INFO_NULL;
442 plist = H5Pcreate(H5P_FILE_ACCESS);
444 ret = H5Pset_fapl_mpio(plist, mpi_communicator, info);
466 H5Fcreate(
name.data(), H5F_ACC_TRUNC, H5P_DEFAULT, plist);
477 ret = H5Pclose(plist);
482 (void)mpi_communicator;
unsigned int get_rank() const
std::vector< hsize_t > get_dimensions() const
std::vector< hsize_t > dimensions
std::uint32_t get_local_no_collective_cause_as_hdf5_type()
unsigned int get_size() const
std::shared_ptr< hid_t > dataspace
DataSet(const std::string &name, const hid_t &parent_group_id, bool mpi)
std::string get_local_no_collective_cause()
std::string get_io_mode()
std::uint32_t local_no_collective_cause
std::string get_global_no_collective_cause()
bool get_query_io_mode() const
std::uint32_t global_no_collective_cause
std::uint32_t get_global_no_collective_cause_as_hdf5_type()
H5D_mpio_actual_io_mode_t get_io_mode_as_hdf5_type()
void set_query_io_mode(const bool new_query_io_mode)
H5D_mpio_actual_io_mode_t io_mode
File(const std::string &name, const FileAccessMode mode)
DataSet open_dataset(const std::string &name) const
Group open_group(const std::string &name) const
Group(const std::string &name, const Group &parent_group, const bool mpi, const GroupAccessMode mode)
Group create_group(const std::string &name) const
std::shared_ptr< hid_t > hdf5_reference
std::string get_name() const
HDF5Object(const std::string &name, const bool mpi)
#define DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_CLOSE
#define Assert(cond, exc)
#define AssertDimension(dim1, dim2)
#define AssertNothrow(cond, exc)
static ::ExceptionBase & ExcInternalError()
static ::ExceptionBase & ExcMessage(std::string arg1)
#define AssertThrow(cond, exc)
void check_exception(const std::string &type, const std::string &name)
std::string no_collective_cause_to_string(const std::uint32_t no_collective_cause)