Skip to content
Snippets Groups Projects
Commit 8a05a34a authored by EXT Jean-Matthieu Etancelin's avatar EXT Jean-Matthieu Etancelin
Browse files

Revert 4673b667 - 16 procs for non parallel output seems not working

parent 95b4aca7
No related branches found
No related tags found
2 merge requests!24Resolve "Add python3.x support",!15WIP: Resolve "HySoP with tasks"
...@@ -187,8 +187,8 @@ class HDF_IO(ComputationalGraphOperator): ...@@ -187,8 +187,8 @@ class HDF_IO(ComputationalGraphOperator):
super(HDF_IO, self).discretize() super(HDF_IO, self).discretize()
topo = self.input_fields[sorted(self.input_fields.keys(), key=lambda f:f.name)[0]] topo = self.input_fields[sorted(self.input_fields.keys(), key=lambda f:f.name)[0]]
use_local_hdf5 = (topo.cart_size == 1) use_local_hdf5 = (topo.cart_size == 1)
use_local_hdf5 |= (topo.proc_shape[0] == topo.cart_size) and (topo.cart_size < 16) use_local_hdf5 |= (topo.proc_shape[0] == topo.cart_size) and (topo.cart_size <= 16)
# XDMF JOIN do not support more than 16 arguments (16 seems too much) # XDMF JOIN do not support more than 16 arguments
self.topology = topo self.topology = topo
self.use_local_hdf5 = use_local_hdf5 self.use_local_hdf5 = use_local_hdf5
......
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