Corresponding Receive Routine of MPI_Bcast

11,342

MPI_Bcast is both the sender and the receiver call.

Consider the prototype for it.

int MPI_Bcast ( void *buffer, int count, MPI_Datatype datatype, int root, MPI_Comm comm )

All machines except for the machine with id = root are receivers. The machine that has the id = root is the sender.

Share:
11,342

Related videos on Youtube

SRec0
Author by

SRec0

Updated on March 03, 2020

Comments

  • SRec0
    SRec0 about 4 years

    What would be the corresponding MPI receive routine of the broadcast routine, MPI_Bcast.

    Namely, one processor broadcasts a message to a group, let's say all world, how I can have the message in these processes?

    Thank you.

    Regards

    SRec

  • Albert Mosiałek
    Albert Mosiałek almost 3 years
    According to OpenMPI docs: MPI_Bcast broadcasts a message from the process with rank root to all processes of the group, itself included.

Related