-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathutil_benchsrLarge.cpp
292 lines (280 loc) · 10.6 KB
/
util_benchsrLarge.cpp
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
#include <iostream>
#include <cstdlib>
#include <cassert>
#include <chrono> //steady_clock, duration
#include <thread> //this_thread
#include "redev.h"
#include "util_support.h"
#define MILLION 1024*1024
// send/recv benchmark
// - Mapped
// - The receiver has reductionFactor times fewer ranks than the sender
// and each sender computes the destination rank as
// senderRank/reductionFactor (using integer math). This emulates a
// simple transfer pattern that would be hard coded if rendezvous
// was not used.
// - RendezvousMapped
// - This uses the same pattern as Mapped and is for measuring the overhead
// of the Rendezvous APIs.
// - RendezvousFanOut
// - Each non-rendezvous rank sends 'mbpr' (millions of bytes per rank) data that
// is uniformly divided across the rendezvous ranks. This is nearly a
// worse case pattern resulting from minimal or poor application and
// rendezvous partition alignment.
void constructCsrOffsetsFanOut(int tot, int rdvRanks, std::vector<int>& offsets) {
//produces an uniform distribution of values
const auto delta = tot/rdvRanks;
assert(delta*rdvRanks == tot);
offsets.resize(rdvRanks+1);
offsets[0] = 0;
for( auto i=1; i<=rdvRanks; i++)
offsets[i] = offsets[i-1]+delta;
}
void constructCsrOffsetsMapped(int destRank, int tot, std::vector<int>& offsets) {
//send everything to one rank
offsets.resize(2);
offsets[0] = 0;
offsets[1] = tot;
}
void timeMinMaxAvg(double time, double& min, double& max, double& avg) {
const auto comm = MPI_COMM_WORLD;
int nproc;
MPI_Comm_size(comm, &nproc);
double tot = 0;
MPI_Allreduce(&time, &min, 1, MPI_DOUBLE, MPI_MIN, comm);
MPI_Allreduce(&time, &max, 1, MPI_DOUBLE, MPI_MAX, comm);
MPI_Allreduce(&time, &tot, 1, MPI_DOUBLE, MPI_SUM, comm);
avg = tot / nproc;
}
void printTime(std::string mode, double min, double max, double avg) {
std::cout << mode << " elapsed time min, max, avg (s): "
<< min << " " << max << " " << avg << "\n";
}
void sendRecvRdvMapped(MPI_Comm mpiComm, const bool isRdv, const int mbpr,
const int rdvRanks, const int reductionFactor) {
int rank, nproc;
MPI_Comm_rank(mpiComm, &rank);
MPI_Comm_size(mpiComm, &nproc);
if(!isRdv) {
assert(nproc == rdvRanks*reductionFactor);
} else {
assert(nproc == rdvRanks);
}
//dummy partition vector data
const auto dim = 2;
//hard coding the number of rdv ranks to 32 for now....
if(isRdv) assert(rdvRanks == nproc);
auto ranks = redev::LOs(rdvRanks);
//the cuts won't be used since getRank(...) won't be called
auto cuts = redev::Reals(rdvRanks);
auto ptn = redev::RCBPtn(dim,ranks,cuts);
redev::Redev rdv(mpiComm,redev::Partition{std::move(ptn)},static_cast<redev::ProcessType>(isRdv));
std::string name = "rendezvous";
std::stringstream ss;
ss << mbpr << " B rdvMapped ";
adios2::Params params{ {"Streaming", "On"}, {"OpenTimeoutSecs", "2"}};
auto channel = rdv.CreateAdiosChannel(name, params,
redev::TransportType::BP4);
auto commPair = channel.CreateComm<redev::LO>(name, rdv.GetMPIComm());
// the non-rendezvous app sends to the rendezvous app
for(int i=0; i<3; i++) {
if(!isRdv) {
//dest and offets define a CSR for which ranks the array of messages get sent to
if(i==0) {
const int destRank = rank/reductionFactor;
redev::LOs dest = {destRank};
redev::LOs offsets;
constructCsrOffsetsMapped(destRank, mbpr, offsets);
commPair.SetOutMessageLayout(dest, offsets);
}
redev::LOs msgs(mbpr,rank);
auto start = std::chrono::steady_clock::now();
commPair.Send(msgs.data());
auto end = std::chrono::steady_clock::now();
std::chrono::duration<double> elapsed_seconds = end-start;
double min, max, avg;
timeMinMaxAvg(elapsed_seconds.count(), min, max, avg);
if( i == 0 ) ss << "write";
std::string str = ss.str();
if(!rank) printTime(str, min, max, avg);
} else {
auto start = std::chrono::steady_clock::now();
auto msgs = commPair.Recv();
auto end = std::chrono::steady_clock::now();
std::chrono::duration<double> elapsed_seconds = end-start;
double min, max, avg;
timeMinMaxAvg(elapsed_seconds.count(), min, max, avg);
if( i == 0 ) ss << "read";
std::string str = ss.str();
if(!rank) printTime(str, min, max, avg);
}
}
}
void sendRecvRdvFanOut(MPI_Comm mpiComm, const bool isRdv, const int mbpr,
const int rdvRanks, const int reductionFactor) {
int rank, nproc;
MPI_Comm_rank(mpiComm, &rank);
MPI_Comm_size(mpiComm, &nproc);
if(!isRdv) {
assert(nproc == rdvRanks*reductionFactor);
} else {
assert(nproc == rdvRanks);
}
//dummy partition vector data
const auto dim = 2;
//hard coding the number of rdv ranks to 32 for now....
if(isRdv) assert(rdvRanks == nproc);
auto ranks = redev::LOs(rdvRanks);
//the cuts won't be used since getRank(...) won't be called
auto cuts = redev::Reals(rdvRanks);
auto ptn = redev::RCBPtn(dim,ranks,cuts);
redev::Redev rdv(mpiComm,ptn,static_cast<redev::ProcessType>(isRdv));
std::string name = "rendezvous";
std::stringstream ss;
ss << mbpr << " B rdvFanOut ";
adios2::Params params{ {"Streaming", "On"}, {"OpenTimeoutSecs", "2"}};
auto channel = rdv.CreateAdiosChannel(name, params,
redev::TransportType::BP4);
auto commPair = channel.CreateComm<redev::LO>(name, rdv.GetMPIComm());
// the non-rendezvous app sends to the rendezvous app
for(int i=0; i<3; i++) {
if(!isRdv) {
//dest and offets define a CSR for which ranks the array of messages get sent to
if(i==0) {
redev::LOs dest(rdvRanks);
std::iota(dest.begin(),dest.end(),0);
redev::LOs offsets(mbpr);
constructCsrOffsetsFanOut(mbpr,rdvRanks,offsets);
commPair.SetOutMessageLayout(dest, offsets);
}
redev::LOs msgs(mbpr,rank);
auto start = std::chrono::steady_clock::now();
commPair.Send(msgs.data());
auto end = std::chrono::steady_clock::now();
std::chrono::duration<double> elapsed_seconds = end-start;
double min, max, avg;
timeMinMaxAvg(elapsed_seconds.count(), min, max, avg);
if( i == 0 ) ss << "write";
std::string str = ss.str();
if(!rank) printTime(str, min, max, avg);
} else {
auto start = std::chrono::steady_clock::now();
commPair.Recv();
auto end = std::chrono::steady_clock::now();
std::chrono::duration<double> elapsed_seconds = end-start;
double min, max, avg;
timeMinMaxAvg(elapsed_seconds.count(), min, max, avg);
if( i == 0 ) ss << "read";
std::string str = ss.str();
if(!rank) printTime(str, min, max, avg);
}
}
}
void sendRecvMapped(MPI_Comm mpiComm, const bool isRdv, const int mbpr,
const int rdvRanks, const int reductionFactor,
const bool isSST, adios2::Params params) {
int rank, nproc;
MPI_Comm_rank(mpiComm, &rank);
MPI_Comm_size(mpiComm, &nproc);
if(!isRdv) {
assert(nproc == rdvRanks*reductionFactor);
} else {
assert(nproc == rdvRanks);
}
//using Redev to create engine objects...
const auto dim = 2;
auto ranks = redev::LOs(rdvRanks);
auto cuts = redev::Reals(rdvRanks);
auto ptn = redev::RCBPtn(dim,ranks,cuts);
redev::Redev rdv(mpiComm,std::move(ptn),static_cast<redev::ProcessType>(isRdv));
//get adios objs
std::string name = "mapped";
adios2::ADIOS adios(mpiComm);
auto io = adios.DeclareIO(name);
io.SetEngine( isSST ? "SST" : "BP4");
io.SetParameters(params);
adios2::Engine eng;
if(!isSST) {
support::openEnginesBP4(isRdv,name+".bp",io,eng);
} else {
support::openEnginesSST(isRdv,name,io,eng);
}
std::stringstream ss;
ss << mbpr << " B " << name;
if(!isRdv) { //sender
adios2::Dims shape{static_cast<size_t>(mbpr)*nproc};
adios2::Dims start{static_cast<size_t>(mbpr)*rank};
adios2::Dims count{static_cast<size_t>(mbpr)};
auto var = io.DefineVariable<redev::LO>(name, shape, start, count);
assert(var);
redev::LOs msgs(mbpr,rank);
auto tStart = std::chrono::steady_clock::now();
eng.BeginStep();
eng.Put<redev::LO>(var, msgs.data());
eng.PerformPuts();
eng.EndStep();
auto tEnd = std::chrono::steady_clock::now();
std::chrono::duration<double> elapsed_seconds = tEnd-tStart;
double min, max, avg;
timeMinMaxAvg(elapsed_seconds.count(), min, max, avg);
ss << " write";
std::string str = ss.str();
if(!rank) printTime(str, min, max, avg);
} else {
auto start = std::chrono::steady_clock::now();
eng.BeginStep();
auto msgs = io.InquireVariable<redev::LO>(name);
assert(msgs);
const auto sizePerRank = static_cast<size_t>(mbpr)*reductionFactor;
const auto startRead = sizePerRank*rank;
msgs.SetSelection({{static_cast<size_t>(startRead)},
{static_cast<size_t>(mbpr*reductionFactor)}
});
redev::LOs inMsgs(sizePerRank);
eng.Get(msgs, inMsgs.data());
eng.PerformGets();
eng.EndStep();
auto end = std::chrono::steady_clock::now();
std::chrono::duration<double> elapsed_seconds = end-start;
double min, max, avg;
timeMinMaxAvg(elapsed_seconds.count(), min, max, avg);
ss << " read";
std::string str = ss.str();
if(!rank) printTime(str, min, max, avg);
}
}
int main(int argc, char** argv) {
MPI_Init(&argc, &argv);
int rank, nprocs;
MPI_Comm_rank(MPI_COMM_WORLD, &rank);
MPI_Comm_size(MPI_COMM_WORLD, &nprocs);
if(argc != 5) {
if(!rank) {
std::cerr << "Usage: " << argv[0] << " <1=isRendezvousApp,0=isParticipant> <MBPR> <rdvRanks> <reductionFactor>\n";
std::cerr << "MBPR: millions of bytes per rank\n";
std::cerr << "rdvRanks: number of ranks ran by the rendezvous app\n";
std::cerr << "reductionFactor: ratio of rdvRanks to participant ranks, where participant ranks >> rdvRanks\n";
}
exit(EXIT_FAILURE);
}
auto isRdv = atoi(argv[1]);
assert(isRdv==0 || isRdv ==1);
auto mbpr = atoi(argv[2])*MILLION;
assert(mbpr>0);
auto rdvRanks = atoi(argv[3]);
assert(rdvRanks>0);
auto reductionFactor = atoi(argv[4]);
assert(reductionFactor>1);
if(!isRdv) {
assert(rdvRanks*reductionFactor == nprocs);
}
sendRecvRdvMapped(MPI_COMM_WORLD, isRdv, mbpr, rdvRanks, reductionFactor);
std::this_thread::sleep_for(std::chrono::seconds(2));
sendRecvRdvFanOut(MPI_COMM_WORLD, isRdv, mbpr, rdvRanks, reductionFactor);
std::this_thread::sleep_for(std::chrono::seconds(2));
bool isSST = false;
adios2::Params params{ {"Streaming", "On"}, {"OpenTimeoutSecs", "2"}};
sendRecvMapped(MPI_COMM_WORLD, isRdv, mbpr, rdvRanks, reductionFactor, isSST, params);
MPI_Finalize();
return 0;
}