-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
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
Is it possible to create an Boost Compute vector and wrap a vexcl vector with Compute vector? #288
Comments
Both boost.compute and vexcl vectors are just wrappers around raw opencl buffers, so the conversion is possible both ways. |
// Wrap boost.compute vectors into vexcl vectors (no data is copied): this is the way to wrap a compute vector but is it possible to wrap a vex vector? |
See examples in vexcl/vexcl/external/boost_compute.hpp Lines 60 to 102 in ec0cc1f
|
As given in the documentation we can do it for the vexcl but not for the compute vecotrs.
The text was updated successfully, but these errors were encountered: