OpenCL - 多个内核上的本地内存
是否有可能在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然,只需在全局内存中创建一个缓冲区并从第一个内核写入该缓冲区,然后在第二个内核执行中读取该缓冲区即可。
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.