Skip to content
Snippets Groups Projects
Commit 52abfc04 authored by Alexis GAMELIN's avatar Alexis GAMELIN
Browse files

Change HDF5 setting in Monitor class

libver='earliest' allow for better backward compatibility when switching HDF5 versions.
parent fd2cd135
No related branches found
No related tags found
No related merge requests found
...@@ -125,10 +125,10 @@ class Monitor(Element, metaclass=ABCMeta): ...@@ -125,10 +125,10 @@ class Monitor(Element, metaclass=ABCMeta):
if len(self._file_storage) == 0: if len(self._file_storage) == 0:
if mpi_mode == True: if mpi_mode == True:
from mpi4py import MPI from mpi4py import MPI
f = hp.File(self.file_name, "w", libver='latest', f = hp.File(self.file_name, "w", libver='earliest',
driver='mpio', comm=MPI.COMM_WORLD) driver='mpio', comm=MPI.COMM_WORLD)
else: else:
f = hp.File(self.file_name, "w", libver='latest') f = hp.File(self.file_name, "w", libver='earliest')
self._file_storage.append(f) self._file_storage.append(f)
else: else:
raise ValueError("File is already open.") raise ValueError("File is already open.")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment