-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add deal.II patch for HDF5 output on clusters
- Loading branch information
Pasquale Africa
committed
Oct 14, 2020
1 parent
b5fad91
commit c90c7dd
Showing
2 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/source/base/data_out_base.cc b/source/base/data_out_base.cc | ||
index e35adfa..6a7cb5b 100644 | ||
--- a/source/base/data_out_base.cc | ||
+++ b/source/base/data_out_base.cc | ||
@@ -7504,7 +7504,7 @@ DataOutBase::write_hdf5_parallel( | ||
AssertThrow(plist_id >= 0, ExcIO()); | ||
# ifdef DEAL_II_WITH_MPI | ||
# ifdef H5_HAVE_PARALLEL | ||
- status = H5Pset_dxpl_mpio(plist_id, H5FD_MPIO_COLLECTIVE); | ||
+ status = H5Pset_dxpl_mpio(plist_id, H5FD_MPIO_INDEPENDENT); | ||
AssertThrow(status >= 0, ExcIO()); | ||
# endif | ||
# endif |