namespace ngraph::opset1

Overview

namespace opset1 {

// global functions

NGRAPH_API void infer_conv_backprop_auto_padding(
    const Shape& input_data_shape,
    const Shape& filters_shape,
    const Shape& output_shape,
    const Strides& strides,
    const Strides& dilations,
    const op::PadType auto_pad_type,
    const CoordinateDiff& output_padding,
    CoordinateDiff& pads_begin,
    CoordinateDiff& pads_end
    );

} // namespace opset1

Detailed Documentation

Global Functions

NGRAPH_API void infer_conv_backprop_auto_padding(
    const Shape& input_data_shape,
    const Shape& filters_shape,
    const Shape& output_shape,
    const Strides& strides,
    const Strides& dilations,
    const op::PadType auto_pad_type,
    const CoordinateDiff& output_padding,
    CoordinateDiff& pads_begin,
    CoordinateDiff& pads_end
    )

Calculates padding values for ConvolutionBackpropData operator.

Parameters:

input_data_shape

The input data shape.

filters_shape

The filters shape.

output_shape

The output shape defined only for spatial dimentions.

strides

The strides values.

dilations

The dilations values.

auto_pad_type

The automatic padding mode.

output_padding

The output padding values.

pads_begin

The placeholder for paddings at the beginning of axis.

pads_end

The placeholder for paddings at the end of axis.