BlueBrain / libsonata

A python and C++ interface to the SONATA format
https://libsonata.readthedocs.io/en/stable/
GNU Lesser General Public License v3.0
11 stars 12 forks source link

Support collective reader. #326

Closed 1uc closed 8 months ago

1uc commented 9 months ago

This allows:

from libsonata import make_collective_reader

Therefore any code that wants to use collective I/O can easily use the collective reader and it will automatically work even if their users can't/didn't install libsonata_mpi.

Unfortuntately, we can't mix libsonata_mpi and libsonata built from wheels, because the one needs pHDF5 and the other doesn't provide those. Hence, in the limited sites where collective IO is required, i.e. clusters with parallel filesystems, one needs to build both from source against the same version of HDF5.

1uc commented 8 months ago

Been moved to BlueBrain/libsonata-mpi.