作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
不像 barrier()
(我想我明白了),mem_fence()
不会影响工作组中的所有项目。 OpenCL 规范说(第 6.11.10 节),适用于 mem_fence()
:
Orders loads and stores of a work-item executing a kernel.
Within a work-item memory has load / store consistency.
mem_fence()
对...有用?它不适用于跨项目,但在项目中不需要...
mem_fence()
是和那些一起使用的?如果是这样,我很想看一个例子。
barrier()
一起使用时它是多么有用(隐含地,因为屏障调用
mem_fence()
) - 但肯定还有更多,因为它单独存在?
最佳答案
试着把它说得更清楚(希望如此),
mem_fence()
waits until all reads/writes to local and/or global memory made by the calling work-item prior to mem_fence() are visible to all threads in the work-group.
关于opencl - 在 OpenCL 中,与 barrier() 相比,mem_fence() 做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7673990/
不像 barrier() (我想我明白了),mem_fence()不会影响工作组中的所有项目。 OpenCL 规范说(第 6.11.10 节),适用于 mem_fence() : Orders loa
我是一名优秀的程序员,十分优秀!