OpenCL,从 GPU 内核直接访问主机内存
有没有什么方法可以在主机上分配内存,可以直接从 GPU 访问,而无需复制?
就像CUDA中的cudaHostGetDevicePointer一样。
Is there any way to allocate memory on host, that is accessible directly from GPU, without copying?
Like cudaHostGetDevicePointer in CUDA.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,将 clCreateBuffer 与包含以下之一的标志一起使用:
哪个可以满足您的要求。有关更多信息,请访问 clCreateBuffer。
Yes, use clCreateBuffer with flags containing one of:
Which does what you want. For more information visit the man page of clCreateBuffer.