cuda原子添加可见性

发布于 2024-11-26 04:59:09 字数 101 浏览 2 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(1

紙鸢 2024-12-03 04:59:09

是的,根据定义,原子操作在对同一地址执行原子操作的任何其他线程访问相同值之前就完成并可见。

但是,如果其他线程同时通过非原子访问访问同一地址,则可能会出现竞争条件,因此您仍然必须小心编写正确的并发代码。

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.

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