From 8a05a34a8b0279f9cc7334ed94de845267caca62 Mon Sep 17 00:00:00 2001 From: Jean-Matthieu Etancelin <jean-matthieu.etancelin@univ-pau.fr> Date: Tue, 28 Jul 2020 17:01:19 +0200 Subject: [PATCH] Revert 4673b667 - 16 procs for non parallel output seems not working --- hysop/operator/hdf_io.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hysop/operator/hdf_io.py b/hysop/operator/hdf_io.py index 769864b36..26ece61d7 100755 --- a/hysop/operator/hdf_io.py +++ b/hysop/operator/hdf_io.py @@ -187,8 +187,8 @@ class HDF_IO(ComputationalGraphOperator): super(HDF_IO, self).discretize() 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.proc_shape[0] == topo.cart_size) and (topo.cart_size < 16) - # XDMF JOIN do not support more than 16 arguments (16 seems too much) + use_local_hdf5 |= (topo.proc_shape[0] == topo.cart_size) and (topo.cart_size <= 16) + # XDMF JOIN do not support more than 16 arguments self.topology = topo self.use_local_hdf5 = use_local_hdf5 -- GitLab