Skip to content

Commit

Permalink
Merge pull request #70 from rapidsai/branch-0.33
Browse files Browse the repository at this point in the history
Forward-merge branch-0.33 to branch-0.34
  • Loading branch information
GPUtester authored Jul 20, 2023
2 parents e135aeb + c91d9e6 commit 42e5aeb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions cpp/tests/request.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,9 @@ class RequestTest : public ::testing::TestWithParam<
_sendPtr[i] = _sendBuffer[i]->data();
if (allocateRecvBuffer) _recvPtr[i] = _recvBuffer[i]->data();
}
#if UCXX_ENABLE_RMM
if (_bufferType == ucxx::BufferType::RMM) { rmm::cuda_stream_default.synchronize(); }
#endif
}

void copyResults()
Expand All @@ -141,6 +144,9 @@ class RequestTest : public ::testing::TestWithParam<
#endif
}
}
#if UCXX_ENABLE_RMM
if (_bufferType == ucxx::BufferType::RMM) { rmm::cuda_stream_default.synchronize(); }
#endif
}
};

Expand Down

0 comments on commit 42e5aeb

Please sign in to comment.