11#ifndef ARCANE_MESH_BASICPARTICLEEXCHANGER_H
12#define ARCANE_MESH_BASICPARTICLEEXCHANGER_H
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"
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"
39#include "arcane/mesh/MeshGlobal.h"
40#include "arcane/mesh/BasicParticleExchanger_axl.h"
62class BasicParticleExchanger
65 friend class AsyncParticleExchanger;
70 ~BasicParticleExchanger()
override;
111 Int32 m_rank = A_NULL_RANK;
115 Real m_total_time_functor = 0.0;
116 Real m_total_time_waiting = 0.0;
129 Int64 m_nb_total_particle_finish_exchange = 0;
131 bool m_exchange_finished =
true;
133 bool m_print_info =
false;
134 Int64 m_last_nb_to_exchange = 0;
135 Integer m_current_nb_reduce = 0;
137 Int64 m_nb_particle_send = 0;
139 Int32 m_verbose_level = 1;
140 Int32 m_debug_exchange_items_level = 0;
152 void _clearMessages();
168 void _sendPendingMessages();
171 void _checkInitialized();
ArcaneBasicParticleExchangerObject(const Arcane::ServiceBuildInfo &sbi)
Constructeur.
Interface d'un échangeur de particules asynchrone.
Interface d'une famille d'entités.
Interface du gestionnaire de parallélisme pour un sous-domaine.
Groupe d'entités de maillage.
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.
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.
Int32 m_max_nb_message_without_reduce
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.
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.
double Real
Type représentant un réel.
Array< Int32 > Int32Array
Tableau dynamique à une dimension d'entiers 32 bits.
std::int32_t Int32
Type entier signé sur 32 bits.