[][src]Struct tensorflow_proto::tensorflow::TraceOpts

pub struct TraceOpts {
    pub duration: f64,
    pub use_step_profiler: bool,
    pub use_kernel_profiler: bool,
    pub use_extended_profiler: bool,
    pub use_gpu_profiler: bool,
    pub use_sample_profiler: bool,
}

Fields

duration: f64

Length of the trace to be taken, in seconds.

use_step_profiler: bool

If true, capture step profile locally in each worker. Currently unimplemented.

use_kernel_profiler: bool

If true, capture kernel events from each worker.

use_extended_profiler: bool

If true, capture extended profiling events from TensorFlow process.

use_gpu_profiler: bool

If true, capture GPU profiling events locally on each machine. Currently unimplemented.

use_sample_profiler: bool

If true, collect sampled profile events. Currently unimplemented.

Trait Implementations

impl Clone for TraceOpts[src]

impl Debug for TraceOpts[src]

impl Default for TraceOpts[src]

impl Message for TraceOpts[src]

impl PartialEq<TraceOpts> for TraceOpts[src]

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