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 intKernel.getGlobalId()Determine the globalId of an executing kernel.protected final intKernel.getGlobalId(int _dim) protected final intKernel.getGlobalSize()Determine the value that was passed toKernel.execute(int globalSize)method.protected final intKernel.getGlobalSize(int _dim) protected final intKernel.getGroupId()Determine the groupId of an executing kernel.protected final intKernel.getGroupId(int _dim) protected final intKernel.getLocalId()Determine the local id of an executing kernel.protected final intKernel.getLocalId(int _dim) protected final intKernel.getLocalSize()Determine the size of the group that an executing kernel is a member of.protected final intKernel.getLocalSize(int _dim) protected final intKernel.getNumGroups()Determine the number of groups that will be used to execute a kernelprotected final intKernel.getNumGroups(int _dim) protected final intKernel.getPassId()Determine the passId of an executing kernel.protected final voidKernel.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 voidKernel.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 voidKernel.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.