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.
2 parents bbcab84 + 31f7f77 commit 88bb627Copy full SHA for 88bb627
ompi/mpi/c/start.c
@@ -68,7 +68,8 @@ int MPI_Start(MPI_Request *request)
68
switch((*request)->req_type) {
69
case OMPI_REQUEST_PML:
70
case OMPI_REQUEST_COLL:
71
- if ( MPI_PARAM_CHECK && !(*request)->req_persistent) {
+ if ( MPI_PARAM_CHECK && !((*request)->req_persistent &&
72
+ OMPI_REQUEST_INACTIVE == (*request)->req_state)) {
73
return OMPI_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_REQUEST, FUNC_NAME);
74
}
75
OPAL_CR_ENTER_LIBRARY();
0 commit comments