pub struct GraphExecResult {
pub n_launches: usize,
pub elapsed_us: Option<u64>,
}Expand description
Result of executing a compute graph.
Fields§
§n_launches: usizeNumber of kernel launches performed
elapsed_us: Option<u64>Total execution time in microseconds (if timing enabled)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphExecResult
impl RefUnwindSafe for GraphExecResult
impl Send for GraphExecResult
impl Sync for GraphExecResult
impl Unpin for GraphExecResult
impl UnsafeUnpin for GraphExecResult
impl UnwindSafe for GraphExecResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more