pub struct WarpStats {
pub kernel_id: u32,
pub active_warps: u32,
pub stalled_warps: u32,
pub utilisation: f32,
}Expand description
Per-kernel warp utilisation statistics gathered after (simulated) execution.
Fields§
§kernel_id: u32Kernel identifier this record belongs to.
active_warps: u32Number of warps actively issuing instructions during the kernel.
stalled_warps: u32Number of warps stalled (waiting on memory / barriers).
utilisation: f32Warp utilisation: active / (active + stalled).
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for WarpStats
impl RefUnwindSafe for WarpStats
impl Send for WarpStats
impl Sync for WarpStats
impl Unpin for WarpStats
impl UnsafeUnpin for WarpStats
impl UnwindSafe for WarpStats
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more