use std::sync::Arc;
use baracuda_cuda_sys::runtime::{cudaEvent_t, runtime, types::cudaEventFlags};
use crate::error::{check, Result};
use crate::stream::Stream;
#[derive(Clone)]
pub struct Event {
inner: Arc<EventInner>,
}
struct EventInner {
handle: cudaEvent_t,
}
unsafe impl Send for EventInner {}
unsafe impl Sync for EventInner {}
impl core::fmt::Debug for EventInner {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("Event")
.field("handle", &self.handle)
.finish_non_exhaustive()
}
}
impl core::fmt::Debug for Event {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
self.inner.fmt(f)
}
}
impl Event {
pub fn new() -> Result<Self> {
Self::with_flags(cudaEventFlags::DEFAULT)
}
pub fn no_timing() -> Result<Self> {
Self::with_flags(cudaEventFlags::DISABLE_TIMING)
}
pub fn with_flags(flags: u32) -> Result<Self> {
let r = runtime()?;
let cu = r.cuda_event_create_with_flags()?;
let mut event: cudaEvent_t = core::ptr::null_mut();
check(unsafe { cu(&mut event, flags) })?;
Ok(Self {
inner: Arc::new(EventInner { handle: event }),
})
}
pub fn record(&self, stream: &Stream) -> Result<()> {
let r = runtime()?;
let cu = r.cuda_event_record()?;
check(unsafe { cu(self.inner.handle, stream.as_raw()) })
}
pub fn synchronize(&self) -> Result<()> {
let r = runtime()?;
let cu = r.cuda_event_synchronize()?;
check(unsafe { cu(self.inner.handle) })
}
pub fn is_complete(&self) -> Result<bool> {
use baracuda_cuda_sys::runtime::cudaError_t;
let r = runtime()?;
let cu = r.cuda_event_query()?;
match unsafe { cu(self.inner.handle) } {
cudaError_t::Success => Ok(true),
cudaError_t::NotReady => Ok(false),
other => Err(crate::error::Error::Status { status: other }),
}
}
pub fn elapsed_time_ms(start: &Event, end: &Event) -> Result<f32> {
let r = runtime()?;
let cu = r.cuda_event_elapsed_time()?;
let mut ms: f32 = 0.0;
check(unsafe { cu(&mut ms, start.inner.handle, end.inner.handle) })?;
Ok(ms)
}
#[inline]
pub fn as_raw(&self) -> cudaEvent_t {
self.inner.handle
}
}
impl Drop for EventInner {
fn drop(&mut self) {
if let Ok(r) = runtime() {
if let Ok(cu) = r.cuda_event_destroy() {
let _ = unsafe { cu(self.handle) };
}
}
}
}