SWDEV-382074 - Check for peer access. (#169)

Change-Id: I8b931a92fc97c68556d74332984ddf17c53df7d4
This commit is contained in:
ROCm CI Service Account
2023-02-28 10:50:57 +05:30
committed by GitHub
parent 6ef967abd7
commit 92f0da368f
2 changed files with 11 additions and 2 deletions
+1 -1
View File
@@ -141,7 +141,7 @@ void MemcpyDeviceToDeviceShell(F memcpy_func, const hipStream_t kernel_stream =
HIP_CHECK(hipDeviceCanAccessPeer(&can_access_peer, src_device, dst_device));
if (!can_access_peer) {
INFO("Peer access cannot be enabled between devices " << src_device << " " << dst_device);
REQUIRE(can_access_peer);
return;
}
HIP_CHECK(hipDeviceEnablePeerAccess(dst_device, 0));
}