Skip to content

New plug-in for Parallel HDF5

This plug-in makes it possible to:

  • read/write distributed array using Parallel HDF5
  • read/write scalars in a one dimensional distributed array using either the same syntax that is used for array or a default value specified in the configuration file.

array-like syntax:

data:
    myscalar: int
    global_start: $start
    global_size: $size

    myotherscalar: int
    global_start: $start
    global_size: $size

or using default value:

data:
    myscalar: int
    myotherscalar: int
...
plugins:
    Parallel_DeclH5:
        Default:
            global_start: $start
            global_size: $size

This plug-in required the parallel version of the HDF5. Furthermore, there is currently no test to check that interactions with the DeclH5 plug-in do not destroy anything... Be careful.

Edited by Corentin Roussel

Merge request reports