View Source Evision.CUDA.Event (Evision v0.1.34)
Summary
Types
@type t() :: %Evision.CUDA.Event{ref: reference()}
Type that represents an CUDA.Event
struct.
ref.
reference()
The underlying erlang resource variable.
Functions
elapsedTime
Positional Arguments
- start:
Evision.CUDA.Event.t()
- end_:
Evision.CUDA.Event.t()
Return
- retval:
float
Python prototype (for reference only):
elapsedTime(start, end_) -> retval
Event
Keyword Arguments
- flags:
Event_CreateFlags
.
Return
- self:
Evision.CUDA.Event.t()
Python prototype (for reference only):
Event([, flags]) -> <cuda_Event object>
Event
Keyword Arguments
- flags:
Event_CreateFlags
.
Return
- self:
Evision.CUDA.Event.t()
Python prototype (for reference only):
Event([, flags]) -> <cuda_Event object>
queryIfComplete
Positional Arguments
- self:
Evision.CUDA.Event.t()
Return
- retval:
bool
Python prototype (for reference only):
queryIfComplete() -> retval
record
Positional Arguments
- self:
Evision.CUDA.Event.t()
Keyword Arguments
- stream:
Evision.CUDA.Stream.t()
.
Python prototype (for reference only):
record([, stream]) -> None
record
Positional Arguments
- self:
Evision.CUDA.Event.t()
Keyword Arguments
- stream:
Evision.CUDA.Stream.t()
.
Python prototype (for reference only):
record([, stream]) -> None
waitForCompletion
Positional Arguments
- self:
Evision.CUDA.Event.t()
Python prototype (for reference only):
waitForCompletion() -> None