[][src]Struct tensorflow_proto::xla::ConvolutionDimensionNumbers

pub struct ConvolutionDimensionNumbers {
    pub input_batch_dimension: i64,
    pub input_feature_dimension: i64,
    pub input_spatial_dimensions: Vec<i64>,
    pub kernel_input_feature_dimension: i64,
    pub kernel_output_feature_dimension: i64,
    pub kernel_spatial_dimensions: Vec<i64>,
    pub output_batch_dimension: i64,
    pub output_feature_dimension: i64,
    pub output_spatial_dimensions: Vec<i64>,
}

Fields

input_batch_dimension: i64

The number of the dimension that represents batch in the input.

input_feature_dimension: i64

The number of the dimension that represents features in the input.

input_spatial_dimensions: Vec<i64>

The dimension numbers for the spatial dimensions that the window moves through in the input.

kernel_input_feature_dimension: i64

The number of the dimension that represents input features in the convolutional kernel (rhs).

kernel_output_feature_dimension: i64

The number of the dimension that represents output features in the convolutional kernel (rhs).

kernel_spatial_dimensions: Vec<i64>

The dimension numbers for the spatial dimensions that the window moves through in the kernel (rhs). window.strides(0) is the stride in the kernel_spatial_dimensions(0) dimension.

output_batch_dimension: i64

The number of the dimension that represents batch in the output.

output_feature_dimension: i64

The number of the dimension that represents features in the output.

output_spatial_dimensions: Vec<i64>

The dimension numbers for the spatial dimensions that the window moves through in the output.

Trait Implementations

impl Clone for ConvolutionDimensionNumbers[src]

impl Debug for ConvolutionDimensionNumbers[src]

impl Default for ConvolutionDimensionNumbers[src]

impl Message for ConvolutionDimensionNumbers[src]

impl PartialEq<ConvolutionDimensionNumbers> for ConvolutionDimensionNumbers[src]

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