Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
MpiDirectSendrecvVariableSynchronizeDispatcher.cc
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2025 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/* MpiDirectSendrecvVariableSynchronizeDispatcher.cc (C) 2000-2025 */
9/* */
10/* Gestion spécifique MPI des synchronisations des variables. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arcane/utils/MemoryView.h"
15
16#include "arcane/parallel/mpi/MpiParallelMng.h"
17#include "arcane/parallel/mpi/MpiDatatypeList.h"
18#include "arcane/parallel/mpi/MpiDatatype.h"
19#include "arcane/parallel/mpi/MpiTimeInterval.h"
20#include "arcane/parallel/IStat.h"
21
22#include "arcane/impl/IDataSynchronizeBuffer.h"
23#include "arcane/impl/IDataSynchronizeImplementation.h"
24
25#include "arccore/message_passing_mpi/internal/MpiAdapter.h"
26
27/*---------------------------------------------------------------------------*/
28/*---------------------------------------------------------------------------*/
29
30namespace Arcane
31{
32
33/*---------------------------------------------------------------------------*/
34/*---------------------------------------------------------------------------*/
38class MpiDirectSendrecvVariableSynchronizerDispatcher
40{
41 public:
42
43 class Factory;
44 explicit MpiDirectSendrecvVariableSynchronizerDispatcher(Factory* f);
45
46 protected:
47
48 void compute() override {}
49 void beginSynchronize(IDataSynchronizeBuffer* vs_buf) override;
50 void endSynchronize(IDataSynchronizeBuffer*) override
51 {
52 // With this implementation, we do not need this function.
53 }
54
55 private:
56
57 MpiParallelMng* m_mpi_parallel_mng;
58};
59
60/*---------------------------------------------------------------------------*/
61/*---------------------------------------------------------------------------*/
62
65{
66 public:
67
68 Factory(MpiParallelMng* mpi_pm)
69 : m_mpi_parallel_mng(mpi_pm)
70 {}
71
72 Ref<IDataSynchronizeImplementation> createInstance() override
73 {
74 auto* x = new MpiDirectSendrecvVariableSynchronizerDispatcher(this);
76 }
77
78 public:
79
80 MpiParallelMng* m_mpi_parallel_mng = nullptr;
81};
82
83/*---------------------------------------------------------------------------*/
84/*---------------------------------------------------------------------------*/
85
87arcaneCreateMpiDirectSendrecvVariableSynchronizerFactory(MpiParallelMng* mpi_pm)
88{
91}
92
93/*---------------------------------------------------------------------------*/
94/*---------------------------------------------------------------------------*/
95
96MpiDirectSendrecvVariableSynchronizerDispatcher::
97MpiDirectSendrecvVariableSynchronizerDispatcher(Factory* f)
98: m_mpi_parallel_mng(f->m_mpi_parallel_mng)
99{
100}
101
102/*---------------------------------------------------------------------------*/
103/*---------------------------------------------------------------------------*/
104
105void MpiDirectSendrecvVariableSynchronizerDispatcher::
106beginSynchronize(IDataSynchronizeBuffer* vs_buf)
107{
108 Int32 nb_message = vs_buf->nbRank();
109
110 constexpr int serialize_tag = 523;
111
112 MpiParallelMng* pm = m_mpi_parallel_mng;
113 MpiDatatypeList* dtlist = pm->datatypes();
114 const MPI_Datatype mpi_dt = dtlist->datatype(Byte())->datatype();
115
116 double sync_copy_send_time = 0.0;
117 double sync_copy_recv_time = 0.0;
118 double sync_wait_time = 0.0;
119
120 {
121 MpiTimeInterval tit(&sync_copy_send_time);
122 vs_buf->copyAllSend();
123 }
124
125 {
126 MpiTimeInterval tit(&sync_wait_time);
127 for( Integer i=0; i<nb_message; ++i ){
128 Int32 target_rank = vs_buf->targetRank(i);
129 auto rbuf = vs_buf->receiveBuffer(i).bytes().smallView();
130 auto sbuf = vs_buf->sendBuffer(i).bytes().smallView();
131
132 MPI_Sendrecv(sbuf.data(), sbuf.size(), mpi_dt, target_rank, serialize_tag,
133 rbuf.data(), rbuf.size(), mpi_dt, target_rank, serialize_tag,
134 pm->communicator(), MPI_STATUS_IGNORE);
135 }
136 }
137
138 {
139 MpiTimeInterval tit(&sync_copy_recv_time);
140 vs_buf->copyAllReceive();
141 }
142
143 pm->stat()->add("SyncCopySend",sync_copy_send_time,1);
144 pm->stat()->add("SyncWait",sync_wait_time,1);
145 pm->stat()->add("SyncCopyRecv",sync_copy_recv_time,1);
146}
147
148/*---------------------------------------------------------------------------*/
149/*---------------------------------------------------------------------------*/
150
151} // End namespace Arcane
152
153/*---------------------------------------------------------------------------*/
154/*---------------------------------------------------------------------------*/
Buffer générique pour la synchronisation de données.
Interface d'une fabrique dispatcher générique.
Gestionnaire du parallélisme utilisant MPI.
Référence à une instance.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Int32 Integer
Type représentant un entier.
unsigned char Byte
Type d'un octet.
Definition BaseTypes.h:43
auto makeRef(InstanceType *t) -> Ref< InstanceType >
Créé une référence sur un pointeur.
std::int32_t Int32
Type entier signé sur 32 bits.