[][src]Struct halide_runtime::runtime::halide_profiler_pipeline_stats

#[repr(C)]pub struct halide_profiler_pipeline_stats {
    pub time: u64,
    pub memory_current: u64,
    pub memory_peak: u64,
    pub memory_total: u64,
    pub active_threads_numerator: u64,
    pub active_threads_denominator: u64,
    pub name: *const c_char,
    pub funcs: *mut halide_profiler_func_stats,
    pub next: *mut c_void,
    pub num_funcs: c_int,
    pub first_func_id: c_int,
    pub runs: c_int,
    pub samples: c_int,
    pub num_allocs: c_int,
}

Fields

time: u64memory_current: u64memory_peak: u64memory_total: u64active_threads_numerator: u64active_threads_denominator: u64name: *const c_charfuncs: *mut halide_profiler_func_statsnext: *mut c_voidnum_funcs: c_intfirst_func_id: c_intruns: c_intsamples: c_intnum_allocs: c_int

Trait Implementations

impl Clone for halide_profiler_pipeline_stats[src]

impl Copy for halide_profiler_pipeline_stats[src]

impl Debug for halide_profiler_pipeline_stats[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.