直接复制 OpenCL 缓冲区

发布于 2025-01-06 01:53:00 字数 169 浏览 1 评论 0原文

是否可以将一个缓冲区的 分配给 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长发绾君心 2025-01-13 01:53:00

您需要在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文