Struct tfrecord::protos::NodeExecStats[][src]

pub struct NodeExecStats {
    pub node_name: String,
    pub all_start_micros: i64,
    pub op_start_rel_micros: i64,
    pub op_end_rel_micros: i64,
    pub all_end_rel_micros: i64,
    pub memory: Vec<AllocatorMemoryUsed>,
    pub output: Vec<NodeOutput>,
    pub timeline_label: String,
    pub scheduled_micros: i64,
    pub thread_id: u32,
    pub referenced_tensor: Vec<AllocationDescription>,
    pub memory_stats: Option<MemoryStats>,
    pub all_start_nanos: i64,
    pub op_start_rel_nanos: i64,
    pub op_end_rel_nanos: i64,
    pub all_end_rel_nanos: i64,
    pub scheduled_nanos: i64,
}

Time/size stats recorded for a single execution of a graph node.

Fields

node_name: String

TODO(tucker): Use some more compact form of node identity than the full string name. Either all processes should agree on a global id (cost_id?) for each node, or we should use a hash of the name.

all_start_micros: i64op_start_rel_micros: i64op_end_rel_micros: i64all_end_rel_micros: i64memory: Vec<AllocatorMemoryUsed>output: Vec<NodeOutput>timeline_label: Stringscheduled_micros: i64thread_id: u32referenced_tensor: Vec<AllocationDescription>memory_stats: Option<MemoryStats>all_start_nanos: i64op_start_rel_nanos: i64op_end_rel_nanos: i64all_end_rel_nanos: i64scheduled_nanos: i64

Trait Implementations

impl Clone for NodeExecStats[src]

impl Debug for NodeExecStats[src]

impl Default for NodeExecStats[src]

impl<'de> Deserialize<'de> for NodeExecStats[src]

impl Message for NodeExecStats[src]

impl PartialEq<NodeExecStats> for NodeExecStats[src]

impl Serialize for NodeExecStats[src]

impl StructuralPartialEq for NodeExecStats[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,