Uses of Annotation Type
com.aparapi.annotation.Experimental

Packages that use Experimental
Package
Description
 
 
  • Uses of Experimental in com.aparapi

    Methods in com.aparapi with annotations of type Experimental
    Modifier and Type
    Method
    Description
    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
    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.
  • Uses of Experimental in com.aparapi.internal.jni

    Fields in com.aparapi.internal.jni with annotations of type Experimental
    Modifier and Type
    Field
    Description
    protected static final int
    KernelRunnerJNI.ARG_CONSTANT
    This 'bit' indicates that a particular KernelArg resides in constant memory in the generated OpenCL code.
    protected static final int
    KernelRunnerJNI.ARG_GLOBAL
    This 'bit' indicates that a particular KernelArg resides in global memory in the generated OpenCL code.
    protected static final int
    KernelRunnerJNI.ARG_LOCAL
    This 'bit' indicates that a particular KernelArg resides in local memory in the generated OpenCL code.