We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We currently have:
template <typename T> void copy_single(T* destination, const T* source)
in cuda::memory, but:
cuda::memory
void copy_single(T& destination, const T& source, const stream_t& stream);
i cuda::memory::async. We should either have references in both signatures or in none.
cuda::memory::async
The text was updated successfully, but these errors were encountered:
Fixes #687: Unified interface of regular and async variants of `memor…
10ea89f
…y::copy_single<T>()`
5c7b607
18007a9
8131ccd
3a3ac9d
49ab233
No branches or pull requests
We currently have:
in
cuda::memory
, but:i
cuda::memory::async
. We should either have references in both signatures or in none.The text was updated successfully, but these errors were encountered: