DFT-EFE
 
Loading...
Searching...
No Matches
MPIWrapper.h
Go to the documentation of this file.
1/******************************************************************************
2 * Copyright (c) 2021. *
3 * The Regents of the University of Michigan and DFT-EFE developers. *
4 * *
5 * This file is part of the DFT-EFE code. *
6 * *
7 * DFT-EFE is free software: you can redistribute it and/or modify *
8 * it under the terms of the Lesser GNU General Public License as *
9 * published by the Free Software Foundation, either version 3 of *
10 * the License, or (at your option) any later version. *
11 * *
12 * DFT-EFE is distributed in the hope that it will be useful, but *
13 * WITHOUT ANY WARRANTY; without even the implied warranty *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
15 * See the Lesser GNU General Public License for more details. *
16 * *
17 * You should have received a copy of the GNU Lesser General Public *
18 * License at the top level of DFT-EFE distribution. If not, see *
19 * <https://www.gnu.org/licenses/>. *
20 ******************************************************************************/
21
22/*
23 * @author Bikash Kanungo
24 */
25
26#ifndef dftefeMPIWrapper_h
27#define dftefeMPIWrapper_h
28
29#include <utils/MPITypes.h>
30#include <utils/TypeConfig.h>
32#include <string>
33#include <utility>
34namespace dftefe
35{
36 namespace utils
37 {
38 namespace mpi
39 {
40 template <typename MPIDatatype>
41 struct MinMaxAvg
42 {
46 };
47
48 int
49 MPITypeContiguous(int count, MPIDatatype oldtype, MPIDatatype *newtype);
50
51 template <MemorySpace memorySpace>
52 int
53 MPIAllreduce(const void *sendbuf,
54 void * recvbuf,
55 int count,
56 MPIDatatype datatype,
57 MPIOp op,
58 MPIComm comm);
59
60 template <MemorySpace memorySpace>
61 int
62 MPIAllgather(const void *sendbuf,
63 int sendcount,
64 MPIDatatype sendtype,
65 void * recvbuf,
66 int recvcount,
67 MPIDatatype recvtype,
68 MPIComm comm);
69
70 template <MemorySpace memorySpace>
71 int
72 MPIAllgatherv(const void *sendbuf,
73 int sendcount,
74 MPIDatatype sendtype,
75 void * recvbuf,
76 const int * recvcounts,
77 const int * displs,
78 MPIDatatype recvtype,
79 MPIComm comm);
80
81 int
82 MPIBarrier(MPIComm comm);
83 int
84 MPIIbarrier(MPIComm comm, MPIRequest *request);
85
86 template <MemorySpace memorySpace>
87 int
88 MPIBcast(void * buffer,
89 int count,
90 MPIDatatype datatype,
91 int root,
92 MPIComm comm);
93
94 int
96 MPIGroup group,
97 int tag,
98 MPIComm *newcomm);
99
100 int
101 MPICommFree(MPIComm *comm);
102 int
103 MPICommGroup(MPIComm comm, MPIGroup *group);
104 int
105 MPICommRank(MPIComm comm, int *rank);
106 int
107 MPICommSize(MPIComm comm, int *size);
108
109 int
110 MPIGroupFree(MPIGroup *group);
111
112 int
114 int n,
115 const int ranks[],
116 MPIGroup *newgroup);
117
118 int
120 int n,
121 const int ranks1[],
122 MPIGroup group2,
123 int ranks2[]);
124
125 int
126 MPIInit(int *argc, char ***argv);
127
128 int
129 MPIInitThread(int *argc, char ***argv, int required, int *provided);
130
131 int
132 MPIInitialized(int *flag);
133
134 int
135 MPIIprobe(int source,
136 int tag,
137 MPIComm comm,
138 int * flag,
139 MPIStatus *status);
140
141 int
142 MPITest(MPIRequest *request, int *flag, MPIStatus *status);
143 int
144 MPITestall(int count,
145 MPIRequest *requests,
146 int * flag,
147 MPIStatus * statuses);
148
149 template <MemorySpace memorySpace>
150 int
151 MPIIrecv(void * buf,
152 int count,
153 MPIDatatype datatype,
154 int source,
155 int tag,
156 MPIComm comm,
157 MPIRequest *request);
158
159 template <MemorySpace memorySpace>
160 int
161 MPIIsend(const void *buf,
162 int count,
163 MPIDatatype datatype,
164 int dest,
165 int tag,
166 MPIComm comm,
167 MPIRequest *request);
168
169 template <MemorySpace memorySpace>
170 int
171 MPIRecv(void * buf,
172 int count,
173 MPIDatatype datatype,
174 int source,
175 int tag,
176 MPIComm comm,
177 MPIStatus * status);
178
179 int
180 MPIOpCreate(MPIUserFunction *userfn, int commute, MPIOp *op);
181
182 int
183 MPIOpFree(MPIOp *op);
184
185 template <MemorySpace memorySpace>
186 int
187 MPIReduce(void * sendbuf,
188 void * recvbuf,
189 int count,
190 MPIDatatype datatype,
191 MPIOp op,
192 int root,
193 MPIComm comm);
194
195 int
196 MPIRequestFree(MPIRequest *request);
197
198 template <MemorySpace memorySpace>
199 int
200 MPISend(const void *buf,
201 int count,
202 MPIDatatype datatype,
203 int dest,
204 int tag,
205 MPIComm comm);
206
207 template <MemorySpace memorySpace>
208 int
209 MPISendrecv(const void *sendbuf,
210 int sendcount,
211 MPIDatatype sendtype,
212 int dest,
213 int sendtag,
214 void * recvbuf,
215 int recvcount,
216 MPIDatatype recvtype,
217 int source,
218 int recvtag,
219 MPIComm comm,
220 MPIStatus * status);
221
222 template <MemorySpace memorySpace>
223 int
224 MPIIssend(const void *buf,
225 int count,
226 MPIDatatype datatype,
227 int dest,
228 int tag,
229 MPIComm comm,
230 MPIRequest *request);
231
232 template <MemorySpace memorySpace>
233 int
234 MPISsend(const void *buf,
235 int count,
236 MPIDatatype datatype,
237 int dest,
238 int tag,
239 MPIComm comm);
240
241 int
242 MPITypeCommit(MPIDatatype *datatype);
243
244 int
245 MPITypeFree(MPIDatatype *datatype);
246
247 int
248 MPITypeVector(int count,
249 int blocklength,
250 int stride,
251 MPIDatatype oldtype,
252 MPIDatatype *newtype);
253
254 int
255 MPIWait(MPIRequest *request, MPIStatus *status);
256
257 int
258 MPIWaitall(int count, MPIRequest requests[], MPIStatus statuses[]);
259
260 int
261 MPIErrorString(int errorcode, char *string, int *resultlen);
262
263 int
264 MPIFinalize(void);
265
266 double
267 MPIWtime(void);
268
269 int
270 MPIFinalized(int *flag);
271
272 // template <typename T>
273 // MPIDatatype
274 // MPIGetDatatype();
275
276 bool
277 MPIErrIsSuccess(int errCode);
278
279 std::string
280 MPIErrMsg(int errCode);
281
282 std::pair<bool, std::string>
283 MPIErrIsSuccessAndMsg(int errCode);
284
285 template <typename T, MemorySpace memorySpace>
287 MPIAllreduceMinMaxAvg(const T &data, MPIComm comm);
288
289 } // end of namespace mpi
290 } // end of namespace utils
291} // end of namespace dftefe
292#include "MPIWrapper.t.cpp"
293#endif // dftefeMPIWrapper_h
int MPISendrecv(const void *sendbuf, int sendcount, MPIDatatype sendtype, int dest, int sendtag, void *recvbuf, int recvcount, MPIDatatype recvtype, int source, int recvtag, MPIComm comm, MPIStatus *status)
Definition: MPIWrapper.t.cpp:536
int MPIGroupTranslateRanks(MPIGroup group1, int n, const int ranks1[], MPIGroup group2, int ranks2[])
Definition: MPIWrapper.cpp:328
int MPIErrorString(int errorcode, char *string, int *resultlen)
Definition: MPIWrapper.cpp:464
int MPISsend(const void *buf, int count, MPIDatatype datatype, int dest, int tag, MPIComm comm)
Definition: MPIWrapper.t.cpp:573
int MPIRecv(void *buf, int count, MPIDatatype datatype, int source, int tag, MPIComm comm, MPIStatus *status)
Definition: MPIWrapper.t.cpp:486
int MPITypeContiguous(int count, MPIDatatype oldtype, MPIDatatype *newtype)
Definition: MPIWrapper.cpp:253
int MPIAllgatherv(const void *sendbuf, int sendcount, MPIDatatype sendtype, void *recvbuf, const int *recvcounts, const int *displs, MPIDatatype recvtype, MPIComm comm)
Definition: MPIWrapper.t.cpp:438
int MPIFinalized(int *flag)
Definition: MPIWrapper.cpp:479
int MPITest(MPIRequest *request, int *flag, MPIStatus *status)
Definition: MPIWrapper.cpp:361
int MPITypeVector(int count, int blocklength, int stride, MPIDatatype oldtype, MPIDatatype *newtype)
Definition: MPIWrapper.cpp:433
int MPICommRank(MPIComm comm, int *rank)
Definition: MPIWrapper.cpp:296
int MPITypeCommit(MPIDatatype *datatype)
Definition: MPIWrapper.cpp:415
int MPIDatatype
Definition: MPITypes.h:82
int MPIAllreduce(const void *sendbuf, void *recvbuf, int count, MPIDatatype datatype, MPIOp op, MPIComm comm)
Definition: MPIWrapper.t.cpp:401
void(void *, void *, int *, MPIDatatype *) MPIUserFunction
Definition: MPITypes.h:89
int MPITestall(int count, MPIRequest *requests, int *flag, MPIStatus *statuses)
Definition: MPIWrapper.cpp:368
std::pair< bool, std::string > MPIErrIsSuccessAndMsg(int errCode)
Definition: MPIWrapper.cpp:506
int MPIComm
Definition: MPITypes.h:83
int MPIBcast(void *buffer, int count, MPIDatatype datatype, int root, MPIComm comm)
Definition: MPIWrapper.t.cpp:459
int MPIGroupFree(MPIGroup *group)
Definition: MPIWrapper.cpp:310
int MPIIsend(const void *buf, int count, MPIDatatype datatype, int dest, int tag, MPIComm comm, MPIRequest *request)
Definition: MPIWrapper.t.cpp:557
int MPIIprobe(int source, int tag, MPIComm comm, int *flag, MPIStatus *status)
Definition: MPIWrapper.cpp:354
int MPIStatus
Definition: MPITypes.h:85
int MPICommSize(MPIComm comm, int *size)
Definition: MPIWrapper.cpp:303
int MPIWait(MPIRequest *request, MPIStatus *status)
Definition: MPIWrapper.cpp:446
int MPICommGroup(MPIComm comm, MPIGroup *group)
Definition: MPIWrapper.cpp:290
int MPIFinalize(void)
Definition: MPIWrapper.cpp:473
int MPIGroupIncl(MPIGroup group, int n, const int ranks[], MPIGroup *newgroup)
Definition: MPIWrapper.cpp:319
int MPIWaitall(int count, MPIRequest requests[], MPIStatus statuses[])
Definition: MPIWrapper.cpp:455
int MPIInit(int *argc, char ***argv)
Definition: MPIWrapper.cpp:341
int MPIOp
Definition: MPITypes.h:87
bool MPIErrIsSuccess(int errCode)
Definition: MPIWrapper.cpp:492
int MPICommCreateGroup(MPIComm comm, MPIGroup group, int tag, MPIComm *newcomm)
Definition: MPIWrapper.cpp:275
int MPIInitThread(int *argc, char ***argv, int required, int *provided)
Definition: MPIWrapper.cpp:378
int MPIOpCreate(MPIUserFunction *user_fn, int commute, MPIOp *op)
Definition: MPIWrapper.cpp:386
int MPIGroup
Definition: MPITypes.h:86
MinMaxAvg< T > MPIAllreduceMinMaxAvg(const T &data, MPIComm comm)
Definition: MPIWrapper.t.cpp:604
int MPIAllgather(const void *sendbuf, int sendcount, MPIDatatype sendtype, void *recvbuf, int recvcount, MPIDatatype recvtype, MPIComm comm)
Definition: MPIWrapper.t.cpp:418
int MPIRequest
Definition: MPITypes.h:84
int MPITypeFree(MPIDatatype *datatype)
Definition: MPIWrapper.cpp:424
int MPISend(const void *buf, int count, MPIDatatype datatype, int dest, int tag, MPIComm comm)
Definition: MPIWrapper.t.cpp:521
int MPIInitialized(int *flag)
Definition: MPIWrapper.cpp:347
int MPIOpFree(MPIOp *op)
Definition: MPIWrapper.cpp:395
int MPIIssend(const void *buf, int count, MPIDatatype datatype, int dest, int tag, MPIComm comm, MPIRequest *request)
Definition: MPIWrapper.t.cpp:588
int MPIIbarrier(MPIComm comm, MPIRequest *request)
Definition: MPIWrapper.cpp:268
std::string MPIErrMsg(int errCode)
Definition: MPIWrapper.cpp:498
int MPIIrecv(void *buf, int count, MPIDatatype datatype, int source, int tag, MPIComm comm, MPIRequest *request)
Definition: MPIWrapper.t.cpp:470
int MPIBarrier(MPIComm comm)
Definition: MPIWrapper.cpp:262
int MPICommFree(MPIComm *comm)
Definition: MPIWrapper.cpp:284
int MPIRequestFree(MPIRequest *request)
Definition: MPIWrapper.cpp:405
int MPIReduce(void *sendbuf, void *recvbuf, int count, MPIDatatype datatype, MPIOp op, int root, MPIComm comm)
Definition: MPIWrapper.t.cpp:503
double MPIWtime(void)
Definition: MPIWrapper.cpp:486
dealii includes
Definition: AtomFieldDataSpherical.cpp:31
Definition: MPIWrapper.h:42
MPIDatatype max
Definition: MPIWrapper.h:44
MPIDatatype avg
Definition: MPIWrapper.h:45
MPIDatatype min
Definition: MPIWrapper.h:43