master loads the experiment-schema then bcasts to others
| 257 | |
| 258 | // master loads the experiment-schema then bcasts to others |
| 259 | void hdf5_data_reader::load_schema(std::string filename, conduit::Node& schema) |
| 260 | { |
| 261 | if (m_comm->am_trainer_master()) { |
| 262 | conduit::relay::io::load(filename, schema); |
| 263 | } |
| 264 | |
| 265 | conduit::relay::mpi::broadcast_using_schema( |
| 266 | schema, |
| 267 | m_comm->get_trainer_master(), |
| 268 | m_comm->get_trainer_comm().GetMPIComm()); |
| 269 | } |
| 270 | |
| 271 | void hdf5_data_reader::do_preload_data_store() |
| 272 | { |
nothing calls this directly
no test coverage detected