-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpap.c
346 lines (288 loc) · 11.3 KB
/
pap.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
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
// Objective : quantify time and evaluate covering effect on timings
// between sync and async paradigm through MPI for 2 processes exchange
/*
Protocol :
- send array from rank 0 to to each working process and recieve them back
- This is the sync and async example
*/
#include <time.h>
#include <stdlib.h>
#include <stdio.h>
#include <mpi.h>
#include <unistd.h>
inline
unsigned long long rdtsc(void)
{
unsigned long long a, d;
__asm__ volatile ("rdtsc" : "=a" (a), "=d" (d));
return (d << 32) | a;
}
int main(int argc, char** argv)
{
MPI_Init(&argc,&argv);
int world_rank;
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
int world_size;
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
unsigned long long size_array , i_max, repetition, burn_repetition ;
if (argc != 4){
// defualt size
size_array = 100000;
repetition = 1000 ;
burn_repetition = 1000 ;
}
else{
char *tmpstring ;
size_array = strtoul(argv[1], &tmpstring, 10) ;//100000
burn_repetition = strtoul(argv[2], &tmpstring, 10) ; //200000
repetition = strtoul(argv[3], &tmpstring, 10) ; //200000
}
if (world_rank == 0){
printf("\n") ;
if (argc != 4){
printf("Please use arguments : [size of array] [burn_repetition] [repetition]\n");
}
printf("size of array : %llu \n", size_array) ;
printf("burn repetition of sending process: %llu \n", burn_repetition) ;
printf("repetition of sending process: %llu \n", repetition) ;
if (size_array < world_size){
//printf("Please use size of array >= %d\n", world_size);
}
}
if (size_array < world_size){
// avoid non authorized memory access
//size_array = world_size + 1 ;
}
// allocate array for each process
double * array = malloc( size_array * sizeof(double)) ;
if (world_rank == 0) {
printf("The number of processes is %d\n\n" , world_size) ;
//MPI_Request requests[4 * world_size] ;
MPI_Request *requests ;
requests = malloc( world_size * sizeof(MPI_Request) ) ;
for (int i = 0 ; i < world_size ; i++)
{
requests[i] = MPI_REQUEST_NULL ;
}
//MPI_Request *requests = malloc( 4 * world_size * sizeof(MPI_Request)) ;
//MPI_Status *statuss = malloc( 4 * world_size * sizeof(MPI_Status)) ;
////////////////////////////
///////////////// sync part
////////////////////////////
// init array values
for (unsigned long long i = 0 ; i < size_array ; i++){
array[i] = 2.124844854 ;
}
// timer
unsigned long long start_send, end_send , start_recv, end_recv;
unsigned long long sync_time_send, sync_time_recv , async_time_send, async_time_recv, full_async_time_send, full_async_time_recv;
MPI_Barrier(MPI_COMM_WORLD);
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Send(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD);
}
}
start_send = rdtsc();
for (unsigned long long i = 0 ; i < repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Send(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD);
}
}
end_send = rdtsc();
sync_time_send = (end_send - start_send)/(repetition) ;
printf("%llu spend send array\n" , sync_time_send) ;
// time spend in Send execution
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Recv(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
}
}
start_recv = rdtsc() ;
for (unsigned long long i = 0 ; i < repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Recv(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
}
}
end_recv = rdtsc() ;
sync_time_recv = (end_recv - start_recv)/(repetition) ;
printf("%llu spend recv array\n" , sync_time_recv) ;
sleep(0.1);
///////////////////////////
/////////////// async part with direct wait
///////////////////////////
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Isend(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, &requests[j]);
MPI_Wait(&requests[j] , MPI_STATUS_IGNORE);
//requests[j] = MPI_REQUEST_NULL;
}
}
start_send = rdtsc();
for (unsigned long long i = 0 ; i < repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Isend(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, &requests[j]);
MPI_Wait(&requests[j] , MPI_STATUS_IGNORE);
//requests[j] = MPI_REQUEST_NULL;
}
}
end_send = rdtsc();
async_time_send = (end_send - start_send)/(repetition) ;
printf("%llu spend send array\n" , async_time_send) ;
// time spend in Send execution
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Irecv(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, &requests[j]);
MPI_Wait(&requests[j] , MPI_STATUS_IGNORE);
//requests[j] = MPI_REQUEST_NULL;
}
}
start_recv = rdtsc() ;
for (unsigned long long i = 0 ; i < repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Irecv(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, &requests[j]);
MPI_Wait(&requests[j] , MPI_STATUS_IGNORE);
//requests[j] = MPI_REQUEST_NULL;
}
}
end_recv = rdtsc() ;
async_time_recv = (end_recv - start_recv)/(repetition) ;
printf("%llu spend recv array\n" , async_time_recv) ;
for (int i = 0 ; i < 4 * world_size ; i++)
{
//requests[i] = MPI_REQUEST_NULL ;
}
sleep(0.1);
///////////////////////////
/////////////// async part
///////////////////////////
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Isend(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, &requests[j]);
}
for (int j = 1 ; j < world_size ; j++){
MPI_Wait(&requests[j] , MPI_STATUS_IGNORE);
}
for (int j = 1 ; j < world_size ; j++){
//MPI_Request_free(&requests[j]);
}
}
start_send = rdtsc();
for (unsigned long long i = 0 ; i < repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Isend(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, &requests[j]);
}
for (int j = 1 ; j < world_size ; j++){
MPI_Wait(&requests[j] , MPI_STATUS_IGNORE);
}
for (int j = 1 ; j < world_size ; j++){
//MPI_Request_free(&requests[j + world_size]);
}
}
end_send = rdtsc();
full_async_time_send = (end_send - start_send)/(repetition) ;
printf("%llu spend send array\n" , full_async_time_send) ;
// time spend in Send execution
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Irecv(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, &requests[j]);
}
for (int j = 1 ; j < world_size ; j++){
MPI_Wait(&requests[j] , MPI_STATUS_IGNORE);
}
for (int j = 1 ; j < world_size ; j++){
//MPI_Request_free(&requests[j + 2 * world_size]);
}
}
start_recv = rdtsc() ;
for (unsigned long long i = 0 ; i < repetition ; i++){
for (int j = 1 ; j < world_size ; j++){
MPI_Irecv(array, size_array, MPI_DOUBLE, j, j + i*world_size, MPI_COMM_WORLD, &requests[j]);
}
for (int j = 1 ; j < world_size ; j++){
MPI_Wait(&requests[j] , MPI_STATUS_IGNORE);
}
for (int j = 1 ; j < world_size ; j++){
//MPI_Request_free(&requests[j + 3 * world_size]);
}
}
end_recv = rdtsc() ;
full_async_time_recv = (end_recv - start_recv)/(repetition) ;
printf("%llu spend recv array\n" , full_async_time_recv) ;
// write at the end of a save file
FILE * SaveFile;
SaveFile = fopen("time_pap.txt", "a") ;
if(SaveFile==NULL) {
perror("Error opening file");
}
fprintf(SaveFile , "%llu %u %llu %llu %llu %llu %llu %llu %llu %llu\n", size_array , world_size , burn_repetition , repetition , sync_time_send, sync_time_recv, async_time_send, async_time_recv, full_async_time_send, full_async_time_recv ) ;
fclose(SaveFile) ;
} else if (world_rank < world_size ) {
////////////////////////
////////////// sync part
////////////////////////
MPI_Barrier(MPI_COMM_WORLD);
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
MPI_Recv(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
}
for (unsigned long long i = 0 ; i < repetition ; i++){
MPI_Recv(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, MPI_STATUS_IGNORE);
}
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
MPI_Send(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD);
}
for (unsigned long long i = 0 ; i < repetition ; i++){
MPI_Send(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD);
}
////////////////////////
//////////// async part with direct wait
////////////////////////
MPI_Request request0 , request1, request2, request3 ;
//MPI_Request statuss0 , statuss1, statuss2, statuss3 ;
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
MPI_Irecv(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, &request0);
MPI_Wait(&request0 , MPI_STATUS_IGNORE);
//request0 = MPI_REQUEST_NULL ;
}
for (unsigned long long i = 0 ; i < repetition ; i++){
MPI_Irecv(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, &request1);
MPI_Wait(&request1 , MPI_STATUS_IGNORE);
//request1 = MPI_REQUEST_NULL ;
}
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
MPI_Isend(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, &request2);
MPI_Wait(&request2 , MPI_STATUS_IGNORE);
//request2 = MPI_REQUEST_NULL;
}
for (unsigned long long i = 0 ; i < repetition ; i++){
MPI_Isend(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, &request3);
MPI_Wait(&request3 , MPI_STATUS_IGNORE);
//request3 = MPI_REQUEST_NULL ;
}
//request0 = request1 = request2 = request3 = MPI_REQUEST_NULL ;
////////////////////////
//////////// async part
////////////////////////
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
MPI_Irecv(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, &request0);
MPI_Wait(&request0 , MPI_STATUS_IGNORE);
//request0 = MPI_REQUEST_NULL ;
}
for (unsigned long long i = 0 ; i < repetition ; i++){
MPI_Irecv(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, &request1);
MPI_Wait(&request1 , MPI_STATUS_IGNORE);
//request1 = MPI_REQUEST_NULL ;
}
for (unsigned long long i = 0 ; i < burn_repetition ; i++){
MPI_Isend(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, &request2);
MPI_Wait(&request2 , MPI_STATUS_IGNORE);
//request2 = MPI_REQUEST_NULL ;
}
for (unsigned long long i = 0 ; i < repetition ; i++){
MPI_Isend(array, size_array, MPI_DOUBLE, 0, world_rank + i*world_size, MPI_COMM_WORLD, &request3);
MPI_Wait(&request3 , MPI_STATUS_IGNORE);
//request3 = MPI_REQUEST_NULL ;
}
}
MPI_Finalize();
return 0 ;
}