-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmpi_random_pingpong.c
273 lines (210 loc) · 8.48 KB
/
mpi_random_pingpong.c
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
#include <mpi.h>
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
int main(int argc, char** argv) {
// Initialize the MPI environment
MPI_Init(NULL, NULL);
int rank;
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
int msg = 1234;
// Parameters
// Number of processes
int nProcesses = 4;
// Number of messages to send in total
int maxMsg = 99;
// Number of failed tests before timeout
int timeoutLimit = 1000;
// Maximum number of sends in progress
const int windowSize = 50;
// Number of messages to be sent to each process
// Not used for now
int lower = 5;
int upper = 50;
// Flags of total send and receive completion
int sendCompleted = 0;
int recvCompleted = 0;
// Keep track of sends in progress
MPI_Request sendRequests[windowSize];
int isWorking[windowSize];
memset(isWorking, 0, windowSize * sizeof(int) );
int sendInProgress = 0;
time_t t;
srand((unsigned) time(&t));
// even rank first send, odd rank first receive
if (rank % 2 == 0) {
// Keep Track of total sent and received
int nDests = nProcesses / 2;
int msgSent[nDests];
memset(msgSent, 0, nDests * sizeof(int));
int totalSent = 0;
int nSources = nDests;
int msgReceived[nSources];
memset(msgReceived, 0, nSources * sizeof(int));
while (sendCompleted != 1) {
// Check for sends in progress
for (int i = 0; i < windowSize; i++) {
// Send in progress, need to check completion
if (isWorking[i] == 1) {
int completed;
MPI_Test(&sendRequests[i], &completed, MPI_STATUS_IGNORE);
// Send is completed, remove it from working list, update numbers in progress
if (completed == 1) {
isWorking[i] = 0;
sendInProgress = sendInProgress - 1;
}
// Otherwise do nothing
}
}
// Attempt to send one message
if (sendInProgress < windowSize && sendCompleted == 0) {
int currIdx = rand() % nDests;
// Adjust destination index
int dest = 2 * currIdx + 1;
// Send message
MPI_Request request;
MPI_Isend(&msg, 1, MPI_INT, dest, 0, MPI_COMM_WORLD, &request);
// Update send counts
msgSent[currIdx] = msgSent[currIdx] + 1;
totalSent = totalSent + 1;
// Add request to requests in progress
sendInProgress = sendInProgress + 1;
for (int i = 0; i < windowSize; i++) {
// Find empty spot in request array
if (isWorking[i] == 0) {
// Insert current request
isWorking[i] = 1;
sendRequests[i] = request;
break;
}
}
}
// The last send is done, mark as completed
if (totalSent >= maxMsg) {
sendCompleted = 1;
}
}
MPI_Barrier(MPI_COMM_WORLD);
// Receive messages
while (recvCompleted != 1) {
// Attempt to receive one message
// Receive message and source
int unusedMsg;
int received = 0;
MPI_Request receiveRequest;
MPI_Status status;
MPI_Irecv(&unusedMsg, 1, MPI_INT, MPI_ANY_SOURCE, 0, MPI_COMM_WORLD, &receiveRequest);
// Test for receive request completion, with a timeout mechanism
int nTests = 0;
while (nTests < timeoutLimit && received == 0) {
MPI_Test(&receiveRequest, &received, &status);
nTests = nTests + 1;
}
// Successfully received a message
if (received == 1) {
int source = status.MPI_SOURCE;
// Translate source index to index in counter array
msgReceived[source / 2] = msgReceived[source / 2] + 1;
}
// Timeout, assume that no more message is incoming, mark receive completed
if (nTests == timeoutLimit) {
MPI_Cancel(&receiveRequest);
recvCompleted = 1;
}
}
// Summarize send and receive results
for (int r = 0; r < nDests; r++) {
int temp = 2 * r + 1;
printf("process %d sent to process %d: %d \n", rank, temp, msgSent[r]);
printf("process %d received from process %d: %d \n", rank, temp, msgReceived[r]);
}
} else {
// Keep Track of total sent and received
int nDests = (nProcesses / 2) + (nProcesses % 2);
int msgSent[nDests];
memset(msgSent, 0, nDests * sizeof(int));
int totalSent = 0;
int nSources = nDests;
int msgReceived[nSources];
memset(msgReceived, 0, nSources * sizeof(int));
// Receive messages
while (recvCompleted != 1) {
// Receive message and source
int unusedMsg;
int received = 0;
MPI_Request receiveRequest;
MPI_Status status;
MPI_Irecv(&unusedMsg, 1, MPI_INT, MPI_ANY_SOURCE, 0, MPI_COMM_WORLD, &receiveRequest);
// Test for receive request completion, with a timeout mechanism
int nTests = 0;
while (nTests < timeoutLimit && received == 0) {
MPI_Test(&receiveRequest, &received, &status);
nTests = nTests + 1;
}
// Successfully received a message
if (received == 1) {
int source = status.MPI_SOURCE;
// Translate source index to index in counter array
msgReceived[source / 2] = msgReceived[source / 2] + 1;
}
// Timeout, assume that no more message is incoming, mark receive completed
if (nTests == timeoutLimit) {
MPI_Cancel(&receiveRequest);
recvCompleted = 1;
}
}
MPI_Barrier(MPI_COMM_WORLD);
while (sendCompleted != 1) {
// Check for sends in progress
for (int i = 0; i < windowSize; i++) {
// Send in progress, need to check completion
if (isWorking[i] == 1) {
int completed;
MPI_Test(&sendRequests[i], &completed, MPI_STATUS_IGNORE);
// Send is completed, remove it from working list, update numbers in progress
if (completed == 1) {
isWorking[i] = 0;
sendInProgress = sendInProgress - 1;
}
// Otherwise do nothing
}
}
// Attempt to send one message
if (sendInProgress < windowSize && sendCompleted == 0) {
int currIdx = rand() % nDests;
// Adjust destination index
int dest = 2 * currIdx;
// Send message
MPI_Request request;
MPI_Isend(&msg, 1, MPI_INT, dest, 0, MPI_COMM_WORLD, &request);
// Update send counts
msgSent[currIdx] = msgSent[currIdx] + 1;
totalSent = totalSent + 1;
// Add request to requests in progress
sendInProgress = sendInProgress + 1;
for (int i = 0; i < windowSize; i++) {
// Find empty spot in request array
if (isWorking[i] == 0) {
// Insert current request
isWorking[i] = 1;
sendRequests[i] = request;
break;
}
}
}
// The last send is done, mark as completed
if (totalSent >= maxMsg) {
sendCompleted = 1;
}
}
// Summarize send and receive results
for (int r = 0; r < nDests; r++) {
int temp = 2 * r;
printf("process %d sent to process %d: %d \n", rank, temp, msgSent[r]);
printf("process %d received from process %d: %d \n", rank, temp, msgReceived[r]);
}
}
// Finalize the MPI environment.
MPI_Finalize();
}