pub struct RunReport {
pub fidelity: &'static str,
pub mode: &'static str,
pub note: &'static str,
pub kernel: String,
pub workitems_executed: u64,
pub steps: u64,
pub grid: [u32; 3],
pub workgroup: [u32; 3],
pub wave_size: u32,
pub schedule: SchedulePolicy,
pub barrier_generations: u64,
pub atomics_executed: u64,
}Fields§
§fidelity: &'static str§mode: &'static str§note: &'static str§kernel: String§workitems_executed: u64§steps: u64§grid: [u32; 3]§workgroup: [u32; 3]§wave_size: u32§schedule: SchedulePolicy§barrier_generations: u64§atomics_executed: u64Trait Implementations§
impl Eq for RunReport
impl StructuralPartialEq for RunReport
Auto Trait Implementations§
impl Freeze for RunReport
impl RefUnwindSafe for RunReport
impl Send for RunReport
impl Sync for RunReport
impl Unpin for RunReport
impl UnsafeUnpin for RunReport
impl UnwindSafe for RunReport
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