Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
Otf2MpiProfiling.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/* Otf2MpiProfiling.h (C) 2000-2025 */
9/* */
10/* Implementation de l'interface IMpiProfiling permettant l'instrumentation */
11/* au format OTF2 . */
12/*---------------------------------------------------------------------------*/
13#ifndef ARCANE_STD_INTERNAL_OTF2MPIPROFILING_H
14#define ARCANE_STD_INTERNAL_OTF2MPIPROFILING_H
15/*---------------------------------------------------------------------------*/
16/*---------------------------------------------------------------------------*/
17
19#include "arccore/collections/CollectionsGlobal.h"
20#include "arccore/message_passing/Request.h"
21#include "arccore/message_passing_mpi/internal/IMpiProfiling.h"
22#include "arccore/message_passing_mpi/internal/MessagePassingMpiEnum.h"
23#include "arcane/std/internal/Otf2LibWrapper.h"
24
25/*---------------------------------------------------------------------------*/
26/*---------------------------------------------------------------------------*/
27
28namespace Arcane
29{
30using namespace MessagePassing::Mpi;
31
32/*---------------------------------------------------------------------------*/
33/*---------------------------------------------------------------------------*/
41: public IMpiProfiling
42{
43 public:
44 // Pour l'instant void pour des raisons de compatibilité mais devra à terme
45 // être IMpiProfiling::ReturnType
46 using ReturnType = void;
47
48 public:
49 explicit Otf2MpiProfiling(Otf2LibWrapper* otf2_wrapper);
50 ~Otf2MpiProfiling() override = default;
51
52 public:
53 // Bcast
54 ReturnType broadcast(void* buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm) final;
55 // Gather
56 ReturnType gather(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
57 int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) final;
58 // Gatherv
59 ReturnType gatherVariable(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
60 const int* recvcounts, const int* displs, MPI_Datatype recvtype, int root, MPI_Comm comm) final;
61 // Allgather
62 ReturnType allGather(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
63 int recvcount, MPI_Datatype recvtype, MPI_Comm comm) final;
64 // Allgatherv
65 ReturnType allGatherVariable(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
66 const int* recvcounts, const int* displs, MPI_Datatype recvtype, MPI_Comm comm) final;
67 // Scatterv
68 ReturnType scatterVariable(const void* sendbuf, const int* sendcounts, const int* displs,
69 MPI_Datatype sendtype, void* recvbuf, int recvcount, MPI_Datatype recvtype,
70 int root, MPI_Comm comm) final;
71 // Alltoall
72 ReturnType allToAll(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf,
73 int recvcount, MPI_Datatype recvtype, MPI_Comm comm) final;
74 // Alltoallv
75 ReturnType allToAllVariable(const void* sendbuf, const int* sendcounts, const int* sdispls,
76 MPI_Datatype sendtype, void* recvbuf, const int* recvcounts,
77 const int* rdispls, MPI_Datatype recvtype, MPI_Comm comm) final;
78 // Barrier
79 ReturnType barrier(MPI_Comm comm) final;
80 // Reduce
81 ReturnType reduce(const void* sendbuf, void* recvbuf, int count, MPI_Datatype datatype,
82 MPI_Op op, int root, MPI_Comm comm) final;
83 // Allreduce
84 ReturnType allReduce(const void* sendbuf, void* recvbuf, int count, MPI_Datatype datatype,
85 MPI_Op op, MPI_Comm comm) final;
86 // Scan
87 ReturnType scan(const void* sendbuf, void* recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) final;
88 // Sendrecv
89 ReturnType sendRecv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, int dest,
90 int sendtag, void* recvbuf, int recvcount, MPI_Datatype recvtype,
91 int source, int recvtag, MPI_Comm comm, MPI_Status* status) final;
92 // Isend
93 ReturnType iSend(const void* buf, int count, MPI_Datatype datatype, int dest, int tag,
94 MPI_Comm comm, MPI_Request* request) final;
95 // Send
96 ReturnType send(const void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) final;
97 // Irecv
98 ReturnType iRecv(void* buf, int count, MPI_Datatype datatype, int source, int tag,
99 MPI_Comm comm, MPI_Request* request) final;
100 // recv
101 ReturnType recv(void* buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status* status) final;
102 // Test
103 ReturnType test(MPI_Request* request, int* flag, MPI_Status* status) final;
104 // Probe
105 ReturnType probe(int source, int tag, MPI_Comm comm, MPI_Status* status) final;
106 // Get_count
107 ReturnType getCount(const MPI_Status* status, MPI_Datatype datatype, int* count) final;
108 // Wait
109 ReturnType wait(MPI_Request* request, MPI_Status* status) final;
110 // Waitall
111 ReturnType waitAll(int count, MPI_Request array_of_requests[], MPI_Status array_of_statuses[]) final;
112 // Testsome
113 ReturnType testSome(int incount, MPI_Request array_of_requests[], int* outcount,
114 int array_of_indices[], MPI_Status array_of_statuses[]) final;
115 // Waitsome
116 ReturnType waitSome(int incount, MPI_Request array_of_requests[], int* outcount,
117 int array_of_indices[], MPI_Status array_of_statuses[]) final;
118
119 private:
120 Otf2LibWrapper* m_otf2_wrapper;
121
122 private:
123 void _doEventEnter(eMpiName event_name);
124 void _doEventLeave(eMpiName event_name);
125 ReturnType _ret(int r) const
126 {
127 return (ReturnType)(r);
128 }
129};
130
131/*---------------------------------------------------------------------------*/
132/*---------------------------------------------------------------------------*/
133
134} // namespace Arcane
135
136/*---------------------------------------------------------------------------*/
137/*---------------------------------------------------------------------------*/
138
139#endif
Déclarations des types de la composante 'base' de Arccore.
Classe d'encapsulation des fonctions de la librairie OTF2.
ReturnType allGatherVariable(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int *recvcounts, const int *displs, MPI_Datatype recvtype, MPI_Comm comm) final
MPI_Allgatherv.
ReturnType allGather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm) final
MPI_Allgather.
ReturnType waitAll(int count, MPI_Request array_of_requests[], MPI_Status array_of_statuses[]) final
MPI_Waitall.
ReturnType testSome(int incount, MPI_Request array_of_requests[], int *outcount, int array_of_indices[], MPI_Status array_of_statuses[]) final
MPI_Testsome.
ReturnType probe(int source, int tag, MPI_Comm comm, MPI_Status *status) final
MPI_Probe.
Otf2MpiProfiling(Otf2LibWrapper *otf2_wrapper)
Constructeur.
ReturnType barrier(MPI_Comm comm) final
MPI_Barrier.
ReturnType sendRecv(const void *sendbuf, int sendcount, MPI_Datatype sendtype, int dest, int sendtag, void *recvbuf, int recvcount, MPI_Datatype recvtype, int source, int recvtag, MPI_Comm comm, MPI_Status *status) final
MPI_Sendrecv.
ReturnType recv(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status *status) final
MPI_recv.
ReturnType reduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, int root, MPI_Comm comm) final
MPI_Reduce.
ReturnType scatterVariable(const void *sendbuf, const int *sendcounts, const int *displs, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) final
MPI_Scatterv.
ReturnType allToAllVariable(const void *sendbuf, const int *sendcounts, const int *sdispls, MPI_Datatype sendtype, void *recvbuf, const int *recvcounts, const int *rdispls, MPI_Datatype recvtype, MPI_Comm comm) final
MPI_Alltoallv.
ReturnType allToAll(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm) final
MPI_Alltoall.
ReturnType gatherVariable(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, const int *recvcounts, const int *displs, MPI_Datatype recvtype, int root, MPI_Comm comm) final
MPI_Gatherv.
ReturnType scan(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) final
MPI_Scan.
ReturnType waitSome(int incount, MPI_Request array_of_requests[], int *outcount, int array_of_indices[], MPI_Status array_of_statuses[]) final
MPI_Waitsome.
ReturnType getCount(const MPI_Status *status, MPI_Datatype datatype, int *count) final
MPI_Get_count.
ReturnType broadcast(void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm) final
MPI_Bcast.
ReturnType gather(const void *sendbuf, int sendcount, MPI_Datatype sendtype, void *recvbuf, int recvcount, MPI_Datatype recvtype, int root, MPI_Comm comm) final
MPI_Gather.
ReturnType wait(MPI_Request *request, MPI_Status *status) final
MPI_Wait.
ReturnType test(MPI_Request *request, int *flag, MPI_Status *status) final
MPI_Test.
ReturnType send(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm) final
MPI_Send.
ReturnType allReduce(const void *sendbuf, void *recvbuf, int count, MPI_Datatype datatype, MPI_Op op, MPI_Comm comm) final
MPI_Allreduce.
ReturnType iSend(const void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request) final
MPI_Isend.
ReturnType iRecv(void *buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Request *request) final
MPI_Irecv.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-