Can an MPI_WAITALL call be skipped if all requests are already complete?
Advertisements Let’s say I have an array of non-blocking MPI requests initiated in a series of calls to MPI_ISEND (or MPI_IRECV). I store the request info in the array xfer_rqst. It is my understanding that when a request completes, its corresponding value in xfer_rqst will be set to MPI_REQUEST_NULL. Further, it’s my understanding that if… Read More Can an MPI_WAITALL call be skipped if all requests are already complete?