guosong wrote:
Hi all,If you send with MPI_Isend, the send operation is started. In order to complete the send, you need a corresponding MPI_Wait (or MPI_Test or variant like MPI_Waitall, etc.). Even then, it is possible for the MPI implementation to buffer the message internally. That is, the completion of the send operation only means that the message has left the user's send buffer -- not that the message has been received at the other end. There are also synchronous sends such as MPI_Ssend (or the non-blocking variant MPI_Issend). This guarantees that the send completes not only once the message has left the user's send buffer but only only once the receiver has posted a matching receive. It does not, however, guarantee that the full message has arrived at or been received by the receiver. I think once you've completed the send (e.g., adding an MPI_Wait to your MPI_Isend), there is nothing more to do on the sender's side to push the message along. |
- [OMPI users] Is there an "flush()"-like function ... guosong
- Re: [OMPI users] Is there an "flush()"-like ... Attila Börcs
- Re: [OMPI users] Is there an "flush()"-like ... Eugene Loh
- Re: [OMPI users] Is there an "flush()"-l... guosong
- Re: [OMPI users] Is there an "flush()&quo... Eugene Loh
- Re: [OMPI users] Is there an "flush()... guosong
- Re: [OMPI users] Is there an "fl... Ashley Pittman