Uses of Annotation Type
com.aparapi.Kernel.OpenCLDelegate
Packages that use Kernel.OpenCLDelegate
-
Uses of Kernel.OpenCLDelegate in com.aparapi
Methods in com.aparapi with annotations of type Kernel.OpenCLDelegateModifier and TypeMethodDescriptionprotected final int
Kernel.getGlobalId()
Determine the globalId of an executing kernel.protected final int
Kernel.getGlobalId
(int _dim) protected final int
Kernel.getGlobalSize()
Determine the value that was passed toKernel.execute(int globalSize)
method.protected final int
Kernel.getGlobalSize
(int _dim) protected final int
Kernel.getGroupId()
Determine the groupId of an executing kernel.protected final int
Kernel.getGroupId
(int _dim) protected final int
Kernel.getLocalId()
Determine the local id of an executing kernel.protected final int
Kernel.getLocalId
(int _dim) protected final int
Kernel.getLocalSize()
Determine the size of the group that an executing kernel is a member of.protected final int
Kernel.getLocalSize
(int _dim) protected final int
Kernel.getNumGroups()
Determine the number of groups that will be used to execute a kernelprotected final int
Kernel.getNumGroups
(int _dim) protected final int
Kernel.getPassId()
Determine the passId of an executing kernel.protected final 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 final 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 final 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.