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
Currently, our cuda::memory::mapped::allocate() function always allocates with the CU_MEMHOSTALLOC_DEVICEMAP flag - meaning it expects to get the same address for the device and the host. But - this whole namespace is for when we have a pair of addresses...
Either we support real pairs, in which case we support older GPUs as well (which is the earliest CPU to provide the same address? Kepler? Maxwell? Can't be later than Pascal) - or we rearrange this namespace somehow.
The text was updated successfully, but these errors were encountered:
Currently, our
cuda::memory::mapped::allocate()
function always allocates with theCU_MEMHOSTALLOC_DEVICEMAP
flag - meaning it expects to get the same address for the device and the host. But - this whole namespace is for when we have a pair of addresses...Either we support real pairs, in which case we support older GPUs as well (which is the earliest CPU to provide the same address? Kepler? Maxwell? Can't be later than Pascal) - or we rearrange this namespace somehow.
The text was updated successfully, but these errors were encountered: