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