MPI_Improbe Probes for a message in a non-blocking way. Provides a mechanism to receive the specific message that was matched regardless of intervening probe/receive operations. The matched message is de-queued off the receive queue, giving the application an opportunity to decide how to receive the message based on the information returned by the non-blocking matching probe operation. The matched message is then received using the MPI_Mrecv or MPI_Imrecv function.
MPI_Irecv Initiates a receive operation and returns a handle to the requested communication operation.
MPI_Irsend Initiates a ready mode send operation and returns a request handle that represents the communication operation.
MPI_Isend Initiates a standard mode send operation and returns a handle to the requested communication operation.
MPI_Issend Initiates a synchronous mode send operation and returns a handle to the requested communication operation.
MPI_Mprobe Blocking probes for a message. Provides a mechanism to receive the specific message that was matched regardless of intervening probe/receive operations. The matched message is de-queued off the receive queue, giving the application an opportunity to decide how to receive the message based on the information returned by the matching probe operation. The matched message is then received using the MPI_Mrecv or MPI_Imrecv function.
MSMPI_Waitsome_interruptible Waits until at least one of the operations that is associated with active handles in the list has finished, or the call is interrupted by another thread that calls MSMPI_Queuelock_acquire.