Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
BasicParticleExchanger.h
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/* BasicParticleExchanger.h (C) 2000-2025 */
9/* */
10/*---------------------------------------------------------------------------*/
11#ifndef ARCANE_MESH_BASICPARTICLEEXCHANGER_H
12#define ARCANE_MESH_BASICPARTICLEEXCHANGER_H
13/*---------------------------------------------------------------------------*/
14/*---------------------------------------------------------------------------*/
15
16#include "arcane/utils/List.h"
17#include "arcane/utils/FatalErrorException.h"
18#include "arcane/utils/IFunctor.h"
19#include "arcane/utils/PlatformUtils.h"
20#include "arcane/utils/ValueConvert.h"
21#include "arcane/utils/ScopedPtr.h"
22
23#include "arcane/core/IParticleExchanger.h"
24#include "arcane/core/VariableCollection.h"
25#include "arcane/core/ItemGroup.h"
26#include "arcane/core/ItemPrinter.h"
27#include "arcane/core/IItemFamily.h"
28#include "arcane/core/IParticleFamily.h"
29#include "arcane/core/IParallelMng.h"
30#include "arcane/core/IVariableMng.h"
31#include "arcane/core/IVariable.h"
32#include "arcane/core/IMesh.h"
33#include "arcane/core/Item.h"
34#include "arcane/core/Timer.h"
35#include "arcane/core/ISerializeMessageList.h"
36#include "arcane/core/CommonVariables.h"
37#include "arcane/core/FactoryService.h"
38
39#include "arcane/mesh/MeshGlobal.h"
40#include "arcane/mesh/BasicParticleExchanger_axl.h"
41
42/*---------------------------------------------------------------------------*/
43/*---------------------------------------------------------------------------*/
44
45namespace Arcane
46{
47class Timer;
48}
49
50/*---------------------------------------------------------------------------*/
51/*---------------------------------------------------------------------------*/
52
53namespace Arcane::mesh
54{
55
56/*---------------------------------------------------------------------------*/
57/*---------------------------------------------------------------------------*/
58
62class BasicParticleExchanger
64{
65 friend class AsyncParticleExchanger;
66
67 public:
68
69 explicit BasicParticleExchanger(const ServiceBuildInfo& sbi);
70 ~BasicParticleExchanger() override;
71
72 public:
73
74 void build() override {}
75 void initialize(IItemFamily* item_family) override;
76
77 public:
78
79 void beginNewExchange(Integer nb_particle) override;
80 IItemFamily* itemFamily() override { return m_item_family; }
81 bool exchangeItems(Integer nb_particle_finish_exchange,
82 Int32ConstArrayView local_ids,
83 Int32ConstArrayView sub_domains_to_send,ItemGroup item_group,
84 IFunctor* functor) override;
85 bool exchangeItems(Integer nb_particle_finish_exchange,
86 Int32ConstArrayView local_ids,
87 Int32ConstArrayView sub_domains_to_send,
88 Int32Array* new_particle_local_ids,
89 IFunctor* functor) override;
90 void sendItems(Integer nb_particle_finish_exchange,
91 Int32ConstArrayView local_ids,
92 Int32ConstArrayView sub_domains_to_send) override;
93 bool waitMessages(Integer nb_pending_particles,Int32Array* new_particle_local_ids,
94 IFunctor* functor) override;
95 void addNewParticles(Integer nb_particle) override;
96
97 void setVerboseLevel(Integer level) override { m_verbose_level = level; }
98 Integer verboseLevel() const override { return m_verbose_level; }
99 IAsyncParticleExchanger * asyncParticleExchanger() override { return nullptr; }
100
101 public:
102
103 void reset();
104
105 private:
106
107 IItemFamily* m_item_family = nullptr;
108 IParallelMng* m_parallel_mng = nullptr;
109 UniqueArray<ISerializeMessage*> m_accumulate_infos;
110
111 Int32 m_rank = A_NULL_RANK;
112
114 Timer* m_timer = nullptr;
115 Real m_total_time_functor = 0.0;
116 Real m_total_time_waiting = 0.0;
117
120
123
126
127 Ref<ISerializeMessageList> m_message_list;
128
129 Int64 m_nb_total_particle_finish_exchange = 0;
130
131 bool m_exchange_finished = true;
132 Integer m_nb_loop = 0;
133 bool m_print_info = false;
134 Int64 m_last_nb_to_exchange = 0;
135 Integer m_current_nb_reduce = 0;
136 Integer m_last_nb_reduce = 0;
137 Int64 m_nb_particle_send = 0;
138
139 Int32 m_verbose_level = 1;
140 Int32 m_debug_exchange_items_level = 0;
143
149
150 private:
151
152 void _clearMessages();
153 void _serializeMessage(ISerializeMessage* sm,
154 Int32ConstArrayView acc_ids,
155 Int64Array& items_to_send_uid,
156 Int64Array& items_to_send_cells_uid);
157 void _deserializeMessage(ISerializeMessage* message,
158 Int64Array& items_to_create_unique_id,
159 Int64Array& items_to_create_cells_unique_id,
160 Int32Array& items_to_create_local_id,
161 Int32Array& items_to_create_cells_local_id,
162 ItemGroup item_group,
163 Int32Array* new_particle_local_ids);
164 void _addItemsToSend(Int32ConstArrayView local_ids,
165 Int32ConstArrayView sub_domains_to_send,
166 Int32ConstArrayView communicating_sub_domains,
167 UniqueArray< SharedArray<Int32> >& ids_to_send);
168 void _sendPendingMessages();
169
170 void _generateSendItems(Int32ConstArrayView local_ids,Int32ConstArrayView sub_domains_to_send);
171 void _checkInitialized();
172 bool _waitMessages(Integer nb_pending_particles,ItemGroup item_group,Int32Array* new_particle_local_ids,IFunctor* functor);
173 void _waitMessages(ItemGroup item_group,Int32Array* new_particle_local_ids,IFunctor* functor);
174};
175
176/*---------------------------------------------------------------------------*/
177/*---------------------------------------------------------------------------*/
178
179} // End namespace Arcane
180
181/*---------------------------------------------------------------------------*/
182/*---------------------------------------------------------------------------*/
183
184#endif
185
ArcaneBasicParticleExchangerObject(const Arcane::ServiceBuildInfo &sbi)
Constructeur.
Interface d'un échangeur de particules asynchrone.
Interface d'une famille d'entités.
Definition IItemFamily.h:84
Interface du gestionnaire de parallélisme pour un sous-domaine.
Groupe d'entités de maillage.
Definition ItemGroup.h:49
Interface d'un message de sérialisation entre IMessagePassingMng.
Référence à une instance.
Structure contenant les informations pour créer un service.
Vecteur 1D de données avec sémantique par référence.
Gestion d'un timer.
Definition Timer.h:62
Vecteur 1D de données avec sémantique par valeur (style STL).
bool exchangeItems(Integer nb_particle_finish_exchange, Int32ConstArrayView local_ids, Int32ConstArrayView sub_domains_to_send, ItemGroup item_group, IFunctor *functor) override
Échange des particules entre sous-domaines.
VariableList m_variables_to_exchange
Liste des variables à échanger.
bool waitMessages(Integer nb_pending_particles, Int32Array *new_particle_local_ids, IFunctor *functor) override
void setVerboseLevel(Integer level) override
Positionne le niveau de verbosité (0 pour aucune message)
IItemFamily * itemFamily() override
Famille associée.
UniqueArray< ISerializeMessage * > m_pending_messages
Liste des message en attente d'envoie.
void initialize(IItemFamily *item_family) override
Initialize l'échangeur pour la familly item_family.
Int64 m_serialize_id
Numéro du message. Utile pour le débug.
IAsyncParticleExchanger * asyncParticleExchanger() override
Gestion de l'asynchronisme (retourne nullptr si fonctionnalité non disponible)
void build() override
Construction de niveau build du service.
void addNewParticles(Integer nb_particle) override
Ajoute nb_particle dans l'échange actuel.
Integer verboseLevel() const override
Niveau de verbosité
void beginNewExchange(Integer nb_particle) override
Commence un nouvel échange de particules.
void sendItems(Integer nb_particle_finish_exchange, Int32ConstArrayView local_ids, Int32ConstArrayView sub_domains_to_send) override
UniqueArray< ISerializeMessage * > m_waiting_messages
Liste des message envoyés mais en cours de traitement.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Array< Int64 > Int64Array
Tableau dynamique à une dimension d'entiers 64 bits.
Definition UtilsTypes.h:212
std::int64_t Int64
Type entier signé sur 64 bits.
Int32 Integer
Type représentant un entier.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
Definition UtilsTypes.h:569
double Real
Type représentant un réel.
Array< Int32 > Int32Array
Tableau dynamique à une dimension d'entiers 32 bits.
Definition UtilsTypes.h:214
std::int32_t Int32
Type entier signé sur 32 bits.