Uses of Class
jcuda.runtime.cudaEvent_t

Packages that use cudaEvent_t
jcuda.runtime Contains the classes related to the JCuda runtime API. 
 

Uses of cudaEvent_t in jcuda.runtime
 

Methods in jcuda.runtime with parameters of type cudaEvent_t
static int JCuda.cudaEventCreate(cudaEvent_t event)
          Creates an event object.
static int JCuda.cudaEventCreateWithFlags(cudaEvent_t event, int flags)
          Creates an event object with the specified flags.
static int JCuda.cudaEventDestroy(cudaEvent_t event)
          Destroys an event object.
static int JCuda.cudaEventElapsedTime(float[] ms, cudaEvent_t start, cudaEvent_t end)
          Computes the elapsed time between events.
static int JCuda.cudaEventQuery(cudaEvent_t event)
          Queries an event's status.
static int JCuda.cudaEventRecord(cudaEvent_t event, cudaStream_t stream)
          Records an event.
static int JCuda.cudaEventSynchronize(cudaEvent_t event)
          Waits for an event to complete.
static int JCuda.cudaStreamWaitEvent(cudaStream_t stream, cudaEvent_t event, int flags)
          Make a compute stream wait on an event.