protected void |
Kernel.globalBarrier() |
Wait for all kernels in the current work group to rendezvous at this call before continuing execution.
It will also enforce memory ordering, such that modifications made by each thread in the work-group, to the memory,
before entering into this barrier call will be visible by all threads leaving the barrier.
|
protected void |
Kernel.localBarrier() |
Wait for all kernels in the current work group to rendezvous at this call before continuing execution.
It will also enforce memory ordering, such that modifications made by each thread in the work-group, to the memory,
before entering into this barrier call will be visible by all threads leaving the barrier.
|
protected void |
Kernel.localGlobalBarrier() |
Wait for all kernels in the current work group to rendezvous at this call before continuing execution.
It will also enforce memory ordering, such that modifications made by each thread in the work-group, to the memory,
before entering into this barrier call will be visible by all threads leaving the barrier.
|