Package | Description |
---|---|
com.aparapi |
Modifier and Type | Method and Description |
---|---|
protected int |
Kernel.getGlobalId()
Determine the globalId of an executing kernel.
|
protected int |
Kernel.getGlobalId(int _dim) |
protected int |
Kernel.getGlobalSize()
Determine the value that was passed to
Kernel.execute(int globalSize) method. |
protected int |
Kernel.getGlobalSize(int _dim) |
protected int |
Kernel.getGroupId()
Determine the groupId of an executing kernel.
|
protected int |
Kernel.getGroupId(int _dim) |
protected int |
Kernel.getLocalId()
Determine the local id of an executing kernel.
|
protected int |
Kernel.getLocalId(int _dim) |
protected int |
Kernel.getLocalSize()
Determine the size of the group that an executing kernel is a member of.
|
protected int |
Kernel.getLocalSize(int _dim) |
protected int |
Kernel.getNumGroups()
Determine the number of groups that will be used to execute a kernel
|
protected int |
Kernel.getNumGroups(int _dim) |
protected int |
Kernel.getPassId()
Determine the passId of an executing kernel.
|
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. |