-
Notifications
You must be signed in to change notification settings - Fork 0
/
tester_synchronous.c
194 lines (127 loc) · 4.79 KB
/
tester_synchronous.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
/*!
\file tester.c
\brief Validate kNN ring implementation (MPI).
\author Dimitris Floros
\date 2019-11-25
*/
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <assert.h>
#include "mpi.h"
#include "tester_helper.h"
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% RANDOM ALLOCATION HELPER
double * ralloc( int sz ){
double *X = (double *) malloc( sz *sizeof(double) );
for (int i=0;i<sz;i++)
X[i] = ( (double) (rand()) ) / (double) RAND_MAX;
return X;
}
// %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% MPI TESTER MAIN FUNCTION
int testMPI( int const n,
int const d,
int const k,
int const ap ){
int p, id; // MPI # processess and PID
MPI_Status Stat; // MPI status
int dst, rcv, tag; // MPI destination, receive, tag
int isValid = 0; // return value
MPI_Comm_rank(MPI_COMM_WORLD, &id); // Task ID
MPI_Comm_size(MPI_COMM_WORLD, &p); // # tasks
// allocate corpus for each process
double * const corpus = (double * ) malloc( n*d * sizeof(double) );
if (id == 0) { //============================== MASTER
// ---------- Initialize data to begin with
double const * const corpusAll = ralloc( n*d*p );
// ---------- Break to subprocesses
for (int ip = 0; ip < p; ip++){
for (int i=0; i<n; i++)
for (int j=0; j<d; j++)
if (ap == COLMAJOR)
corpus_cm(i,j) = corpusAll_cm(i+ip*n,j);
else
corpus_rm(i,j) = corpusAll_rm(i+ip*n,j);
if (ip == p-1) // last chunk is mine
break;
// which process to send? what tag?
dst = ip+1;
tag = 1;
// send to correct process
MPI_Send(corpus, n*d, MPI_DOUBLE, dst, tag, MPI_COMM_WORLD);
} // for (ip)
// ---------- Run distributed kNN
knnresult const knnres = distrAllkNN( corpus, n, d, k);
// ---------- Prepare global kNN result object
knnresult knnresall;
knnresall.nidx = (int *) malloc( n*p*k*sizeof(int) );
knnresall.ndist = (double *)malloc( n*p*k*sizeof(double) );
knnresall.m = n*p;
knnresall.k = k;
// ---------- Put my results to correct spot
for (int j = 0; j < k; j++)
for (int i = 0; i < n; i++){
if (ap == COLMAJOR){
knnresallnidx_cm(i+(p-1)*n,j) = knnresnidx_cm(i,j);
knnresallndist_cm(i+(p-1)*n,j) = knnresndist_cm(i,j);
}else{
knnresallnidx_rm(i+(p-1)*n,j) = knnresnidx_rm(i,j);
knnresallndist_rm(i+(p-1)*n,j) = knnresndist_rm(i,j);
}
}
// ---------- Gather results back
for (int ip = 0; ip < p-1; ip++){
rcv = ip+1;
tag = 1;
MPI_Recv( knnres.nidx, n*k, MPI_INT, rcv, tag, MPI_COMM_WORLD, &Stat);
MPI_Recv( knnres.ndist, n*k, MPI_DOUBLE, rcv, tag, MPI_COMM_WORLD, &Stat);
for (int j = 0; j < k; j++)
for (int i = 0; i < n; i++){
if (ap == COLMAJOR){
knnresallnidx_cm(i+ip*n,j) = knnresnidx_cm(i,j);
knnresallndist_cm(i+ip*n,j) = knnresndist_cm(i,j);
}else{
knnresallnidx_rm(i+ip*n,j) = knnresnidx_rm(i,j);
knnresallndist_rm(i+ip*n,j) = knnresndist_rm(i,j);
}
}
}
// ---------- Validate results
isValid = validateResult( knnresall, corpusAll, corpusAll,
n*p, n*p, d, k, ap );
} else { //============================== SLAVE
// ---------- Get data from MASTER
rcv = 0;
tag = 1;
MPI_Recv(corpus, n*d, MPI_DOUBLE, rcv, tag, MPI_COMM_WORLD, &Stat);
// ---------- Run distributed kNN
knnresult const knnres = distrAllkNN( corpus, n, d, k);
// ---------- Send data back to MASTER
dst = 0;
tag = 1;
MPI_Send(knnres.nidx, n*k, MPI_INT, dst, tag, MPI_COMM_WORLD);
MPI_Send(knnres.ndist, n*k, MPI_DOUBLE, dst, tag, MPI_COMM_WORLD);
}
// ~~~~~~~~~~~~~~~~~~~~ Deallocate memory
free( corpus );
// ~~~~~~~~~~~~~~~~~~~~ Return wheter validations passed or not
return isValid;
}
int main(int argc, char *argv[])
{
MPI_Init(&argc, &argv); // initialize MPI
int id; // PID
int n=1423; // # corpus elements per process
int d=100; // # dimensions
int k=100; // # neighbors
MPI_Comm_rank(MPI_COMM_WORLD, &id); // Task ID
// ============================== RUN EXPERIMENTS
int isValidC = testMPI( n, d, k, COLMAJOR );
int isValidR = testMPI( n, d, k, ROWMAJOR );
// ============================== ONLY MASTER OUTPUTS
if (id == 0) { // ..... MASTER gets result
printf("Tester validation: %s NEIGHBORS\n",
STR_CORRECT_WRONG[isValidC||isValidR]);
}
MPI_Finalize(); // clean-up
return 0;
}