[][src]Struct tensorflow_proto::xla::ScatterDimensionNumbers

pub struct ScatterDimensionNumbers {
    pub update_window_dims: Vec<i64>,
    pub inserted_window_dims: Vec<i64>,
    pub scatter_dims_to_operand_dims: Vec<i64>,
    pub index_vector_dim: i64,
}

Describes the dimension numbers for a scatter operation.

All the fields are similar to the corresponding fields in GatherDimensionNumbers. Differences are noted below.

Fields

update_window_dims: Vec<i64>

The set of dimensions in the updates shape that are window dimensions.

inserted_window_dims: Vec<i64>

The set of window dimensions that must be inserted into the updates shape.

scatter_dims_to_operand_dims: Vec<i64>index_vector_dim: i64

Trait Implementations

impl Clone for ScatterDimensionNumbers[src]

impl Debug for ScatterDimensionNumbers[src]

impl Default for ScatterDimensionNumbers[src]

impl Message for ScatterDimensionNumbers[src]

impl PartialEq<ScatterDimensionNumbers> for ScatterDimensionNumbers[src]

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