-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpicpp.hpp
390 lines (364 loc) · 8.12 KB
/
mpicpp.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
#pragma once
#include <mpi.h>
#include <string>
#include <cstddef>
#include <exception>
namespace mpicpp {
class exception : public std::exception {
std::string error_string;
public:
exception(int errorcode);
exception(const char* msg);
const char* what() const noexcept override;
};
void handle_error(int errorcode);
class status {
MPI_Status implementation;
public:
status(MPI_Status implementation_arg);
status() = default;
int source() const { return implementation.MPI_SOURCE; }
int tag() const { return implementation.MPI_TAG; }
int error() const { return implementation.MPI_ERROR; }
};
class request {
MPI_Request implementation;
public:
request()
:implementation(MPI_REQUEST_NULL)
{}
explicit constexpr request(MPI_Request implementation_arg)
:implementation(implementation_arg)
{}
request(request const& other);
request& operator=(request const& other);
constexpr request(request&& other) noexcept
:implementation(other.implementation)
{
other.implementation = MPI_REQUEST_NULL;
}
request& operator=(request&& other);
void wait();
bool test();
void wait(status& status_arg);
bool test(status& status_arg);
~request();
MPI_Request& get() { return implementation; }
};
void waitall(int count, request* array_of_requests);
class op {
MPI_Op implementation;
bool owned;
public:
constexpr op(MPI_Op implementation_in,
bool owned_in = true)
:implementation(implementation_in)
,owned(owned_in)
{}
op()
:implementation(MPI_OP_NULL)
,owned(false)
{}
op(op const&) = delete;
op& operator=(op const&) = delete;
constexpr op(op&& other)
:implementation(other.implementation)
,owned(other.owned)
{
other.implementation = MPI_OP_NULL;
other.owned = false;
}
op& operator=(op&& other);
~op();
MPI_Op get() const;
static op sum();
static op min();
static op max();
static op bor();
static op create(
MPI_User_function* user_f,
int commute = 1);
};
class datatype {
MPI_Datatype implementation;
bool owned;
public:
constexpr datatype(
MPI_Datatype implementation_in,
bool owned_in)
:implementation(implementation_in)
,owned(owned_in)
{}
datatype()
:implementation(MPI_DATATYPE_NULL)
,owned(false)
{}
datatype(datatype const&) = delete;
datatype& operator=(datatype const&) = delete;
constexpr datatype(datatype&& other)
:implementation(other.implementation)
,owned(other.owned)
{
other.implementation = MPI_DATATYPE_NULL;
other.owned = false;
}
datatype& operator=(datatype&& other);
~datatype();
constexpr MPI_Datatype get() const { return implementation; }
static datatype predefined_byte();
static datatype predefined_char();
static datatype predefined_unsigned();
static datatype predefined_unsigned_long();
static datatype predefined_unsigned_long_long();
static datatype predefined_int();
static datatype predefined_long_long_int();
static datatype predefined_float();
static datatype predefined_double();
static datatype predefined_packed();
};
namespace details {
template <class T>
class predefined_datatype_helper;
template <>
class predefined_datatype_helper<std::byte>
{
public:
static datatype value()
{
return datatype::predefined_byte();
}
};
template <>
class predefined_datatype_helper<char>
{
public:
static datatype value()
{
return datatype::predefined_char();
}
};
template <>
class predefined_datatype_helper<unsigned>
{
public:
static datatype value()
{
return datatype::predefined_unsigned();
}
};
template <>
class predefined_datatype_helper<unsigned long>
{
public:
static datatype value()
{
return datatype::predefined_unsigned_long();
}
};
template <>
class predefined_datatype_helper<unsigned long long>
{
public:
static datatype value()
{
return datatype::predefined_unsigned_long_long();
}
};
template <>
class predefined_datatype_helper<int>
{
public:
static datatype value()
{
return datatype::predefined_int();
}
};
template <>
class predefined_datatype_helper<long long int>
{
public:
static datatype value()
{
return datatype::predefined_long_long_int();
}
};
template <>
class predefined_datatype_helper<float>
{
public:
static datatype value()
{
return datatype::predefined_float();
}
};
template <>
class predefined_datatype_helper<double>
{
public:
static datatype value()
{
return datatype::predefined_double();
}
};
}
template <class T>
datatype predefined_datatype()
{
return details::predefined_datatype_helper<T>::value();
}
class comm {
MPI_Comm implementation;
bool owned;
public:
constexpr comm(
MPI_Comm implementation_arg,
bool owned_arg)
:implementation(implementation_arg)
,owned(owned_arg)
{}
comm()
:implementation(MPI_COMM_NULL)
,owned(false)
{}
comm(comm const&) = delete;
comm& operator=(comm const&) = delete;
constexpr comm(comm&& other)
:implementation(other.implementation)
,owned(other.owned)
{
other.implementation = MPI_COMM_NULL;
other.owned = false;
}
comm& operator=(comm&& other);
~comm();
int size() const;
int rank() const;
request iallreduce(
void const* sendbuf,
void* recvbuf,
int count,
datatype const& datatype_arg,
op const& op_arg);
template <class T>
request iallreduce(
T const* sendbuf,
T* recvbuf,
int count,
op const& op_arg)
{
datatype datatype_arg = predefined_datatype<T>();
MPI_Request request_implementation;
handle_error(
MPI_Iallreduce(
sendbuf,
recvbuf,
count,
datatype_arg.get(),
op_arg.get(),
implementation,
&request_implementation));
return request(request_implementation);
}
template <class T>
request iallreduce(
T* buf,
int count,
op const& op_arg)
{
datatype datatype_arg = predefined_datatype<T>();
MPI_Request request_implementation;
handle_error(
MPI_Iallreduce(
MPI_IN_PLACE,
buf,
count,
datatype_arg.get(),
op_arg.get(),
implementation,
&request_implementation));
return request(request_implementation);
}
request isend(
void const* buf,
int count,
datatype datatype_arg,
int dest,
int tag);
template <class T>
request isend(
T const* buf,
int count,
int dest,
int tag)
{
datatype datatype_arg = predefined_datatype<T>();
MPI_Request request_implementation;
handle_error(
MPI_Isend(
buf,
count,
datatype_arg.get(),
dest,
tag,
implementation,
&request_implementation));
return request(request_implementation);
}
request irecv(
void* buf,
int count,
datatype datatype_arg,
int dest,
int tag);
template <class T>
request irecv(
T* buf,
int count,
int dest,
int tag)
{
datatype datatype_arg = predefined_datatype<T>();
MPI_Request request_implementation;
handle_error(
MPI_Irecv(
buf,
count,
datatype_arg.get(),
dest,
tag,
implementation,
&request_implementation));
return request(request_implementation);
}
static comm world();
static comm self();
comm dup() const;
comm split(int color, int key) const;
comm cart_create(
int ndims,
int const* dims,
int const* periods,
int reorder) const;
int cartdim_get() const;
void cart_get(
int maxdims,
int dims[],
int periods[],
int coords[]) const;
int cart_rank(int const coords[]) const;
void cart_coords(int rank, int maxdims, int coords[]) const;
constexpr MPI_Comm get() const { return implementation; }
};
class [[nodiscard]] environment {
public:
environment(int* argc, char*** argv);
environment()
:environment(nullptr, nullptr)
{}
~environment();
environment(environment const&) = delete;
environment& operator=(environment const&) = delete;
environment(environment&&) = delete;
environment& operator=(environment&&) = delete;
};
}