oneAPI Deep Neural Network Library (oneDNN)
Performance library for Deep Learning
1.96.0
dnnl::deconvolution_backward_weights::desc Struct Reference

Descriptor for a deconvolution weights gradient primitive. More...

#include <dnnl.hpp>

Collaboration diagram for dnnl::deconvolution_backward_weights::desc:

Public Member Functions

 desc (algorithm aalgorithm, const memory::desc &src_desc, const memory::desc &diff_weights_desc, const memory::desc &diff_bias_desc, const memory::desc &diff_dst_desc, const memory::dims &strides, const memory::dims &padding_l, const memory::dims &padding_r)
 Constructs a descriptor for a deconvolution weights gradient primitive with bias. More...
 
 desc (algorithm aalgorithm, const memory::desc &src_desc, const memory::desc &diff_weights_desc, const memory::desc &diff_dst_desc, const memory::dims &strides, const memory::dims &padding_l, const memory::dims &padding_r)
 Constructs a descriptor for a deconvolution weights gradient primitive without bias. More...
 
 desc (algorithm aalgorithm, const memory::desc &src_desc, const memory::desc &diff_weights_desc, const memory::desc &diff_bias_desc, const memory::desc &diff_dst_desc, const memory::dims &strides, const memory::dims &dilates, const memory::dims &padding_l, const memory::dims &padding_r)
 Constructs a descriptor for a dilated deconvolution weights gradient primitive with bias. More...
 
 desc (algorithm aalgorithm, const memory::desc &src_desc, const memory::desc &diff_weights_desc, const memory::desc &diff_dst_desc, const memory::dims &strides, const memory::dims &dilates, const memory::dims &padding_l, const memory::dims &padding_r)
 Constructs a descriptor for a dilated deconvolution weights gradient primitive without bias. More...
 

Detailed Description

Descriptor for a deconvolution weights gradient primitive.

Constructor & Destructor Documentation

◆ desc() [1/4]

dnnl::deconvolution_backward_weights::desc::desc ( algorithm  aalgorithm,
const memory::desc src_desc,
const memory::desc diff_weights_desc,
const memory::desc diff_bias_desc,
const memory::desc diff_dst_desc,
const memory::dims strides,
const memory::dims padding_l,
const memory::dims padding_r 
)
inline

Constructs a descriptor for a deconvolution weights gradient primitive with bias.

Note
All the memory descriptors may be initialized with the dnnl::memory::format_tag::any value of format_tag.

Arrays strides, padding_l, and padding_r contain values for spatial dimensions only and hence must have the same number of elements as there are spatial dimensions. The order of values is the same as in the tensor: depth (for 3D tensors), height (for 3D and 2D tensors), and width.

Parameters
aalgorithmDeconvolution algorithm. Possible values are dnnl::algorithm::deconvolution_direct, and dnnl::algorithm::deconvolution_winograd.
src_descSource memory descriptor.
diff_weights_descDiff weights memory descriptor.
diff_bias_descDiff bias memory descriptor. Passing zero memory descriptor disables the bias term.
diff_dst_descDiff destination memory descriptor.
stridesStrides for each spatial dimension.
padding_lVector of padding values for low indices for each spatial dimension ([[front,] top,] left).
padding_rVector of padding values for high indices for each spatial dimension ([[back,] bottom,] right).

◆ desc() [2/4]

dnnl::deconvolution_backward_weights::desc::desc ( algorithm  aalgorithm,
const memory::desc src_desc,
const memory::desc diff_weights_desc,
const memory::desc diff_dst_desc,
const memory::dims strides,
const memory::dims padding_l,
const memory::dims padding_r 
)
inline

Constructs a descriptor for a deconvolution weights gradient primitive without bias.

Note
All the memory descriptors may be initialized with the dnnl::memory::format_tag::any value of format_tag.

Arrays strides, padding_l, and padding_r contain values for spatial dimensions only and hence must have the same number of elements as there are spatial dimensions. The order of values is the same as in the tensor: depth (for 3D tensors), height (for 3D and 2D tensors), and width.

Parameters
aalgorithmDeconvolution algorithm. Possible values are dnnl::algorithm::deconvolution_direct, and dnnl::algorithm::deconvolution_winograd.
src_descSource memory descriptor.
diff_weights_descDiff weights memory descriptor.
diff_dst_descDiff destination memory descriptor.
stridesStrides for each spatial dimension.
padding_lVector of padding values for low indices for each spatial dimension ([[front,] top,] left).
padding_rVector of padding values for high indices for each spatial dimension ([[back,] bottom,] right).

◆ desc() [3/4]

dnnl::deconvolution_backward_weights::desc::desc ( algorithm  aalgorithm,
const memory::desc src_desc,
const memory::desc diff_weights_desc,
const memory::desc diff_bias_desc,
const memory::desc diff_dst_desc,
const memory::dims strides,
const memory::dims dilates,
const memory::dims padding_l,
const memory::dims padding_r 
)
inline

Constructs a descriptor for a dilated deconvolution weights gradient primitive with bias.

Note
All the memory descriptors may be initialized with the dnnl::memory::format_tag::any value of format_tag.

Arrays strides, dilates, padding_l, and padding_r contain values for spatial dimensions only and hence must have the same number of elements as there are spatial dimensions. The order of values is the same as in the tensor: depth (for 3D tensors), height (for 3D and 2D tensors), and width.

Parameters
aalgorithmDeconvolution algorithm. Possible values are dnnl::algorithm::deconvolution_direct, and dnnl::algorithm::deconvolution_winograd.
src_descSource memory descriptor.
diff_weights_descDiff weights memory descriptor.
diff_bias_descDiff bias memory descriptor. Passing zero memory descriptor disables the bias term.
diff_dst_descDiff destination memory descriptor.
stridesStrides for each spatial dimension.
dilatesDilations for each spatial dimension. A zero value means no dilation in the corresponding dimension.
padding_lVector of padding values for low indices for each spatial dimension ([[front,] top,] left).
padding_rVector of padding values for high indices for each spatial dimension ([[back,] bottom,] right).

◆ desc() [4/4]

dnnl::deconvolution_backward_weights::desc::desc ( algorithm  aalgorithm,
const memory::desc src_desc,
const memory::desc diff_weights_desc,
const memory::desc diff_dst_desc,
const memory::dims strides,
const memory::dims dilates,
const memory::dims padding_l,
const memory::dims padding_r 
)
inline

Constructs a descriptor for a dilated deconvolution weights gradient primitive without bias.

Note
All the memory descriptors may be initialized with the dnnl::memory::format_tag::any value of format_tag.

Arrays strides, dilates, padding_l, and padding_r contain values for spatial dimensions only and hence must have the same number of elements as there are spatial dimensions. The order of values is the same as in the tensor: depth (for 3D tensors), height (for 3D and 2D tensors), and width.

Parameters
aalgorithmDeconvolution algorithm. Possible values are dnnl::algorithm::deconvolution_direct, and dnnl::algorithm::deconvolution_winograd.
src_descSource memory descriptor.
diff_weights_descDiff weights memory descriptor.
diff_dst_descDiff destination memory descriptor.
stridesStrides for each spatial dimension.
dilatesDilations for each spatial dimension. A zero value means no dilation in the corresponding dimension.
padding_lVector of padding values for low indices for each spatial dimension ([[front,] top,] left).
padding_rVector of padding values for high indices for each spatial dimension ([[back,] bottom,] right).

The documentation for this struct was generated from the following file: