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 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674
|
#ifndef MPIDBG_H
#define MPIDBG_H
/** @file mpidbg.h
*
* MPI APIs with the logging feature.
* NOTE: This file needs C99.
*/
/* #[ License : */
/*
* Copyright (C) 1984-2026 J.A.M. Vermaseren
* When using this file you are requested to refer to the publication
* J.A.M.Vermaseren "New features of FORM" math-ph/0010025
* This is considered a matter of courtesy as the development was paid
* for by FOM the Dutch physics granting agency and we would like to
* be able to track its scientific use to convince FOM of its value
* for the community.
*
* This file is part of FORM.
*
* FORM is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* FORM is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along
* with FORM. If not, see <http://www.gnu.org/licenses/>.
*/
/* #] License : */
/*
#[ Includes :
*/
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <mpi.h>
/*
#] Includes :
#[ Utilities :
#[ MPIDBG_RANK :
*/
static inline int MPIDBG_Get_rank(void) {
return PF.me; /* Assume we are working with ParFORM. */
}
#define MPIDBG_RANK MPIDBG_Get_rank()
/*
#] MPIDBG_RANK :
#[ MPIDBG_Out :
*/
static inline void MPIDBG_Out(const char *file, int line, const char *func, const char *fmt, ...) {
char buf[1024]; /* Enough. */
va_list ap;
va_start(ap, fmt);
snprintf(buf,1024, "*** [%d] %10s %4d @ %-16s: ", MPIDBG_RANK, file, line, func);
vsnprintf(buf + strlen(buf),1024-strlen(buf), fmt, ap);
va_end(ap);
/* Assume fprintf with a line will work well even in multi-processes. */
fprintf(stderr, "%s\n", buf);
}
#define MPIDBG_Out(...) MPIDBG_Out(file, line, func, __VA_ARGS__)
/*
#] MPIDBG_Out :
#[ MPIDBG_sprint_requests :
*/
static inline void MPIDBG_sprint_requests(char *buf, int count, const MPI_Request *requests)
{
/* Assume sprintf never fail and returns >= 0... */
buf += sprintf(buf, "(");
int i, first = 1;
for ( i = 0; i < count; i++ ) {
if ( first ) {
first = 0;
}
else {
buf += sprintf(buf, ",");
}
if ( requests[i] != MPI_REQUEST_NULL ) {
buf += sprintf(buf, "%d", i);
}
else {
buf += sprintf(buf, "*");
}
}
buf += sprintf(buf, ")");
}
/*
#] MPIDBG_sprint_requests :
#[ MPIDBG_sprint_statuses :
*/
static inline void MPIDBG_sprint_statuses(char *buf, int count, const MPI_Request *old_requests, const MPI_Request *new_requests, const MPI_Status *statuses)
{
/* Assume sprintf never fail and returns >= 0... */
buf += sprintf(buf, "(");
int i, first = 1;
for ( i = 0; i < count; i++ ) {
if ( first ) {
first = 0;
}
else {
buf += sprintf(buf, ",");
}
if ( old_requests[i] != MPI_REQUEST_NULL && new_requests[i] == MPI_REQUEST_NULL ) {
int ret_size = 0;
MPI_Get_count((MPI_Status *)&statuses[i], MPI_BYTE, &ret_size);
buf += sprintf(buf, "(source=%d,tag=%d,size=%d)", statuses[i].MPI_SOURCE, statuses[i].MPI_TAG, ret_size);
} else {
buf += sprintf(buf, "*");
}
}
buf += sprintf(buf, ")");
}
/*
#] MPIDBG_sprint_statuses :
#] Utilities :
#[ MPI APIs :
*/
/*
* The followings are the MPI APIs with the logging.
*/
#define MPIDBG_EXTARG const char *file, int line, const char *func
/*
#[ MPI_Send :
*/
static inline int MPIDBG_Send(void *buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Send: src=%d dest=%d tag=%d count=%d", MPIDBG_RANK, dest, tag, count);
int ret = MPI_Send(buf, count, datatype, dest, tag, comm);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Send: OK");
}
else {
MPIDBG_Out("MPI_Send: Failed");
}
return ret;
}
#define MPI_Send(...) MPIDBG_Send(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Send :
#[ MPI_Recv :
*/
static inline int MPIDBG_Recv(void* buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status *status, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Recv: src=%d dest=%d tag=%d", source, MPIDBG_RANK, tag);
int ret = MPI_Recv(buf, count, datatype, source, tag, comm, status);
if ( ret == MPI_SUCCESS ) {
int ret_count = 0;
MPI_Get_count(status, datatype, &ret_count);
MPIDBG_Out("MPI_Recv: OK src=%d dest=%d tag=%d count=%d", status->MPI_SOURCE, MPIDBG_RANK, status->MPI_TAG, ret_count);
}
else {
MPIDBG_Out("MPI_Recv: Failed");
}
return ret;
}
#define MPI_Recv(...) MPIDBG_Recv(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Recv :
#[ MPI_Bsend :
*/
static inline int MPIDBG_Bsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Bsend: src=%d dest=%d tag=%d count=%d", MPIDBG_RANK, dest, tag, count);
int ret = MPI_Bsend(buf, count, datatype, dest, tag, comm);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Bsend: OK");
}
else {
MPIDBG_Out("MPI_Bsend: Failed");
}
return ret;
}
#define MPI_Bsend(...) MPIDBG_Bsend(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Bsend :
#[ MPI_Ssend :
*/
static inline int MPIDBG_Ssend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Ssend: src=%d dest=%d tag=%d count=%d", MPIDBG_RANK, dest, tag, count);
int ret = MPI_Ssend(buf, count, datatype, dest, tag, comm);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Ssend: OK");
}
else {
MPIDBG_Out("MPI_Ssend: Failed");
}
return ret;
}
#define MPI_Ssend(...) MPIDBG_Ssend(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Ssend :
#[ MPI_Rsend :
*/
static inline int MPIDBG_Rsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Rsend: src=%d dest=%d tag=%d count=%d", MPIDBG_RANK, dest, tag, count);
int ret = MPI_Rsend(buf, count, datatype, dest, tag, comm);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Rsend: OK");
}
else {
MPIDBG_Out("MPI_Rsend: Failed");
}
return ret;
}
#define MPI_Rsend(...) MPIDBG_Rsend(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Rsend :
#[ MPI_Isend :
*/
static inline int MPIDBG_Isend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Isend: src=%d dest=%d tag=%d count=%d", MPIDBG_RANK, dest, tag, count);
int ret = MPI_Isend(buf, count, datatype, dest, tag, comm, request);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Isend: OK");
}
else {
MPIDBG_Out("MPI_Isend: Failed");
}
return ret;
}
#define MPI_Isend(...) MPIDBG_Isend(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Isend :
#[ MPI_Ibsend :
*/
static inline int MPIDBG_Ibsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Ibsend: src=%d dest=%d tag=%d count=%d", MPIDBG_RANK, dest, tag, count);
int ret = MPI_Ibsend(buf, count, datatype, dest, tag, comm, request);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Ibsend: OK");
}
else {
MPIDBG_Out("MPI_Ibsend: Failed");
}
return ret;
}
#define MPI_Ibsend(...) MPIDBG_Ibsend(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Ibsend :
#[ MPI_Issend :
*/
static inline int MPIDBG_Issend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Issend: src=%d dest=%d tag=%d count=%d", MPIDBG_RANK, dest, tag, count);
int ret = MPI_Issend(buf, count, datatype, dest, tag, comm, request);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Issend: OK");
}
else {
MPIDBG_Out("MPI_Issend: Failed");
}
return ret;
}
#define MPI_Issend(...) MPIDBG_Issend(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Issend :
#[ MPI_Irsend :
*/
static inline int MPIDBG_Irsend(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm, MPI_Request *request, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Irsend: src=%d dest=%d tag=%d count=%d", MPIDBG_RANK, dest, tag, count);
int ret = MPI_Irsend(buf, count, datatype, dest, tag, comm, request);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Irsend: OK");
}
else {
MPIDBG_Out("MPI_Irsend: Failed");
}
return ret;
}
#define MPI_Irsend(...) MPIDBG_Irsend(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Irsend :
#[ MPI_Irecv :
*/
static inline int MPIDBG_Irecv(void* buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Request *request, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Irecv: src=%d dest=%d tag=%d", source, MPIDBG_RANK, tag);
int ret = MPI_Irecv(buf, count, datatype, source, tag, comm, request);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Irecv: OK dest=%d", MPIDBG_RANK);
}
else {
MPIDBG_Out("MPI_Irecv: Failed");
}
return ret;
}
#define MPI_Irecv(...) MPIDBG_Irecv(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Irecv :
#[ MPI_Wait :
*/
static inline int MPIDBG_Wait(MPI_Request *request, MPI_Status *status, MPIDBG_EXTARG)
{
char buf[256 * 1]; /* Enough. */
MPI_Request old_request = *request;
MPIDBG_sprint_requests(buf, 1, request);
MPIDBG_Out("MPI_Wait: rank=%d request=%s", MPIDBG_RANK, buf);
int ret = MPI_Wait(request, status);
if ( ret == MPI_SUCCESS ) {
MPIDBG_sprint_statuses(buf, 1, request, &old_request, status);
MPIDBG_Out("MPI_Wait: OK rank=%d result=%s", MPIDBG_RANK, buf);
}
else {
MPIDBG_Out("MPI_Wait: Failed");
}
return ret;
}
#define MPI_Wait(...) MPIDBG_Wait(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Wait :
#[ MPI_Test :
*/
static inline int MPIDBG_Test(MPI_Request *request, int *flag, MPI_Status *status, MPIDBG_EXTARG)
{
char buf[256 * 1]; /* Enough. */
MPI_Request old_request = *request;
MPIDBG_sprint_requests(buf, 1, request);
MPIDBG_Out("MPI_Test: rank=%d request=%s", MPIDBG_RANK, buf);
int ret = MPI_Test(request, flag, status);
if ( ret == MPI_SUCCESS ) {
if ( *flag ) {
MPIDBG_sprint_statuses(buf, 1, request, &old_request, status);
MPIDBG_Out("MPI_Test: OK rank=%d result=%s", MPIDBG_RANK, buf);
}
else {
MPIDBG_Out("MPI_Test: OK flag=false");
}
}
else {
MPIDBG_Out("MPI_Test: Failed");
}
return ret;
}
#define MPI_Test(...) MPIDBG_Test(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Test :
#[ MPI_Waitany :
*/
static inline int MPIDBG_Waitany(int count, MPI_Request *array_of_requests, int *index, MPI_Status *status, MPIDBG_EXTARG)
{
char buf[256]; /* Enough. */
MPI_Request old_requests[count];
memcpy(old_requests, array_of_requests, sizeof(MPI_Request) * count);
MPIDBG_sprint_requests(buf, count, array_of_requests);
MPIDBG_Out("MPI_Waitany: rank=%d request=%s", MPIDBG_RANK, buf);
int ret = MPI_Waitany(count, array_of_requests, index, status);
if ( ret == MPI_SUCCESS ) {
MPI_Status statuses[count];
statuses[*index] = *status;
MPIDBG_sprint_statuses(buf, count, old_requests, array_of_requests, statuses);
MPIDBG_Out("MPI_Waitany: OK rank=%d result=%s", MPIDBG_RANK, buf);
}
else {
MPIDBG_Out("MPI_Waitany: Failed");
}
return ret;
}
#define MPI_Waitany(...) MPIDBG_Waitany(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Waitany :
#[ MPI_Testany :
*/
static inline int MPIDBG_Testany(int count, MPI_Request *array_of_requests, int *index, int *flag, MPI_Status *status, MPIDBG_EXTARG)
{
char buf[256]; /* Enough. */
MPI_Request old_requests[count];
memcpy(old_requests, array_of_requests, sizeof(MPI_Request) * count);
MPIDBG_sprint_requests(buf, count, array_of_requests);
MPIDBG_Out("MPI_Testany: rank=%d request=%s", MPIDBG_RANK, buf);
int ret = MPI_Testany(count, array_of_requests, index, flag, status);
if ( ret == MPI_SUCCESS ) {
if ( *flag ) {
MPI_Status statuses[count];
statuses[*index] = *status;
MPIDBG_sprint_statuses(buf, count, old_requests, array_of_requests, statuses);
MPIDBG_Out("MPI_Testany: OK rank=%d result=%s", MPIDBG_RANK, buf);
}
else {
MPIDBG_Out("MPI_Testany: OK flag=false");
}
}
else {
MPIDBG_Out("MPI_Testany: Failed");
}
return ret;
}
#define MPI_Testany(...) MPIDBG_Testany(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Testany :
#[ MPI_Waitall :
*/
static inline int MPIDBG_Waitall(int count, MPI_Request *array_of_requests, MPI_Status *array_of_statuses, MPIDBG_EXTARG)
{
char buf[256 * count]; /* Enough. */
MPI_Request old_requests[count];
memcpy(old_requests, array_of_requests, sizeof(MPI_Request) * count);
MPIDBG_sprint_requests(buf, count, array_of_requests);
MPIDBG_Out("MPI_Waitall: rank=%d request=%s", MPIDBG_RANK, buf);
int ret = MPI_Waitall(count, array_of_requests, array_of_statuses);
if ( ret == MPI_SUCCESS ) {
MPIDBG_sprint_statuses(buf, count, old_requests, array_of_requests, array_of_statuses);
MPIDBG_Out("MPI_Waitall: OK rank=%d result=%s", MPIDBG_RANK, buf);
}
else {
MPIDBG_Out("MPI_Waitall: Failed");
}
return ret;
}
#define MPI_Waitall(...) MPIDBG_Waitall(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Waitall :
#[ MPI_Testall :
*/
static inline int MPIDBG_Testall(int count, MPI_Request *array_of_requests, int *flag, MPI_Status *array_of_statuses, MPIDBG_EXTARG)
{
char buf[256 * count]; /* Enough. */
MPI_Request old_requests[count];
memcpy(old_requests, array_of_requests, sizeof(MPI_Request) * count);
MPIDBG_sprint_requests(buf, count, array_of_requests);
MPIDBG_Out("MPI_Testall: rank=%d request=%s", MPIDBG_RANK, buf);
int ret = MPI_Testall(count, array_of_requests, flag, array_of_statuses);
if ( ret == MPI_SUCCESS ) {
if ( *flag ) {
MPIDBG_sprint_statuses(buf, count, old_requests, array_of_requests, array_of_statuses);
MPIDBG_Out("MPI_Testall: OK rank=%d result=%s", MPIDBG_RANK, buf);
}
else {
MPIDBG_Out("MPI_Testall: OK flag=false");
}
}
else {
MPIDBG_Out("MPI_Testall: Failed");
}
return ret;
}
#define MPI_Testall(...) MPIDBG_Testall(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Testall :
#[ MPI_Waitsome :
*/
static inline int MPIDBG_Waitsome(int incount, MPI_Request *array_of_requests, int *outcount, int *array_of_indices, MPI_Status *array_of_statuses, MPIDBG_EXTARG)
{
char buf[256 * incount]; /* Enough. */
MPI_Request old_requests[incount];
memcpy(old_requests, array_of_requests, sizeof(MPI_Request) * incount);
MPIDBG_sprint_requests(buf, incount, array_of_requests);
MPIDBG_Out("MPI_Waitsome: rank=%d request=%s", MPIDBG_RANK, buf);
int ret = MPI_Waitsome(incount, array_of_requests, outcount, array_of_indices, array_of_statuses);
if ( ret == MPI_SUCCESS ) {
MPIDBG_sprint_statuses(buf, incount, old_requests, array_of_requests, array_of_statuses);
MPIDBG_Out("MPI_Waitsome: OK rank=%d result=%s", MPIDBG_RANK, buf);
}
else {
MPIDBG_Out("MPI_Waitsome: Failed");
}
return ret;
}
#define MPI_Waitsome(...) MPIDBG_Waitsome(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Waitsome :
#[ MPI_Testsome :
*/
static inline int MPIDBG_Testsome(int incount, MPI_Request *array_of_requests, int *outcount, int *array_of_indices, MPI_Status *array_of_statuses, MPIDBG_EXTARG)
{
char buf[256 * incount]; /* Enough. */
MPI_Request old_requests[incount];
memcpy(old_requests, array_of_requests, sizeof(MPI_Request) * incount);
MPIDBG_sprint_requests(buf, incount, array_of_requests);
MPIDBG_Out("MPI_Testsome: rank=%d request=%s", MPIDBG_RANK, buf);
int ret = MPI_Testsome(incount, array_of_requests, outcount, array_of_indices, array_of_statuses);
if ( ret == MPI_SUCCESS ) {
MPIDBG_sprint_statuses(buf, incount, old_requests, array_of_requests, array_of_statuses);
MPIDBG_Out("MPI_Testsome: OK rank=%d result=%s", MPIDBG_RANK, buf);
}
else {
MPIDBG_Out("MPI_Testsome: Failed");
}
return ret;
}
#define MPI_Testsome(...) MPIDBG_Testsome(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Testsome :
#[ MPI_Iprobe :
*/
static inline int MPIDBG_Iprobe(int source, int tag, MPI_Comm comm, int *flag, MPI_Status *status, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Iprobe: src=%d dest=%d tag=%d", source, MPIDBG_RANK, tag);
int ret = MPI_Iprobe(source, tag, comm, flag, status);
if ( ret == MPI_SUCCESS ) {
if ( *flag ) {
int ret_size = 0;
MPI_Get_count(status, MPI_BYTE, &ret_size);
MPIDBG_Out("MPI_Iprobe: OK src=%d dest=%d tag=%d size=%d", status->MPI_SOURCE, MPIDBG_RANK, status->MPI_TAG, ret_size);
}
else {
MPIDBG_Out("MPI_Iprobe: OK flag=false");
}
}
else {
MPIDBG_Out("MPI_Iprobe: Failed");
}
return ret;
}
#define MPI_Iprobe(...) MPIDBG_Iprobe(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Iprobe :
#[ MPI_Probe :
*/
static inline int MPIDBG_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Probe: src=%d dest=%d tag=%d", source, MPIDBG_RANK, tag);
int ret = MPI_Probe(source, tag, comm, status);
if ( ret == MPI_SUCCESS ) {
int ret_size = 0;
MPI_Get_count(status, MPI_BYTE, &ret_size);
MPIDBG_Out("MPI_Probe: OK src=%d dest=%d tag=%d size=%d", status->MPI_SOURCE, MPIDBG_RANK, status->MPI_TAG, ret_size);
}
else {
MPIDBG_Out("MPI_Probe: Failed");
}
return ret;
}
#define MPI_Probe(...) MPIDBG_Probe(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Probe :
#[ MPI_Cancel :
*/
static inline int MPIDBG_Cancel(MPI_Request *request, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Cancel: rank=%d", MPIDBG_RANK);
int ret = MPI_Cancel(request);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Cancel: OK");
}
else {
MPIDBG_Out("MPI_Cancel: Failed");
}
return ret;
}
#define MPI_Cancel(...) MPIDBG_Cancel(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Cancel :
#[ MPI_Test_cancelled :
*/
static inline int MPIDBG_Test_cancelled(MPI_Status *status, int *flag, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Test_cancelled: rank=%d", MPIDBG_RANK);
int ret = MPI_Test_cancelled(status, flag);
if ( ret == MPI_SUCCESS ) {
if ( *flag ) {
MPIDBG_Out("MPI_Test_cancelled: OK flag=true");
}
else {
MPIDBG_Out("MPI_Test_cancelled: OK flag=false");
}
}
else {
MPIDBG_Out("MPI_Test_cancelled: Failed");
}
return ret;
}
#define MPI_Test_cancelled(...) MPIDBG_Test_cancelled(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Test_cancelled :
#[ MPI_Barrier :
*/
static inline int MPIDBG_Barrier(MPI_Comm comm, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Barrier: rank=%d", MPIDBG_RANK);
int ret = MPI_Barrier(comm);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Barrier: OK");
}
else {
MPIDBG_Out("MPI_Barrier: Failed");
}
return ret;
}
#define MPI_Barrier(...) MPIDBG_Barrier(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Barrier :
#[ MPI_Bcast :
*/
static inline int MPIDBG_Bcast(void* buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm, MPIDBG_EXTARG)
{
MPIDBG_Out("MPI_Bcast: root=%d count=%d", root, count);
int ret = MPI_Bcast(buffer, count, datatype, root, comm);
if ( ret == MPI_SUCCESS ) {
MPIDBG_Out("MPI_Bcast: OK");
}
else {
MPIDBG_Out("MPI_Bcast: Failed");
}
return ret;
}
#define MPI_Bcast(...) MPIDBG_Bcast(__VA_ARGS__, __FILE__, __LINE__, __func__)
/*
#] MPI_Bcast :
#] MPI APIs :
*/
#endif /* MPIDBG_H */
|