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 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
|
/* $Source: bitbucket.org:berkeleylab/gasnet.git/tests/testval.c $
* Description: GASNet value get/put performance test
* measures the ping-pong average round-trip time and
* average flood throughput of GASNet gets and puts
* over varying payload size and synchronization mechanisms
* Copyright 2002, Jaein Jeong and Dan Bonachea <bonachea@cs.berkeley.edu>
* Terms of use are as specified in license.txt
*/
#include <gasnetex.h>
#if PLATFORM_ARCH_64
int maxsz = 8;
#else
int maxsz = 4;
#endif
int iters = 0;
#ifndef TEST_SEGSZ
#define TEST_SEGSZ_EXPR (maxsz*iters)
#endif
#include "test.h"
static gex_Client_t myclient;
static gex_EP_t myep;
static gex_TM_t myteam;
static gex_Segment_t mysegment;
#define GASNET_HEADNODE 0
#define PRINT_LATENCY 0
#define PRINT_THROUGHPUT 1
typedef struct {
int datasize;
int iters;
uint64_t time;
} stat_struct_t;
gex_AM_Entry_t handler_table[2];
int myproc;
int numprocs;
int peerproc = -1;
int iamsender = 0;
int unitsMB = 0;
int doputs = 1;
int dogets = 1;
uint8_t *tgtmem;
#define init_stat \
GASNETT_TRACE_SETSOURCELINE(__FILE__,__LINE__), _init_stat
#define update_stat \
GASNETT_TRACE_SETSOURCELINE(__FILE__,__LINE__), _update_stat
#define print_stat \
GASNETT_TRACE_SETSOURCELINE(__FILE__,__LINE__), _print_stat
void _init_stat(stat_struct_t *st, int sz)
{
st->iters = 0;
st->datasize = sz;
st->time = 0;
}
void _update_stat(stat_struct_t *st, uint64_t temptime, int iters)
{
st->iters += iters;
st->time += temptime;
}
void _print_stat(int myproc, stat_struct_t *st, const char *name, int operation)
{
switch (operation) {
case PRINT_LATENCY:
printf("%c: %2i - %10i byte : %7i iters,"
" latency %10i us total, %9.3f us ave. (%s)\n",
TEST_SECTION_NAME(),
myproc, st->datasize, st->iters, (int) st->time,
((double)st->time) / st->iters,
name);
fflush(stdout);
break;
case PRINT_THROUGHPUT:
printf((unitsMB?"%c: %2i - %10i byte : %7i iters, throughput %11.6f MB/sec (%s)\n":
"%c: %2i - %10i byte : %7i iters, throughput %11.3f KB/sec (%s)\n"),
TEST_SECTION_NAME(),
myproc, st->datasize, st->iters,
((int)st->time == 0 ? 0.0 :
(1000000.0 * st->datasize * st->iters /
(unitsMB?(1024.0*1024.0):1024.0)) / ((int)st->time)),
name);
fflush(stdout);
break;
default:
break;
}
}
void roundtrip_test(int nbytes)
{GASNET_BEGIN_FUNCTION();
int i;
int64_t begin, end;
stat_struct_t st;
gex_RMA_Value_t reg = 1;
/* initialize statistics */
init_stat(&st, nbytes);
BARRIER();
if (iamsender && doputs) {
/* measure the round-trip time of put */
begin = TIME();
for (i = 0; i < iters; i++) {
unsigned int offset = i * nbytes;
gex_RMA_PutBlockingVal(myteam, peerproc, tgtmem+offset,
(gex_RMA_Value_t)i, nbytes, 0);
}
end = TIME();
update_stat(&st, (end - begin), iters);
}
BARRIER();
if (iamsender && doputs) {
print_stat(myproc, &st, "PutBlockingVal latency", PRINT_LATENCY);
}
/* initialize statistics */
init_stat(&st, nbytes);
if (iamsender && dogets) {
/* measure the round-trip time of get */
begin = TIME();
for (i = 0; i < iters; i++) {
unsigned int offset = i * nbytes;
reg ^= gex_RMA_GetBlockingVal(myteam, peerproc, tgtmem+offset, nbytes, 0);
}
end = TIME();
update_stat(&st, (end - begin), iters);
}
BARRIER();
if (iamsender && dogets) {
print_stat(myproc, &st, "GetBlockingVal latency", PRINT_LATENCY);
}
}
void oneway_test(int nbytes)
{GASNET_BEGIN_FUNCTION();
int i;
int64_t begin, end;
stat_struct_t st;
gex_RMA_Value_t reg = 1;
/* initialize statistics */
init_stat(&st, nbytes);
BARRIER();
if (iamsender && doputs) {
/* measure the throughput of put */
begin = TIME();
for (i = 0; i < iters; i++) {
unsigned int offset = i * nbytes;
gex_RMA_PutBlockingVal(myteam, peerproc, tgtmem+offset,
(gex_RMA_Value_t)i, nbytes, 0);
}
end = TIME();
update_stat(&st, (end - begin), iters);
}
BARRIER();
if (iamsender && doputs) {
print_stat(myproc, &st, "PutBlockingVal throughput", PRINT_THROUGHPUT);
}
/* initialize statistics */
init_stat(&st, nbytes);
if (iamsender && dogets) {
/* measure the throughput of get */
begin = TIME();
for (i = 0; i < iters; i++) {
unsigned int offset = i * nbytes;
reg ^= gex_RMA_GetBlockingVal(myteam, peerproc, tgtmem+offset, nbytes, 0);
}
end = TIME();
update_stat(&st, (end - begin), iters);
}
BARRIER();
if (iamsender && dogets) {
print_stat(myproc, &st, "GetBlockingVal throughput", PRINT_THROUGHPUT);
}
}
void roundtrip_nb_test(int nbytes)
{GASNET_BEGIN_FUNCTION();
int i;
int64_t begin, end;
stat_struct_t st;
gex_Event_t hdlput;
/* initialize statistics */
init_stat(&st, nbytes);
BARRIER();
if (iamsender && doputs) {
/* measure the round-trip time of nonblocking put */
begin = TIME();
for (i = 0; i < iters; i++) {
unsigned int offset = i * nbytes;
hdlput = gex_RMA_PutNBVal(myteam, peerproc, tgtmem+offset,
(gex_RMA_Value_t)i, nbytes, 0);
gex_Event_Wait(hdlput);
}
end = TIME();
update_stat(&st, (end - begin), iters);
}
BARRIER();
if (iamsender && doputs) {
print_stat(myproc, &st, "PutNBVal latency", PRINT_LATENCY);
}
}
void oneway_nb_test(int nbytes)
{GASNET_BEGIN_FUNCTION();
int i;
int64_t begin, end;
stat_struct_t st;
gex_Event_t *pevents;
gex_RMA_Value_t reg = 1;
/* initialize statistics */
init_stat(&st, nbytes);
pevents = (gex_Event_t*) test_malloc(sizeof(gex_Event_t) * iters);
BARRIER();
if (iamsender && doputs) {
/* measure the throughput of sending a message */
begin = TIME();
for (i = 0; i < iters; i++) {
unsigned int offset = i * nbytes;
pevents[i] = gex_RMA_PutNBVal(myteam, peerproc, tgtmem+offset,
(gex_RMA_Value_t)i, nbytes, 0);
}
gex_Event_WaitAll(pevents, iters, 0);
end = TIME();
update_stat(&st, (end - begin), iters);
}
BARRIER();
if (iamsender && doputs) {
print_stat(myproc, &st, "PutNBVal throughput", PRINT_THROUGHPUT);
}
test_free(pevents);
}
void roundtrip_nbi_test(int nbytes)
{GASNET_BEGIN_FUNCTION();
int i;
int64_t begin, end;
stat_struct_t st;
/* initialize statistics */
init_stat(&st, nbytes);
BARRIER();
if (iamsender && doputs) {
/* measure the round-trip time of nonblocking implicit put */
begin = TIME();
for (i = 0; i < iters; i++) {
unsigned int offset = i * nbytes;
gex_RMA_PutNBIVal(myteam, peerproc, tgtmem+offset,
(gex_RMA_Value_t)i, nbytes, 0);
gex_NBI_Wait(GEX_EC_PUT,0);
}
end = TIME();
update_stat(&st, (end - begin), iters);
}
BARRIER();
if (iamsender && doputs) {
print_stat(myproc, &st, "PutNBIVal latency", PRINT_LATENCY);
}
}
void oneway_nbi_test(int nbytes)
{GASNET_BEGIN_FUNCTION();
int i;
int64_t begin, end;
stat_struct_t st;
/* initialize statistics */
init_stat(&st, nbytes);
BARRIER();
if (iamsender && doputs) {
/* measure the throughput of nonblocking implicit put */
begin = TIME();
for (i = 0; i < iters; i++) {
unsigned int offset = i * nbytes;
gex_RMA_PutNBIVal(myteam, peerproc, tgtmem+offset,
(gex_RMA_Value_t)i, nbytes, 0);
}
gex_NBI_Wait(GEX_EC_PUT,0);
end = TIME();
update_stat(&st, (end - begin), iters);
}
BARRIER();
if (iamsender && doputs) {
print_stat(myproc, &st, "PutNBIVal throughput", PRINT_THROUGHPUT);
}
}
int main(int argc, char **argv)
{
int min_payload, max_payload;
void *myseg;
void *alloc;
int arg;
int j;
int firstlastmode = 0;
int fullduplexmode = 0;
int crossmachinemode = 0;
int skipwarmup = 0;
int help = 0;
/* call startup */
GASNET_Safe(gex_Client_Init(&myclient, &myep, &myteam, "testval", &argc, &argv, 0));
/* parse arguments */
arg = 1;
while (argc > arg) {
if (!strcmp(argv[arg], "-f")) {
firstlastmode = 1;
++arg;
} else if (!strcmp(argv[arg], "-c")) {
crossmachinemode = 1;
++arg;
} else if (!strcmp(argv[arg], "-a")) {
fullduplexmode = 1;
++arg;
} else if (!strcmp(argv[arg], "-m")) {
unitsMB = 1;
++arg;
} else if (!strcmp(argv[arg], "-p")) {
dogets = 0; doputs = 1;
++arg;
} else if (!strcmp(argv[arg], "-g")) {
dogets = 1; doputs = 0;
++arg;
} else if (!strcmp(argv[arg], "-s")) {
skipwarmup = 1;
++arg;
} else if (argv[arg][0] == '-') {
help = 1;
++arg;
} else break;
}
if (argc > arg) { iters = atoi(argv[arg]); arg++; }
if (!iters) iters = 10000;
if (argc > arg) { maxsz = atoi(argv[arg]); arg++; }
if (!maxsz || maxsz > sizeof(gex_RMA_Value_t)) maxsz = sizeof(gex_RMA_Value_t);
if (argc > arg) { TEST_SECTION_PARSE(argv[arg]); arg++; }
GASNET_Safe(gex_Segment_Attach(&mysegment, myteam, TEST_SEGSZ_REQUEST));
test_init("testval",1, "[options] (iters) (maxsz) (test_sections)\n"
" The -p/-g option selects puts only or gets only (default is both).\n"
" The -s option skips warm-up iterations\n"
" The -m option enables MB/sec units for bandwidth output (MB=2^20 bytes).\n"
" The -a option enables full-duplex mode, where all nodes send.\n"
" The -c option enables cross-machine pairing, default is nearest neighbor.\n"
" The -f option enables 'first/last' mode, where the first/last\n"
" nodes communicate with each other, while all other nodes sit idle.\n");
if (help || argc > arg) test_usage();
min_payload = 1;
max_payload = maxsz;
/* get SPMD info */
myproc = gex_TM_QueryRank(myteam);
numprocs = gex_TM_QuerySize(myteam);
if (!firstlastmode) {
/* Only allow 1 or even number for numprocs */
if (numprocs > 1 && numprocs % 2 != 0) {
MSG0("WARNING: This test requires a unary or even number of nodes. Test skipped.\n");
gasnet_exit(0); /* exit 0 to prevent false negatives in test harnesses for smp-conduit */
}
}
/* Setting peer thread rank */
if (firstlastmode) {
peerproc = (myproc == 0 ? numprocs-1 : 0);
iamsender = (fullduplexmode ? myproc == 0 || myproc == numprocs-1 : myproc == 0);
} else if (numprocs == 1) {
peerproc = 0;
iamsender = 1;
} else if (crossmachinemode) {
if (myproc < numprocs / 2) {
peerproc = myproc + numprocs/2;
iamsender = 1;
} else {
peerproc = myproc - numprocs/2;
iamsender = fullduplexmode;
}
} else {
peerproc = (myproc % 2) ? (myproc - 1) : (myproc + 1);
iamsender = (fullduplexmode || myproc % 2 == 0);
}
myseg = TEST_SEG(myproc);
tgtmem = TEST_SEG(peerproc);
MSG0("Running %i iterations of %s%s%snon-bulk value put/get for sizes: %i...%i\n",
iters,
(firstlastmode ? "first/last " : ""),
(fullduplexmode ? "full-duplex ": ""),
(crossmachinemode ? "cross-machine ": ""),
min_payload, max_payload);
BARRIER();
if (iamsender && !skipwarmup) { /* pay some warm-up costs */
int i;
int warm_iters = MIN(iters, 32767); /* avoid hitting 65535-handle limit */
gex_Event_t *ph = test_malloc(sizeof(gex_Event_t)*warm_iters);
gex_RMA_Value_t reg = 1;
for (i = 0; i < warm_iters; i++) {
gex_RMA_PutBlockingVal(myteam, peerproc, tgtmem, reg, max_payload, 0);
reg ^= gex_RMA_GetBlockingVal(myteam, peerproc, tgtmem, max_payload, 0);
ph[i] = gex_RMA_PutNBVal(myteam, peerproc, tgtmem, reg, max_payload, 0);
gex_RMA_PutNBIVal(myteam, peerproc, tgtmem, reg, max_payload, 0);
}
gex_NBI_Wait(GEX_EC_PUT,0);
gex_Event_WaitAll(ph, warm_iters, 0);
test_free(ph);
}
BARRIER();
if (TEST_SECTION_BEGIN_ENABLED())
for (j = min_payload; j <= max_payload && j > 0; j *= 2) roundtrip_test(j);
if (TEST_SECTION_BEGIN_ENABLED())
for (j = min_payload; j <= max_payload && j > 0; j *= 2) oneway_test(j);
if (TEST_SECTION_BEGIN_ENABLED())
for (j = min_payload; j <= max_payload && j > 0; j *= 2) roundtrip_nb_test(j);
if (TEST_SECTION_BEGIN_ENABLED())
for (j = min_payload; j <= max_payload && j > 0; j *= 2) oneway_nb_test(j);
if (TEST_SECTION_BEGIN_ENABLED())
for (j = min_payload; j <= max_payload && j > 0; j *= 2) roundtrip_nbi_test(j);
if (TEST_SECTION_BEGIN_ENABLED())
for (j = min_payload; j <= max_payload && j > 0; j *= 2) oneway_nbi_test(j);
BARRIER();
gasnet_exit(0);
return 0;
}
/* ------------------------------------------------------------------------------------ */
|