[][src]Struct tensorflow_proto::tensorflow::op_performance::OpMemory

pub struct OpMemory {
    pub output_memory: Vec<i64>,
    pub temp_memory: i64,
    pub persistent_memory: i64,
    pub device_temp_memory: i64,
    pub device_persistent_memory: i64,
}

Memory usage data for a tensorflow operation.

Fields

output_memory: Vec<i64>

The output information may have memory usage and output shapes.

temp_memory: i64

Temp and persistent memory allocated by this node.

persistent_memory: i64device_temp_memory: i64
👎 Deprecated
device_persistent_memory: i64
👎 Deprecated

Trait Implementations

impl Clone for OpMemory[src]

impl Debug for OpMemory[src]

impl Default for OpMemory[src]

impl Message for OpMemory[src]

impl PartialEq<OpMemory> for OpMemory[src]

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