jcuda.driver
Class CUevent_flags

java.lang.Object
  extended by jcuda.driver.CUevent_flags

public class CUevent_flags
extends java.lang.Object

Event creation flags.

Most comments are taken from the CUDA reference manual.

See Also:
JCudaDriver.cuEventCreate(CUevent, int)

Field Summary
static int CU_EVENT_BLOCKING_SYNC
          Event uses blocking synchronization
static int CU_EVENT_DEFAULT
          Default event flag
static int CU_EVENT_DISABLE_TIMING
          Event will not record timing data
static int CU_EVENT_INTERPROCESS
          Event is suitable for interprocess use.
 
Method Summary
static java.lang.String stringFor(int n)
          Returns the String identifying the given CUevent_flags
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CU_EVENT_DEFAULT

public static final int CU_EVENT_DEFAULT
Default event flag

See Also:
Constant Field Values

CU_EVENT_BLOCKING_SYNC

public static final int CU_EVENT_BLOCKING_SYNC
Event uses blocking synchronization

See Also:
Constant Field Values

CU_EVENT_DISABLE_TIMING

public static final int CU_EVENT_DISABLE_TIMING
Event will not record timing data

See Also:
Constant Field Values

CU_EVENT_INTERPROCESS

public static final int CU_EVENT_INTERPROCESS
Event is suitable for interprocess use. CU_EVENT_DISABLE_TIMING must be set

See Also:
Constant Field Values
Method Detail

stringFor

public static java.lang.String stringFor(int n)
Returns the String identifying the given CUevent_flags

Parameters:
n - The CUevent_flags
Returns:
The String identifying the given CUevent_flags