From c734fe7efb39013b0dfe21b95abb981263b4e816 Mon Sep 17 00:00:00 2001 From: Gilles Grospellier Date: Thu, 3 Oct 2024 10:06:54 +0200 Subject: [PATCH] =?UTF-8?q?[arcane,impl]=20En=20s=C3=A9quentiel,=20positio?= =?UTF-8?q?nne=20le=20communicateur=20MPI=20associ=C3=A9=20au=20'MessagePa?= =?UTF-8?q?ssingMng'.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit En séquentiel il est possible d'initialiser MPI et donc d'avoir un communicateur valide. C'était le cas pour le 'IParallelMng' mais pas pour le 'MessagePassingMng'. --- arcane/src/arcane/impl/SequentialParallelMng.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/arcane/src/arcane/impl/SequentialParallelMng.cc b/arcane/src/arcane/impl/SequentialParallelMng.cc index 331d00400..2977e6223 100644 --- a/arcane/src/arcane/impl/SequentialParallelMng.cc +++ b/arcane/src/arcane/impl/SequentialParallelMng.cc @@ -655,6 +655,7 @@ SequentialParallelMng(const SequentialParallelMngBuildInfo& bi) if (!m_world_parallel_mng) m_world_parallel_mng = this; m_stat = Parallel::createDefaultStat(); + _messagePassingMng()->setCommunicator(m_communicator); } /*---------------------------------------------------------------------------*/