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 faff2dd commit dd1b58fCopy full SHA for dd1b58f
ompi/request/request.h
@@ -429,6 +429,11 @@ static inline bool ompi_request_tag_is_collective(int tag) {
429
430
static inline void ompi_request_wait_completion(ompi_request_t *req)
431
{
432
+#if OMPI_HAVE_MPI_EXT_CONTINUE
433
+ if (OMPI_REQUEST_CONT == req->req_type) {
434
+ ompi_continue_progress_request(req);
435
+ }
436
+#endif /* OMPI_HAVE_MPI_EXT_CONTINUE */
437
if (opal_using_threads ()) {
438
if(!REQUEST_COMPLETE(req)) {
439
void *_tmp_ptr;
0 commit comments