You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a multi-GPU setting, right now it's not possible to memcpy directly between the two devices. A couple of checks would have to be done by cuda.core as part of enabling this:
cuDeviceCanAccessPeer
cuCtxEnablePeerAccess
The text was updated successfully, but these errors were encountered:
This issue is actually very tricky because the modern way of exposing peer access support is again tied to the mempool/VMM APIs, such as cuMemPoolSetAccess/cuMemSetAccess, same as IPC (#103). We'll need a coherent, unified, and consistent solution here.
In a multi-GPU setting, right now it's not possible to memcpy directly between the two devices. A couple of checks would have to be done by cuda.core as part of enabling this:
The text was updated successfully, but these errors were encountered: