| 533 | } |
| 534 | |
| 535 | void |
| 536 | IProbe (int src_pid, int tag, int& flag, MPI_Status& status) |
| 537 | { |
| 538 | BL_PROFILE_S("ParallelDescriptor::Iprobe()"); |
| 539 | BL_COMM_PROFILE(BLProfiler::Iprobe, sizeof(char), src_pid, tag); |
| 540 | |
| 541 | BL_MPI_REQUIRE( MPI_Iprobe(src_pid, tag, ParallelDescriptor::Communicator(), |
| 542 | &flag, &status) ); |
| 543 | |
| 544 | BL_COMM_PROFILE(BLProfiler::Iprobe, flag, BLProfiler::AfterCall(), status.MPI_TAG); |
| 545 | } |
| 546 | |
| 547 | void |
| 548 | IProbe (int src_pid, int tag, MPI_Comm comm, int& flag, MPI_Status& status) |
no test coverage detected