Merge pull request #873 from gargrahul/fix_p2p_host_memory_access

Fixed issue of GPU device losing access to host pinned memory

[ROCm/hip commit: bcd414c77c]
This commit is contained in:
Maneesh Gupta
2019-01-22 10:53:18 +05:30
committato da GitHub
+1 -1
Vedi File
@@ -129,7 +129,7 @@ hipError_t ihipEnablePeerAccess(hipCtx_t peerCtx, unsigned int flags) {
LockedAccessor_CtxCrit_t peerCrit(peerCtx->criticalData());
// Add thisCtx to peerCtx's access list so that new allocations on peer will be made
// visible to this device:
bool isNewPeer = peerCrit->addPeerWatcher(peerCtx, thisCtx);
bool isNewPeer = peerCrit->addPeerWatcher(thisCtx, peerCtx);
if (isNewPeer) {
tprintf(DB_MEM, "device=%s can now see all memory allocated on peer=%s\n",
thisCtx->toString().c_str(), peerCtx->toString().c_str());