Neutral Binding
MPI_BCAST( buffer, count, datatype, root, comm ) [ INOUT buffer] starting address of buffer (choice) [ IN count] number of entries in buffer (integer) [ IN datatype] data type of buffer (handle) [ IN root] rank of broadcast root (integer) [ IN comm] communicator (handle)
C Binding
int MPI_Bcast(void* buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm )
FORTRAN Binding
MPI_BCAST(BUFFER, COUNT, DATATYPE, ROOT, COMM, IERROR) <type> BUFFER(*) INTEGER COUNT, DATATYPE, ROOT, COMM, IERROR
C++ Binding (in the MPI:: namespace)
void Intracomm::Bcast(void* buffer, int count, const Datatype& datatype, int root) const
|
|