Date: 4/16/2014 |
|
|
one task is performing a send operation and the other task is performing a matching receive operation. MPI_Send(buffer,count,type,dest,tag,comm) ---> MPI_Recv(buffer,count,type,source,tag,comm,status) Blocking - the function won't return until MPI has safely stored the message to be sent, or was able to retrieve a message for delivery.
|
|