-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMPICommunicator.hpp
114 lines (94 loc) · 2.68 KB
/
MPICommunicator.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
#ifndef MPICOMMUNICATOR_HPP_
#define MPICOMMUNICATOR_HPP_
#include "Communicator.hpp"
#include <mpi.h>
#include <vector>
#include <limits>
#include <atomic>
template<typename T>
class MPICommunicator : public Communicator<T>
{
typedef Communicator<T> Parent;
public:
MPICommunicator(const int & target, const unsigned & sizeBuffer)
: Parent(sizeBuffer),
_rank(-1),
_target(target),
_numComms(0)
{
MPI_Comm_rank(MPI_COMM_WORLD, &_rank);
}
virtual ~MPICommunicator()
{
for (unsigned i = 0; i < Parent::_mem.size(); ++i)
{
MPI_Free_mem (Parent::_mem[i]);
}
Parent::_mem.clear();
}
unsigned getNumDoneCommunications() const
{
return _numComms;
}
void addBuffer() override
{
char * p;
MPI_Alloc_mem(Parent::getCharBufferSize(), MPI_INFO_NULL, &p);
_reqs.push_back(MPI_REQUEST_NULL);
Parent::_mem.push_back(p);
}
void openConnection(const unsigned & pos) override
{
MPI_Irecv(Parent::_mem[pos], Parent::getCharBufferSize(), MPI_CHAR, _target, pos, MPI_COMM_WORLD, &_reqs[pos]);
}
bool checkIfRecvCompleted(const unsigned & pos) override
{
int flag;
MPI_Test(&_reqs[pos], &flag, MPI_STATUS_IGNORE);
if (flag)
{
++_numComms;
}
return flag;
}
bool checkIfFreeForSend(const unsigned & pos) override
{
if (_reqs[pos] != MPI_REQUEST_NULL)
{
MPI_Wait(&_reqs[pos], MPI_STATUS_IGNORE);
_reqs[pos] = MPI_REQUEST_NULL;
Parent::getIndicatorOfWin(pos).clear();
}
return true;
}
void sendData(const unsigned & pos, const int & num) override
{
int count = num * sizeof(T) + sizeof(Indicator);
MPI_Isend(Parent::_mem[pos], count, MPI_CHAR, _target, pos, MPI_COMM_WORLD, &_reqs[pos]);
++_numComms;
}
void finishReceiver() override
{
unsigned tmp = _numComms;
MPI_Send(&tmp, 1, MPI_UNSIGNED, _target, _reqs.size() + 1, MPI_COMM_WORLD);
MPI_Status status[_reqs.size()];
MPI_Waitall(_reqs.size(), _reqs.data(), status);
}
void finishSender() override
{
unsigned tmp = 0;
MPI_Recv(&tmp, 1, MPI_UNSIGNED, _target, _reqs.size() + 1, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
if (tmp != _numComms)
throw std::runtime_error("Cleanup failed");
for (unsigned i = 0; i < _reqs.size(); ++i)
MPI_Isend(NULL, 0, MPI_CHAR, _target, i, MPI_COMM_WORLD, &_reqs[i]);
MPI_Status status[_reqs.size()];
MPI_Waitall(_reqs.size(), _reqs.data(), status);
}
private:
int _rank;
int _target;
std::atomic<unsigned> _numComms;
std::vector<MPI_Request> _reqs;
};
#endif