Module Cuda_api.Event

type t = {
  1. handle : Cuda_types.cu_event Ctypes.structure Ctypes.ptr;
}
val create : unit -> t
val destroy : t -> unit
val record : t -> Stream.t -> unit
val synchronize : t -> unit
val elapsed : start:t -> stop:t -> float