-
Notifications
You must be signed in to change notification settings - Fork 264
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for parallel IO with mpi4py #717
Comments
There are no tests yet, but for some reason |
Travis now runs |
Seems ready to go, will merge tomorrow if there are no comments. |
pull request #716 merged |
No - someone should probably create at netcdf-c issue for this. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
add parallel IO capabilities. netcdf-c and hdf5 must be compiled with MPI support, and mpi4py must be installed. To open a file for parallel access, use
parallel=True
inDataset.__init__
and optionally pass the mpi4py Comm instance using thecomm
kwarg and the mpi4py Info instance using theinfo
kwarg. If neither are specified,MPI_COMM_WORLD
andMPI_INFO_NULL
are used. IO can be toggled between collective and independent usingVariable.set_collective
. Seeexamples/mpi_example.py
and pull request #716.The text was updated successfully, but these errors were encountered: