[][src]Struct tensorflow_proto::tensorflow::MonitorRequest

pub struct MonitorRequest {
    pub duration_ms: u64,
    pub monitoring_level: i32,
    pub timestamp: bool,
}

Fields

duration_ms: u64

Duration for which to profile between each update.

monitoring_level: i32

Indicates the level at which we want to monitor. Currently, two levels are supported: Level 1: An ultra lightweight mode that captures only some utilization metrics. Level 2: More verbose than level 1. Collects utilization metrics, device information, step time information, etc. Do not use this option if the TPU host is being very heavily used.

timestamp: bool

True to display timestamp in monitoring result.

Trait Implementations

impl Clone for MonitorRequest[src]

impl Debug for MonitorRequest[src]

impl Default for MonitorRequest[src]

impl Message for MonitorRequest[src]

impl PartialEq<MonitorRequest> for MonitorRequest[src]

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