I know MPI_SEND will be halted until MPI_RECV is executed in the target node. What about MPI_Bcast? Does it need to wait until all other nodes receive it?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
MPI_Bcast is a collective operation, so all ranks in the communicator must call it. When it returns successfully, it is guaranteed that the data transfer has completed. |
|||||||||||
|