[][src]Struct tensorflow_proto::xla::ReplicaGroup

pub struct ReplicaGroup {
    pub replica_ids: Vec<i64>,
}

Describes the replica groups in a cross replica op (e.g., all-reduce and all-to-all).

Fields

replica_ids: Vec<i64>

The ids of the replicas that belongs to the same group. The ordering of the ids matters in some ops (e.g., all-to-all).

Trait Implementations

impl Clone for ReplicaGroup[src]

impl Debug for ReplicaGroup[src]

impl Default for ReplicaGroup[src]

impl Message for ReplicaGroup[src]

impl PartialEq<ReplicaGroup> for ReplicaGroup[src]

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