12#ifndef ARCANE_PARALLEL_THREAD_HYBRIDMESSAGEQUEUE_H
13#define ARCANE_PARALLEL_THREAD_HYBRIDMESSAGEQUEUE_H
17#include "arcane/utils/CheckedConvert.h"
18#include "arcane/utils/TraceAccessor.h"
19#include "arcane/parallel/thread/ISharedMemoryMessageQueue.h"
20#include "arcane/ArcaneTypes.h"
21#include "arcane/Parallel.h"
22#include "arcane/parallel/mpi/ArcaneMpi.h"
47 Int32 r = rank.value();
54 friend std::ostream& operator<<(std::ostream& o,
const FullRankInfo& fri);
83class SourceDestinationFullRankInfo
88 : m_source(s), m_destination(d){}
93 FullRankInfo destination()
const {
return m_destination; }
94 bool isSameMpiRank()
const
96 return m_source.
mpiRank()==m_destination.mpiRank();
136 Int32 nbLocalRank()
const {
return m_nb_rank; }
139 return FullRankInfo::compute(user_rank,m_nb_rank);
141 SourceDestinationFullRankInfo rank(MessageRank rank1,MessageRank rank2)
const
143 auto x1 = FullRankInfo::compute(rank1,m_nb_rank);
144 auto x2 = FullRankInfo::compute(rank2,m_nb_rank);
145 return SourceDestinationFullRankInfo(x1,x2);
147 MessageTag tagForSend(MessageTag user_tag,FullRankInfo orig,FullRankInfo dest)
const
149 return _tag(user_tag,dest.localRank(),orig.localRank());
151 MessageTag tagForSend(MessageTag user_tag,SourceDestinationFullRankInfo fri)
const
153 return tagForSend(user_tag,fri.source(),fri.destination());
155 MessageTag tagForReceive(MessageTag user_tag,FullRankInfo orig,FullRankInfo dest)
const
157 return _tag(user_tag,orig.localRank(),dest.localRank());
159 MessageTag tagForReceive(MessageTag user_tag,MessageRank orig_local,MessageRank dest_local)
const
161 return _tag(user_tag,orig_local,dest_local);
163 MessageTag tagForReceive(MessageTag user_tag,SourceDestinationFullRankInfo fri)
const
165 return tagForReceive(user_tag,fri.source(),fri.destination());
171 return t % m_nb_rank;
176 Int64 utag = user_tag.value();
177 if (utag>MAX_USER_TAG)
178 ARCANE_FATAL(
"User tag is too big v={0} max={1}",utag,MAX_USER_TAG);
195class HybridMessageQueue
201 Int32 local_nb_rank);
212 MessageId probe(
const MP::PointToPointMessageInfo& message);
213 MP::MessageSourceInfo legacyProbe(
const MP::PointToPointMessageInfo& message);
214 const RankTagBuilder& rankTagBuilder()
const {
return m_rank_tag_builder; }
221 Int32 m_local_nb_rank;
223 Int32 m_debug_level = 0;
224 bool m_is_allow_null_rank_for_any_source =
true;
244 MessageId _probe(
const MP::PointToPointMessageInfo& message,
bool use_message_id);
#define ARCANE_FATAL(...)
Macro envoyant une exception FatalErrorException.
Vue modifiable d'un tableau d'un type T.
Informations de correspondances entre les différents rangs d'un communicateur.
MP::MessageRank m_global_rank
Rang global dans le communicateur.
MP::MessageRank globalRank() const
Rang global dans le communicateur.
MP::MessageRank mpiRank() const
Rang MPI du.
MP::MessageRank localRank() const
Rang local dans les threads.
MP::MessageRank m_mpi_rank
Rang MPI associé
MP::MessageRank m_local_rank
Rang local dans les threads.
Interface d'une file de messages avec les threads.
Int32 value() const
Valeur du rang.
Informations pour envoyer/recevoir un message point à point.
MessageRank emiterRank() const
Rang de l'émetteur du message.
MessageRank destinationRank() const
Rang de la destination du message.
Classe pour calculer à partir d'un tag utilisateur un tag contenant les informations de l'envoyeur et...
static constexpr Int32 MAX_USER_TAG_BIT
On autorise 2^14 tags soit 16384.
Int32 getReceiveRankFromTag(MessageTag internal_tag) const
Récupère le rang à partir du tag. Il s'agit de l'opération inverse de _tag()
RankTagBuilder(Int32 nb_rank)
Construit une instance pour nb_rank locaux.
Informations des buffers de réception.
Informations des buffers d'envoie.
Encapsule les informations source/destination.
Gestionnaire du parallélisme utilisant MPI.
TraceAccessor(ITraceMng *m)
Construit un accesseur via le gestionnaire de trace m.
Int32 toInt32(Int64 v)
Converti un Int64 en un Int32.
Déclarations des types et méthodes utilisés par les mécanismes d'échange de messages.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
std::int64_t Int64
Type entier signé sur 64 bits.
Int32 Integer
Type représentant un entier.
std::int32_t Int32
Type entier signé sur 32 bits.