[][src]Struct tensorflow_proto::tensorflow::tensor_tracer_report::TracedTensorDef

pub struct TracedTensorDef {
    pub name: String,
    pub cache_index: i32,
    pub trace_point_name: String,
    pub is_traced: bool,
    pub explanation: String,
}

Fields

name: String

Name of the tensor as appears in tf graph.

cache_index: i32

Cache index of the tensor. This may be different than topological index.

trace_point_name: String

If trace points are provided, corresponding tracepoint name of the tensor. Trace points are placed on the edges (tensors) in the tensorflow graph, and they force tensor tracer to trace the corresponding tensor. Tracepoints can be added using the programatic interface tensor_tracer.tensor_tracepoint(tensor, trace_point_name) function. This will add a trace point with the given trace_point_name for the given tensor. If a trace_point is provided for the tensor, trace_point name will be used for the rest of the analysis instead of tensor names. One can use trace_point_name's to compare two models with arbitrary tensor names by providing the same trace point name for the tensors that are comparable.

is_traced: bool

Whether the tensor is traced or not.

explanation: String

Detailed explanation why the tensor is traced or not.

Trait Implementations

impl Clone for TracedTensorDef[src]

impl Debug for TracedTensorDef[src]

impl Default for TracedTensorDef[src]

impl Message for TracedTensorDef[src]

impl PartialEq<TracedTensorDef> for TracedTensorDef[src]

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