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
Currently copying data between 2 OpenCL backends are done by
Which is slow. There are other more optimized routes. But the mechanism to trigger it is yet to determined.
Sol 1: Using clEnqueueMapBuffer
Sol 2: With OpenCL 2.0's Shared Virtual Memory. Host memory is not touched, super fast.
They should make multi-gpu faster.
The text was updated successfully, but these errors were encountered:
Sol 3:
But it is still not optimal that we need to copy a buffer on GPU1
Sorry, something went wrong.
Apparently Nvidia does have some OpenCL 2.0 support. https://streamhpc.com/blog/2017-02-22/nvidia-enables-opencl-2-0-beta-support/
Seems I can build OpenCL 2.0 code before grabbing myself a Navi card.
No branches or pull requests
Currently copying data between 2 OpenCL backends are done by
Which is slow. There are other more optimized routes. But the mechanism to trigger it is yet to determined.
Sol 1: Using clEnqueueMapBuffer
Sol 2: With OpenCL 2.0's Shared Virtual Memory. Host memory is not touched, super fast.
They should make multi-gpu faster.
The text was updated successfully, but these errors were encountered: