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
Is your feature request related to a problem? Please describe.
We need an alternative of thrust::copy_n algorithm in cuda.parallel module.
Describe the solution you'd like
Asynchronous cuda.parallel.copy_n algorithm that accepts host, device, device, host, or device, device iterators and performs a copy in-place (no temporaries).
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Whereas in C++ the argument types can be used to dispatch to the appropriate CUDA API, we must rely on less formal protocols in Python (like __cuda_array_interface__) to do the same.
Is this a duplicate?
Area
Not sure
Is your feature request related to a problem? Please describe.
We need an alternative of
thrust::copy_n
algorithm incuda.parallel
module.Describe the solution you'd like
Asynchronous
cuda.parallel.copy_n
algorithm that acceptshost, device
,device, host
, ordevice, device
iterators and performs a copy in-place (no temporaries).Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: