-
Notifications
You must be signed in to change notification settings - Fork 0
/
hs-random.c
315 lines (259 loc) · 10.3 KB
/
hs-random.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
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
/**
* hs-random.c
*
* @author Mira Leung
*
* March 15, 2014
*
* An implementation of Hirschberg-Sinclair's algorithm with
* randomly selected nodes as initiators.
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <time.h>
#include <mpi.h>
#include <fgmpi.h>
// Tags
#define TAG_ELECTION 2
#define TAG_REPLY 3
#define TAG_MSGNUM 4
#define TAG_DUMMY 5
#define TAG_IGNORE 6
#define SIZE_MSG 3
#define SWAP(a, b) do { typeof(a) temp = a; a = b; b = temp; } while (0)
int ceiling_log2(unsigned long long x);
int gcd(int size, int pnum);
/** FG-MPI Boilerplate begins **/
int hs_random(int argc, char* argv[]);
FG_ProcessPtr_t binding_func(int argc, char** argv, int rank) {
return (&hs_random);
}
FG_MapPtr_t map_lookup(int argc, char** argv, char* str) {
return (&binding_func);
}
int main(int argc, char *argv[]) {
FGmpiexec(&argc, &argv, &map_lookup);
return 0;
}
/** FG-MPI Boilerplate ends **/
int hs_random(int argc, char *argv[]) {
if (argc != 2 && argc != 3) {
printf("Usage: ./hs-random [ -v ] <Process number>\n");
exit(1);
}
int lnum_sent = 0, lnum_recv = 0;
int tnum_sent = 0, tnum_recv = 0;
int pnum;
int verbose = 0;
if (argc == 3) {
if (!strcmp(argv[1], "-v")) pnum = atoi(argv[2]), verbose = 1;
else if (!strcmp(argv[2], "-v")) pnum = atoi(argv[1]), verbose = 1;
} else if (argc == 2)
pnum = atoi(argv[1]);
int rank, size;
MPI_Init (&argc, &argv);
MPI_Comm_rank (MPI_COMM_WORLD, &rank); // get my pid
MPI_Comm_size (MPI_COMM_WORLD, &size); // get number of processes
MPI_Status status;
MPI_Request request;
if (pnum <= size || pnum/size < 7 || gcd(size, pnum) != 1) {
printf("Usage: pnum must be at least 7 times larger than and relatively coprime to size.\n");
exit(1);
}
int election_sendbuf[SIZE_MSG];
srand(time(NULL) + rank);
int uid = (rand() % pnum);
// int uid = ((rank+1)*pnum) % size;
int max_so_far = uid;
int k = 0, d = 0;
election_sendbuf[0] = uid, election_sendbuf[1] = k, election_sendbuf[2] = d;
int left = rank-1;
if (!rank) left = size-1;
int right = (rank+1)%size;
int recvbuf[SIZE_MSG];
int left_recv_tag, right_recv_tag;
int endLoopFlag = 0;
int recvReplies[2][2] = {{0, 0}, {0, 0}}; // left, right; j, k
int left_sendbuf[SIZE_MSG] = { max_so_far, k, d }, left_send_tag = TAG_ELECTION, left_send_dest = right;
int right_sendbuf[SIZE_MSG] = { max_so_far, k, d }, right_send_tag = TAG_ELECTION, right_send_dest = left;
int last = ceiling_log2((unsigned long long) size);
int initiator = (((rand()+uid) % size) > (size - 1)/2);
int participant = 0;
if (initiator) {
participant = 1;
if (verbose) printf("Process %d is an initiator\n", rank);
MPI_Isend(election_sendbuf, SIZE_MSG, MPI_INT, left, TAG_ELECTION, MPI_COMM_WORLD, &request);
MPI_Isend(election_sendbuf, SIZE_MSG, MPI_INT, right, TAG_ELECTION, MPI_COMM_WORLD, &request);
lnum_sent+= 2;
}
// Current leader is max_so_far
while (k < last+1) {
MPI_Recv(recvbuf, SIZE_MSG, MPI_INT, MPI_ANY_SOURCE, MPI_ANY_TAG, MPI_COMM_WORLD, &status);
lnum_recv++;
k = recvbuf[1], d = recvbuf[2];
if (status.MPI_TAG == TAG_IGNORE) {
if (recvbuf[0] > max_so_far) max_so_far = recvbuf[0];
break;
}
if (k > last) break;
if (status.MPI_SOURCE == left) {
left_recv_tag = status.MPI_TAG;
switch (left_recv_tag) {
case TAG_ELECTION:
if (recvbuf[0] > uid) {
if (recvbuf[2] < (1 << k)) {
left_sendbuf[2] = d + 1, left_sendbuf[0] = recvbuf[0], left_sendbuf[1] = k;
left_send_tag = TAG_ELECTION, left_send_dest = right;
} else if (d >= (1 << k)) {
left_sendbuf[0] = recvbuf[0], left_sendbuf[1] = recvbuf[1];
left_send_tag = TAG_REPLY, left_send_dest = left;
}
} else if (recvbuf[0] == uid) {
if (recvbuf[0] > max_so_far) max_so_far = recvbuf[0];
left_sendbuf[0] = uid, left_sendbuf[1] = k+1, left_sendbuf[2] = 1;
left_send_tag = TAG_ELECTION, left_send_dest = right;
} else {
if (!participant) { // initiate an election if the incoming uid is smaller than mine
participant = 1;
MPI_Isend(election_sendbuf, SIZE_MSG, MPI_INT, left, TAG_ELECTION, MPI_COMM_WORLD, &request);
MPI_Isend(election_sendbuf, SIZE_MSG, MPI_INT, right, TAG_ELECTION, MPI_COMM_WORLD, &request);
lnum_sent+= 2;
}
break;
}
lnum_sent++;
MPI_Isend(left_sendbuf, SIZE_MSG, MPI_INT, left_send_dest, left_send_tag, MPI_COMM_WORLD, &request);
break;
case TAG_REPLY:
if (recvbuf[0] != max_so_far) { // Improvement #1: compare to max_so_far instead of own uid
if (recvbuf[0] > max_so_far) max_so_far = recvbuf[0];
left_sendbuf[0] = recvbuf[0], left_sendbuf[1] = recvbuf[1];
left_send_dest = right, left_send_tag = TAG_REPLY;
recvReplies[0][0] = recvbuf[0], recvReplies[0][1] = recvbuf[1];
} else {
if (recvbuf[0] > max_so_far) max_so_far = recvbuf[0];
left_sendbuf[0] = recvbuf[0], left_sendbuf[1] = k + 1, left_sendbuf[2] = 1;
lnum_sent+=2;
MPI_Isend(left_sendbuf, SIZE_MSG, MPI_INT, left, TAG_ELECTION, MPI_COMM_WORLD, &request);
MPI_Isend(left_sendbuf, SIZE_MSG, MPI_INT, right, TAG_ELECTION, MPI_COMM_WORLD, &request);
}
break;
case TAG_IGNORE: break;
default: endLoopFlag = 1; break;
}
}
// Deal with right received values
else if (status.MPI_SOURCE == right) {
right_recv_tag = status.MPI_TAG;
switch (right_recv_tag) {
case TAG_ELECTION:
if (recvbuf[0] > uid) {
if (recvbuf[0] > max_so_far) max_so_far = recvbuf[0];
if (d < (1 << k)) {
right_sendbuf[2] = recvbuf[2]+1, right_sendbuf[0] = recvbuf[0], right_sendbuf[1] = recvbuf[1];
right_send_tag = TAG_ELECTION, right_send_dest = left;
} else if (d >= (1 << k)) {
right_sendbuf[0] = recvbuf[0], right_sendbuf[1] = recvbuf[1];
right_send_tag = TAG_REPLY, right_send_dest = right;
}
} else if (recvbuf[0] == uid) {
if (recvbuf[0] > max_so_far) max_so_far = recvbuf[0];
right_sendbuf[0] = uid, right_sendbuf[1] = k+1, right_sendbuf[2] = 1;
right_send_tag = TAG_ELECTION, right_send_dest = left;
if (k >= last && recvbuf[0] == max_so_far) endLoopFlag = 1;
} else {
if (!participant) { // initiate an election if the incoming uid is smaller than mine
participant = 1;
MPI_Isend(election_sendbuf, SIZE_MSG, MPI_INT, left, TAG_ELECTION, MPI_COMM_WORLD, &request);
MPI_Isend(election_sendbuf, SIZE_MSG, MPI_INT, right, TAG_ELECTION, MPI_COMM_WORLD, &request);
lnum_sent+= 2;
}
break;
}
lnum_sent++;
MPI_Isend(right_sendbuf, SIZE_MSG, MPI_INT, right_send_dest, right_send_tag, MPI_COMM_WORLD, &request);
break;
case TAG_REPLY:
if (recvbuf[0] != max_so_far) {
if (recvbuf[0] > max_so_far) max_so_far = recvbuf[0];
right_sendbuf[0] = recvbuf[0], right_sendbuf[1] = recvbuf[1];
right_send_tag = TAG_REPLY, right_send_dest = left;
recvReplies[1][0] = recvbuf[0], recvReplies[1][1] = recvbuf[1];
} else {
if (recvbuf[0] > max_so_far) max_so_far = recvbuf[0];
if (recvReplies[1][0] == recvbuf[0] && recvReplies[1][1] == recvbuf[1]) {
left_sendbuf[0] = uid,
left_sendbuf[1] = k+1, right_sendbuf[2] = left_sendbuf[2] = 1;
lnum_sent+=2;
MPI_Isend(left_sendbuf, SIZE_MSG, MPI_INT, left, TAG_ELECTION, MPI_COMM_WORLD, &request);
MPI_Isend(left_sendbuf, SIZE_MSG, MPI_INT, right, TAG_ELECTION, MPI_COMM_WORLD, &request);
} else {
recvReplies[1][0] = recvbuf[0], recvReplies[1][1] = recvbuf[1];
}
break;
}
case TAG_IGNORE: break;
default: endLoopFlag = 1; break;
}
}
if (endLoopFlag) {
break;
}
}
int msgBuf[3] = {max_so_far, 0, 0}, msgRecv[3];
// Election is over - tell the other processes
MPI_Isend(msgBuf, SIZE_MSG, MPI_INT, left, TAG_IGNORE, MPI_COMM_WORLD, &request);
MPI_Isend(msgBuf, SIZE_MSG, MPI_INT, right, TAG_IGNORE, MPI_COMM_WORLD, &request);
MPI_Request_free(&request);
if (participant && verbose)
printf("rank=%d, id=%d, leader=%d, mrcvd=%d, msent=%d\n", rank, uid, (max_so_far == uid), lnum_recv, lnum_sent);
if (max_so_far == uid) {
msgBuf[0] = lnum_recv, msgBuf[1] = lnum_sent, msgBuf[2] = uid;
max_so_far = uid;
MPI_Isend(msgBuf, SIZE_MSG, MPI_INT, right, TAG_MSGNUM, MPI_COMM_WORLD, &request);
} else {
// Non-leaders, do a receive and a send for their message totals as well
MPI_Recv(msgRecv, SIZE_MSG, MPI_INT, left, TAG_MSGNUM, MPI_COMM_WORLD, &status);
// increase its count by 1 for each receive and send
msgBuf[0] = msgRecv[0]+ lnum_recv, msgBuf[1] = msgRecv[1]+ lnum_sent;
max_so_far = msgBuf[2];
if (participant) MPI_Isend(msgBuf, SIZE_MSG, MPI_INT, right, TAG_MSGNUM, MPI_COMM_WORLD, &request);
else MPI_Isend(msgRecv, SIZE_MSG, MPI_INT, right, TAG_MSGNUM, MPI_COMM_WORLD, &request);
}
// Leader receives/prints total number of messages received and sent
if (max_so_far == uid) {
MPI_Recv(msgRecv, SIZE_MSG, MPI_INT, left, TAG_MSGNUM, MPI_COMM_WORLD, &status);
tnum_recv = msgRecv[0];
tnum_sent = msgRecv[1];
printf("Leader: rank=%d, id=%d, trcvd=%d, tsent=%d\n", rank, uid, tnum_recv, tnum_sent);
}
MPI_Finalize();
return 0;
}
int gcd(int size, int pnum) {
int k = size, m = pnum;
while (k != m) {
if (k > m) k = k-m;
else m = m-k;
}
return k;
}
int ceiling_log2(unsigned long long x) {
static const unsigned long long t[6] = {
0xFFFFFFFF00000000ull,
0x00000000FFFF0000ull,
0x000000000000FF00ull,
0x00000000000000F0ull,
0x000000000000000Cull,
0x0000000000000002ull
};
int y = (((x & (x - 1)) == 0) ? 0 : 1);
int j = 32, i;
for (i = 0; i < 6; i++) {
int k = (((x & t[i]) == 0) ? 0 : j);
y += k, x >>= k, j >>= 1;
}
return y;
}