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
{{ message }}
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
The current implementation of thrust::copyuses transform to perform device to device copying. I suppose we have to dispatch to some form of memcpy for trivially copyable types. Here's the expected performance improvement for std::uint8_t:
The text was updated successfully, but these errors were encountered:
The current implementation of
thrust::copy
usestransform
to perform device to device copying. I suppose we have to dispatch to some form of memcpy for trivially copyable types. Here's the expected performance improvement forstd::uint8_t
:The text was updated successfully, but these errors were encountered: