-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecouvrement.c
229 lines (180 loc) · 7.03 KB
/
recouvrement.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
///////////////////////////////////////////////////////////////////////////
// this is a code to test the MPI_Test call.
// Syntax : int MPI_Test(MPI_Request *request, int *flag, MPI_Status *status)
// flag is True if the operation identified by the request is complete
// protocol :
// - async array Isend from process 0 to 1
// - async Irecv in process 1
// - compute loop in process 1
// - expensive arithmetic operations
// - MPI_Test call to test during computation AND during recv
// - save to what tick when flag is set to True
// - barrier MPI_Wait to enforce terminaison in this point
// objective : - Is it possible to determine covering in async MPI with MPI_Test ?
// - What is the cost of an MPI_Test call ?
//////////////////////////////////////////////////////////////////////////////
#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){
int world_rank;
int world_size;
MPI_Init(&argc,&argv);
MPI_Comm_rank(MPI_COMM_WORLD, &world_rank);
MPI_Comm_size(MPI_COMM_WORLD, &world_size);
int size_array = 10000000 ;
unsigned long long loop_max_iteration = 50000000 ;
unsigned long long loop_iteration = loop_max_iteration/200 ;
float * array = malloc(size_array * sizeof(float)) ;
// initialization of array
if (world_rank == 0){
for (int i = 0 ; i < size_array ; i++){
array[i] = (float)i ;
}
}
else{
for (int i = 0 ; i < size_array ; i++){
array[i] = 0.0 ;
}
}
unsigned long long stop_comm, start_compute, stop_compute, start_total, stop_total;
unsigned long long start_mpi, end_test, end_wait, end_last_loop;
unsigned long long time_compute, time_mpi, time_total ;
int flag, old_flag, dflag = 0 ;
double recouvrement = 0.0 ;
MPI_Barrier(MPI_COMM_WORLD);
// in a async way
if (world_rank == 0){
printf("\nSending array values to processes in a async way ..\n\n") ;
// send value to every other processes
MPI_Request *requests ;
requests = malloc( (world_size - 3 ) * sizeof(MPI_Request) ) ;
for (int i = 0 ; i < world_size - 3 ; i++)
{
requests[i] = MPI_REQUEST_NULL ;
}
MPI_Barrier(MPI_COMM_WORLD);
//start = rdtsc() ;
for (int i = 1 ; i < world_size - 2 ; i++){
MPI_Isend(array, size_array , MPI_FLOAT , i , i , MPI_COMM_WORLD, &requests[i-1]) ;
}
MPI_Waitall(world_size - 3 , requests , MPI_STATUS_IGNORE) ;
//end_wait = rdtsc() ;
//total_wait = end_wait - start ;
//printf("%llu time_wait from process 0\n" , total_wait) ;
//printf("If the two times for a specific process are similars, then the MPI_Test function works fine\n");
MPI_Barrier(MPI_COMM_WORLD);
MPI_Request request_reference = MPI_REQUEST_NULL ;
MPI_Isend(array, size_array , MPI_FLOAT , world_size - 1 , world_size - 1 , MPI_COMM_WORLD, &request_reference) ;
MPI_Wait(&request_reference, MPI_STATUS_IGNORE) ;
}
else if (world_rank < world_size - 2){
MPI_Request request = MPI_REQUEST_NULL ;
unsigned long long i = 0 ;
unsigned long long i2 = 0 ;
double compute = 0.0 ;
MPI_Barrier(MPI_COMM_WORLD);
start_mpi = rdtsc() ;
MPI_Irecv(array , size_array , MPI_FLOAT , 0 , world_rank , MPI_COMM_WORLD , &request ) ;
/////////////////////////////////////////////////////////////////
// compute & tests many times.
// exit :
// - if loop made more than loop_max_iteration additions.
// thus, end_test is the computation time
// or
// - if the MPI transaction is finished.
// thus, end_test is the MPI transaction time, and
// computation have to continue in a normal time
/////////////////////////////////////////////////////////////////
start_compute = rdtsc() ;
while ( (flag == 0) && (i < loop_max_iteration) ){
for (unsigned long long j = 0 ; j < loop_iteration ; j++){
compute += 0.054398 ; // float operation
i += 1 ; // int operation
}
MPI_Test(&request , &flag, MPI_STATUS_IGNORE) ;
//printf("%d\n", flag) ;
}
end_test = rdtsc() ;
MPI_Wait(&request , MPI_STATUS_IGNORE) ;
end_wait = rdtsc() ;
i2 = i ;
while (i < loop_max_iteration){
for (int j = 0 ; j < loop_iteration ; j++){
compute += 0.054398 ; // float operation
i += 1 ; // int operation
}
}
end_last_loop = rdtsc() ;
if (i2 >= loop_max_iteration){
// first loop ended due to loop_max_iteration
time_compute = end_test - start_compute ;
time_mpi = end_wait - start_mpi ;
printf("computation faster for process %d\n", world_rank);
}
else{
// first loop ended du to finished MPI transaction
time_compute = end_last_loop - start_compute ;
time_mpi = end_wait - start_mpi ;
printf("MPI transaction faster for process %d\n", world_rank);
}
time_total = end_last_loop - start_mpi;
recouvrement = ((double)time_mpi + (double)time_compute - (double)time_total) / ((double)time_mpi) ;
printf(" time_compute %llu from process %d\n" , time_compute, world_rank) ;
printf(" time_mpi %llu from process %d\n" , time_mpi, world_rank) ;
printf(" time_total %llu from process %d\n" , time_total, world_rank) ;
printf("overlap %lf from process %d\n" , recouvrement, world_rank) ;
printf(" computed values from process %d are %llu and %f\n" , world_rank , i, compute) ;
MPI_Barrier(MPI_COMM_WORLD);
}
else if (world_rank == world_size - 2){
// time to compute reference
unsigned long long i = 0 ;
double compute = 0.0 ;
MPI_Barrier(MPI_COMM_WORLD);
/////////////////////////////////////////////////////////////////
// compute & tests many times.
// exit :
// - if loop made more than loop_max_iteration additions.
// thus, end_test is the computation time
// or
// - if the MPI transaction is finished.
// thus, end_test is the MPI transaction time, and
// computation have to continue in a normal time
/////////////////////////////////////////////////////////////////
start_compute = rdtsc() ;
while (i < loop_max_iteration){
for (unsigned long long j = 0 ; j < loop_iteration ; j++){
compute += 0.054398 ; // float operation
i += 1 ; // int operation
}
//printf("%d\n", flag) ;
}
stop_compute = rdtsc() ;
time_total = stop_compute - start_compute ;
printf(" reference computed values from process %d are %llu and %f\n" , world_rank , i, compute) ;
printf(" %llu reference time_compute from process %d\n" , time_total, world_rank) ;
MPI_Barrier(MPI_COMM_WORLD);
}
else if (world_rank == world_size - 1 ){
MPI_Barrier(MPI_COMM_WORLD);
MPI_Barrier(MPI_COMM_WORLD);
start_mpi = rdtsc() ;
MPI_Request request_reference = MPI_REQUEST_NULL ;
MPI_Irecv(array , size_array , MPI_FLOAT , 0 , world_rank , MPI_COMM_WORLD , &request_reference ) ;
MPI_Wait(&request_reference, MPI_STATUS_IGNORE);
end_wait = rdtsc() ;
time_mpi = end_wait - start_mpi ;
printf(" %llu reference time_mpi from process %d\n" , time_mpi, world_rank) ;
}
MPI_Finalize();
}