[][src]Struct tensorflow_proto::xla::HloProfilePrinterData

pub struct HloProfilePrinterData {
    pub computation_infos: Vec<HloComputationInfo>,
    pub profile_counters_size: i64,
    pub extra_metrics: HashMap<String, i64>,
    pub entry_computation: String,
}

Describes how to pretty-print a profile counter array gathered for a specific HloModule.

Fields

computation_infos: Vec<HloComputationInfo>

HloComputationInfos for every HloComputation in the HloModule.

profile_counters_size: i64

The size of the profile counters array we will pretty-print.

extra_metrics: HashMap<String, i64>

Maps extra metric name to the index into the profile counters array.

entry_computation: String

Name of the entry computation.

Trait Implementations

impl Clone for HloProfilePrinterData[src]

impl Debug for HloProfilePrinterData[src]

impl Default for HloProfilePrinterData[src]

impl Message for HloProfilePrinterData[src]

impl PartialEq<HloProfilePrinterData> for HloProfilePrinterData[src]

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