-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecouvrement_hybride.c
261 lines (204 loc) · 7.45 KB
/
recouvrement_hybride.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
///////////////////////////////////////////////////////////////////////////
// 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>
#include <omp.h>
inline
unsigned long long rdtsc(void)
{
unsigned long long tsc;
asm volatile(
// `LFENCE`: Serializes all load (read) operations that ocurred prior
// to the `LFENCE` instruction in the program instruction stream, but
// does not affect store operations.
// If software requires `RDTSCP` to be executed prior to execution of
// any subsequent instruction (including any memory accesses), it can
// execute `LFENCE` immediately after `RDTSCP`.
//
// Referenced from:
// Intel 64 and IA-32 Architectures software developer's manual
// Volume 3, section 8.2.5
"rdtscp \n\t"
"lfence \n\t"
"shl $0x20, %%rdx \n\t"
"or %%rdx, %%rax \n\t"
: "=a" (tsc)
:
: "rdx", "rcx");
return tsc;
}
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);
unsigned long long size_array = 400000000 ;
unsigned long long size_array_compute = 1 ;
unsigned long long M = 200000000;
//unsigned long long loop_iteration = loop_max_iteration/200 ;
float * array = malloc(size_array * sizeof(float)) ;
float * array_compute = malloc(size_array_compute * sizeof(float)) ;
// initialization of array
if (world_rank == 0){
for (unsigned long long i = 0 ; i < size_array ; i++){
array[i] = (float)i ;
}
}
else{
for (unsigned long long i = 0 ; i < size_array ; i++){
array[i] = 0.0 ;
}
}
if (world_rank == 0){
for (unsigned long long i = 0 ; i < size_array_compute ; i++){
array_compute[i] = 0.0;
}
}
else{
for (unsigned long long i = 0 ; i < size_array_compute ; i++){
array_compute[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 - 1 ) * sizeof(MPI_Request) ) ;
for (int i = 0 ; i < world_size - 1 ; i++)
{
requests[i] = MPI_REQUEST_NULL ;
}
// envoi 0 to n
MPI_Barrier(MPI_COMM_WORLD);
for (int i = 1 ; i < world_size ; i++){
MPI_Isend(array, size_array , MPI_FLOAT , i , i , MPI_COMM_WORLD, &requests[i-1]) ;
}
MPI_Waitall(world_size - 1 , 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");
for (int i = 0 ; i < world_size - 1 ; i++)
{
requests[i] = MPI_REQUEST_NULL ;
}
// envoi 0 to n for ref
MPI_Barrier(MPI_COMM_WORLD);
start_mpi = rdtsc() ;
#pragma omp parallel
{
if (omp_get_thread_num()==1){
for (int i = 1 ; i < world_size; i++){
MPI_Isend(array, size_array , MPI_FLOAT , i , i , MPI_COMM_WORLD, &requests[i-1]) ;
}
}
}
MPI_Waitall(world_size - 1 , requests , MPI_STATUS_IGNORE) ;
stop_comm = rdtsc() ;
time_mpi = stop_comm - start_mpi ;
// calcul for ref
MPI_Barrier(MPI_COMM_WORLD);
unsigned long long i = 0 ;
start_compute = rdtsc() ;
#pragma omp parallel
{
if (omp_get_thread_num()==1){
for (unsigned long long j = 0 ; j < M ; j++){
array_compute[0] += 1.0;
}
}
}
stop_compute = rdtsc() ;
time_compute = 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\n" , time_compute) ;
}
else if (world_rank < world_size ){
MPI_Request request = MPI_REQUEST_NULL ;
unsigned long long i = 0 ;
unsigned long long i2 = 0 ;
double compute = 0.0 ; ;
// envoi 0 to n
MPI_Barrier(MPI_COMM_WORLD);
start_total = rdtsc();
#pragma omp parallel
{
int t = omp_get_thread_num();
if (t == 0 )
{
start_mpi = rdtsc() ;
MPI_Irecv(array , size_array , MPI_FLOAT , 0 , world_rank , MPI_COMM_WORLD , &request ) ;
MPI_Wait(&request , MPI_STATUS_IGNORE) ;
end_wait = rdtsc() ;
}
else if (t == 2 ){
//int deb = (omp_get_thread_num()-1) * size_array_compute / (omp_get_num_threads()-1) ;
//int fin = omp_get_thread_num() * size_array_compute / (omp_get_num_threads()-1) ;
//unsigned long long i_tmp = i ;
start_compute = rdtsc() ;
for (unsigned long long j = 0 ; j < M ; j++){
array_compute[0] += 1.0;
}
stop_compute = rdtsc() ;
}
}
stop_total = rdtsc();
/////////////////////////////////////////////////////////////////
// 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
/////////////////////////////////////////////////////////////////
time_compute = stop_compute - start_total ;
time_mpi = end_wait - start_total ;
time_total = stop_total - start_total;
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) ;
// envoi 0 to n for ref
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);
stop_comm = rdtsc() ;
time_mpi = stop_comm - start_mpi ;
if (world_rank == 1){
printf("%llu reference time_MPI\n" , time_mpi) ;
}
// calcul for ref
MPI_Barrier(MPI_COMM_WORLD);
}
MPI_Finalize();
}