MPI_IBCAST(buffer, count, datatype, root, comm, request) | |
INOUT buffer | starting address of buffer (choice) |
IN count | number of entries in buffer (non-negative integer) |
IN datatype | datatype of buffer (handle) |
IN root | rank of broadcast root (integer) |
IN comm | communicator (handle) |
OUT request | communication request (handle) |
This call starts a nonblocking variant of MPI_BCAST (see Section Broadcast).
The example in this section uses an intra-communicator.
Example
Start a broadcast of 100 ints from MPI process 0 to every MPI process in the
group, perform some computation on independent data, and then complete
the outstanding broadcast operation.