[][src]Struct tensorflow_proto::xrt::XlaComputationConfig

pub struct XlaComputationConfig {
    pub num_replicas: i32,
    pub num_cores_per_replica: i32,
    pub host_compute_metadata: Option<HostComputeMetadata>,
    pub program_shape: Option<ProgramShapeProto>,
    pub per_core_program_shape: Vec<ProgramShapeProto>,
    pub device_assignment: Option<DeviceAssignment>,
    pub debug_options: Option<DebugOptions>,
}

Options for an XLA compilation.

Fields

num_replicas: i32

The number of replicas the computation will be run on. If this is default (0) it is interpreted as 1.

num_cores_per_replica: i32

The number of "model-parallel" cores per replica. If this is default (0) it is interpreted as 1.

host_compute_metadata: Option<HostComputeMetadata>

Optional metadata about host sends and recvs.

program_shape: Option<ProgramShapeProto>

The arg/result shapes for the whole computation.

per_core_program_shape: Vec<ProgramShapeProto>

The arg/result shapes for each core of a model-parallel computation. per_core_args_and_result_shapes is optional for a single-core computation.

device_assignment: Option<DeviceAssignment>

Describes how replicated computation instances should be assigned to devices. There are num_cores_per_replica computations, and each one will be sent and executed to the set of replica device numbers described in the DeviceAssignment proto.

debug_options: Option<DebugOptions>

The debugging options to be passed to the XLA compilation process.

Trait Implementations

impl Clone for XlaComputationConfig[src]

impl Debug for XlaComputationConfig[src]

impl Default for XlaComputationConfig[src]

impl Message for XlaComputationConfig[src]

impl PartialEq<XlaComputationConfig> for XlaComputationConfig[src]

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