I have a very simple compound dataset, about 1 million rows of a compound datatype:
1 long, 3 doubles.
I would like to read it in parallel with MPI using a collective call, equally distributed on all the processors.
HDF5 low-level interface is very complex to use, and for such a simple dataset I wonder if I can use one of the high level API, like Lite or Table. What is not clear from the documentation is if these APIs support MPI collective read.
Could somebody write the simplest code snippet that can read this simple dataset into a C structure using HDF5 1.8?
I believe for an expert this should be trivial, but for a beginner the complexity of HDF5 (and its docs) makes it really a daunting task.
thanks.