直接复制 OpenCL 缓冲区
是否可以将一个缓冲区的 分配给 OpenCL 源代码中定义的另一个缓冲区? 例如,考虑以下代码:
cl_mem buff;
cl_mem temp;
...
...
...
temp = buff;
我需要再次调用 clEnqueueBuffer() 吗?
Is it possible to assign the of a buffer to another buffer defined in OpenCL source code?
For example, consider the below code:
cl_mem buff;
cl_mem temp;
...
...
...
temp = buff;
Do I need to call clEnqueueBuffer() again?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 NDRange 调用之间使用 clEnqueueCopyBuffer 将 buff 复制到 temp。如果你能帮忙的话,我不建议这样做。没有理由不能将相同的缓冲区用于 NDRange 调用,除非您同时需要它用于其他用途。
You would need to copy buff to temp using clEnqueueCopyBuffer between your NDRange calls. I don't recommend doing this if you can help it though. There should be no reason why you cant use the same buffer for NDRange calls unless you are needing it for something else in the meantime.