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
Hi cuda-python developers, I meet a problem that when I pass a CUmemFabricHandle to cuMemImportFromShareableHandle, it raise a error like:
Provided argument is of type <class 'cuda.bindings.driver.CUmemFabricHandle'> but expected Type <class 'NoneType'>, <class 'type'> or object with Buffer Protocol
My code is:
importcuda.bindings.driverascudriver# equal to CU_MEM_HANDLE_TYPE_FABRIChandle_type=cudriver.CUmemAllocationHandleType(8)
peer_handle=cudriver.CUmemFabricHandle()
peer_handle.data=xxxerr, buf=cudriver.cuMemImportFromShareableHandle(peer_handle, handle_type)
Is there something wrong with my code or it just a type check bug in cuda-python?
The text was updated successfully, but these errors were encountered:
Hi cuda-python developers, I meet a problem that when I pass a
CUmemFabricHandle
tocuMemImportFromShareableHandle
, it raise a error like:My code is:
Is there something wrong with my code or it just a type check bug in cuda-python?
The text was updated successfully, but these errors were encountered: