[][src]Struct tensorflow_proto::tensorflow::MachineConfiguration

pub struct MachineConfiguration {
    pub hostname: String,
    pub serial_identifier: String,
    pub platform_info: Option<PlatformInfo>,
    pub cpu_info: Option<CpuInfo>,
    pub device_info: Vec<Any>,
    pub available_device_info: Vec<AvailableDeviceInfo>,
    pub memory_info: Option<MemoryInfo>,
}

Fields

hostname: String

Host name of machine that ran the benchmark.

serial_identifier: String

Unique serial number of the machine.

platform_info: Option<PlatformInfo>

Additional platform information.

cpu_info: Option<CpuInfo>

CPU Information.

device_info: Vec<Any>

Other devices that are attached and relevant (e.g. GPUInfo).

available_device_info: Vec<AvailableDeviceInfo>

Devices accessible to the test (e.g. as given by list_local_devices).

memory_info: Option<MemoryInfo>

Trait Implementations

impl Clone for MachineConfiguration[src]

impl Debug for MachineConfiguration[src]

impl Default for MachineConfiguration[src]

impl Message for MachineConfiguration[src]

impl PartialEq<MachineConfiguration> for MachineConfiguration[src]

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