[][src]Struct tensorflow_proto::xla::hlo_profile_printer_data::HloInstructionInfo

pub struct HloInstructionInfo {
    pub long_name: String,
    pub short_name: String,
    pub category: String,
    pub flop_count: f32,
    pub transcendental_count: f32,
    pub bytes_accessed: f32,
    pub optimal_seconds: f32,
    pub profile_index: i64,
}

Pretty-printer information about an HloInstruction.

Fields

long_name: Stringshort_name: Stringcategory: Stringflop_count: f32

Metrics computed by HloCostAnalysis.

transcendental_count: f32bytes_accessed: f32optimal_seconds: f32profile_index: i64

The index into the profile counters array for the HloInstruction corresponding to this HloInstructionInfo.

Trait Implementations

impl Clone for HloInstructionInfo[src]

impl Debug for HloInstructionInfo[src]

impl Default for HloInstructionInfo[src]

impl Message for HloInstructionInfo[src]

impl PartialEq<HloInstructionInfo> for HloInstructionInfo[src]

impl StructuralPartialEq for HloInstructionInfo[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.