cuda原子添加可见性
在 CUDA 中,原子操作的结果对于与执行原子操作的线程位于同一块中的其他线程束的线程是否立即可见?在非原子操作的情况下,我知道在调用 __syncthreads() 之前结果可能不可见。
In CUDA, is the result of atomic operation immediately visible to the threads of other warps in the same block as the one performing the atomic operation? In case of non-atomic operation, I know that the result may not be visible until __syncthreads()
gets called.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,根据定义,原子操作在对同一地址执行原子操作的任何其他线程访问相同值之前就完成并可见。
但是,如果其他线程同时通过非原子访问访问同一地址,则可能会出现竞争条件,因此您仍然必须小心编写正确的并发代码。
Yes, by definition, atomic operations are completed and visible before any other thread executing an atomic operation on the same address accesses the same value.
However, it is possible to have a race condition if other threads access the same address via a non-atomic access at the same time, so you still must be careful to write correct concurrent code.