c – CUDA条件线程同步

CUDA编程指南指出了这一点

__syncthreads() is allowed in conditional code but only if the
conditional evaluates identically
across the entire thread block,
otherwise the code execution is likely
to hang or produce unintended side
effects.

因此,如果我需要在一个块上使用条件分支同步线程,其中一些线程可能会或可能不会采用包含__syncthreads()调用的分支,这是否意味着它不起作用?

我想象可能存在各种各样的情况,你可能需要这样做;例如,如果您有二进制掩码并需要有条件地对像素应用某个操作.比方说,if(mask(x,y)!= 0)然后执行包含__syncthreads()的代码,否则什么也不做.怎么办?

解决方法:

如果你需要走这条路,你可以把身体分成两个阶段:

if (condition)
{
    // code before sync
}
__syncthreads();
if (condition) // or remember a flag or whatever
{
    // code after sync
}

或者,您可以使用条件设置禁用某些操作的标志,例如,如果您正在计算增量更新,则可以执行以下操作:

// *ALL* compute a delta update, those threads that would have failed the condition
// simply compute garbage.
// This can include syncthreads
if (condition)
    // apply update
上一篇:多级Java同步


下一篇:linux – 实时文件同步