14#include "arccore/message_passing_mpi/internal/MessagePassingMpiEnum.h"
19namespace Arcane::MessagePassing::Mpi
26MpiInfo(eMpiName mpi_operation)
28 switch (mpi_operation) {
31 m_description =
"Blocking Broadcast";
33 case eMpiName::Gather:
34 m_name =
"MPI_Gather";
35 m_description =
"Blocking Gather";
37 case eMpiName::Gatherv:
38 m_name =
"MPI_Gatherv";
39 m_description =
"Blocking Gather with variable message size";
41 case eMpiName::Allgather:
42 m_name =
"MPI_Allgather";
43 m_description =
"Blocking allGather";
45 case eMpiName::Allgatherv:
46 m_name =
"MPI_Allgatherv";
47 m_description =
"Blocking allGather with variable message size";
49 case eMpiName::Scatterv:
50 m_name =
"MPI_Scatterv";
51 m_description =
"Blocking Scatter with variable message size";
53 case eMpiName::Alltoall:
54 m_name =
"MPI_Alltoall";
55 m_description =
"Blocking Alltoall";
57 case eMpiName::Alltoallv:
58 m_name =
"MPI_Alltoallv";
59 m_description =
"Blocking Alltoall with variable message size";
61 case eMpiName::Barrier:
62 m_name =
"MPI_Barrier";
63 m_description =
"Blocking Barrier";
65 case eMpiName::Reduce:
66 m_name =
"MPI_Reduce";
67 m_description =
"Blocking Reduce";
69 case eMpiName::Allreduce:
70 m_name =
"MPI_Allreduce";
71 m_description =
"Blocking Allreduce";
75 m_description =
"Blocking Scan";
77 case eMpiName::Sendrecv:
78 m_name =
"MPI_Sendrecv";
79 m_description =
"Blocking Sendrecv";
83 m_description =
"Non-blocking Send";
87 m_description =
"Blocking Send";
91 m_description =
"Non-blocking Recv";
95 m_description =
"Blocking Recv";
99 m_description =
"Test";
101 case eMpiName::Probe:
102 m_name =
"MPI_Probe";
103 m_description =
"Probe";
105 case eMpiName::Get_count:
106 m_name =
"MPI_Get_count";
107 m_description =
"Get count";
111 m_description =
"Wait";
113 case eMpiName::Waitall:
114 m_name =
"MPI_Waitall";
115 m_description =
"Waitall";
117 case eMpiName::Testsome:
118 m_name =
"MPI_Testsome";
119 m_description =
"Testsome";
121 case eMpiName::Waitsome:
122 m_name =
"MPI_Waitsome";
123 m_description =
"Waitsome";
127 m_description =
"Unkown";
146 return m_description;
const String & description() const
Accesseur sur la description associee a l'enum.
const String & name() const
Accesseur sur le nom associe a l'enum.
Chaîne de caractères unicode.