Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
IVariableSynchronizerMpiCommunicator.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7/*---------------------------------------------------------------------------*/
8/* IVariableSynchronizerMpiCommunicator.h (C) 2000-2022 */
9/* */
10/* Interface d'un communicateur MPI spécifique pour les synchronisations. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_PARALLEL_MPI_IVARIABLESYNCHRONIZERMPICOMMUNICATOR_H
13#define ARCANE_PARALLEL_MPI_IVARIABLESYNCHRONIZERMPICOMMUNICATOR_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/parallel/mpi/ArcaneMpi.h"
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24class VariableSynchronizer;
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
38{
39 public:
40
41 virtual ~IVariableSynchronizerMpiCommunicator() = default;
42
43 public:
44
47
54 virtual MPI_Comm communicator() const = 0;
55};
56
57/*---------------------------------------------------------------------------*/
58/*---------------------------------------------------------------------------*/
59
60} // End namespace Arcane
61
62/*---------------------------------------------------------------------------*/
63/*---------------------------------------------------------------------------*/
64
65#endif
Interface d'un communicateur MPI spécifique pour les synchronisations.
virtual void compute(VariableSynchronizer *var_syncer)=0
Calcul le communicateur spécifique.
virtual MPI_Comm communicator() const =0
Récupère le communicateur spécifique de la topologie.
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Interface d'un service de synchronisation de variable.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-