OpenCL - 多个内核上的本地内存

发布于 2024-11-25 12:50:51 字数 91 浏览 3 评论 0原文

是否有可能在 GPU 上生成某种数据,将其存储在本地内存中并在多个内核上使用该数据?

如果可能的话,很高兴看到一个简单的例子。

谢谢你!

Is it possible, to generate some kind of data on GPU, store it in the local memory and use this data over more than one kernel?

It would be nice to see a simple example, if it's possible.

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

遮云壑 2024-12-02 12:50:51

当然,只需在全局内存中创建一个缓冲区并从第一个内核写入该缓冲区,然后在第二个内核执行中读取该缓冲区即可。

Sure, just create a buffer in global memory and write into it from your first kernel, and then just read the buffer in your second kernel execution.

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