We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfca937 commit 2b9cda4Copy full SHA for 2b9cda4
ompi/communicator/comm_request.c
@@ -125,6 +125,9 @@ static int ompi_comm_request_progress (void)
125
while (request_item->subreq_count) {
126
ompi_request_t *subreq = request_item->subreqs[request_item->subreq_count-1];
127
if( REQUEST_COMPLETE(subreq) ) {
128
+ if (OMPI_SUCCESS != subreq->req_status.MPI_ERROR) {
129
+ fprintf(stderr, "ompi_comm_request_progress: subrequest completed with error %d\n", subreq->req_status.MPI_ERROR);
130
+ }
131
ompi_request_free (&subreq);
132
request_item->subreq_count--;
133
} else {
0 commit comments