jcuda.runtime
Class cudaEvent_t

java.lang.Object
  extended by jcuda.NativePointerObject
      extended by jcuda.runtime.cudaEvent_t

public class cudaEvent_t
extends NativePointerObject

Java port of a cudaEvent_t.

See Also:
JCuda.cudaEventCreate(jcuda.runtime.cudaEvent_t), JCuda.cudaEventDestroy(jcuda.runtime.cudaEvent_t), JCuda.cudaEventElapsedTime(float[], jcuda.runtime.cudaEvent_t, jcuda.runtime.cudaEvent_t), JCuda.cudaEventQuery(jcuda.runtime.cudaEvent_t), JCuda.cudaEventRecord(jcuda.runtime.cudaEvent_t, jcuda.runtime.cudaStream_t), JCuda.cudaEventSynchronize(jcuda.runtime.cudaEvent_t)

Constructor Summary
cudaEvent_t()
          Creates a new, uninitialized cudaEvent_t
cudaEvent_t(CUevent event)
          Creates a cudaEvent_t for the given CUevent.
 
Method Summary
 java.lang.String toString()
          Returns a String representation of this object.
 
Methods inherited from class jcuda.NativePointerObject
equals, hashCode
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

cudaEvent_t

public cudaEvent_t()
Creates a new, uninitialized cudaEvent_t


cudaEvent_t

public cudaEvent_t(CUevent event)
Creates a cudaEvent_t for the given CUevent. This corresponds to casting a CUevent to a cudaEvent_t.

Parameters:
event - The other event
Method Detail

toString

public java.lang.String toString()
Returns a String representation of this object.

Overrides:
toString in class NativePointerObject
Returns:
A String representation of this object.