jcuda.driver
Class CUstream_flags

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

public class CUstream_flags
extends java.lang.Object

Stream creation flags.

Most comments are taken from the CUDA reference manual.

See Also:
JCudaDriver.cuStreamCreate(CUstream, int)

Field Summary
static int CU_STREAM_DEFAULT
          Default stream flag
static int CU_STREAM_NON_BLOCKING
          Stream does not synchronize with stream 0 (the NULL stream)
 
Method Summary
static java.lang.String stringFor(int n)
          Returns the String identifying the given CUstream_flags
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CU_STREAM_DEFAULT

public static final int CU_STREAM_DEFAULT
Default stream flag

See Also:
Constant Field Values

CU_STREAM_NON_BLOCKING

public static final int CU_STREAM_NON_BLOCKING
Stream does not synchronize with stream 0 (the NULL stream)

See Also:
Constant Field Values
Method Detail

stringFor

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

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