Descriptor for a convolution forward propagation primitive.
More...
#include <dnnl.hpp>
|
| desc (prop_kind aprop_kind, algorithm aalgorithm, const memory::desc &src_desc, const memory::desc &weights_desc, const memory::desc &bias_desc, const memory::desc &dst_desc, const memory::dims &strides, const memory::dims &padding_l, const memory::dims &padding_r) |
| Constructs a descriptor for a convolution forward propagation primitive with bias. More...
|
|
| desc (prop_kind aprop_kind, algorithm aalgorithm, const memory::desc &src_desc, const memory::desc &weights_desc, const memory::desc &dst_desc, const memory::dims &strides, const memory::dims &padding_l, const memory::dims &padding_r) |
| Constructs a descriptor for a convolution forward propagation primitive without bias. More...
|
|
| desc (prop_kind aprop_kind, algorithm aalgorithm, const memory::desc &src_desc, const memory::desc &weights_desc, const memory::desc &bias_desc, const memory::desc &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 convolution forward propagation primitive with bias. More...
|
|
| desc (prop_kind aprop_kind, algorithm aalgorithm, const memory::desc &src_desc, const memory::desc &weights_desc, const memory::desc &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 convolution forward propagation primitive without bias. More...
|
|
◆ desc() [1/4]
Constructs a descriptor for a convolution forward propagation 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
-
◆ desc() [2/4]
Constructs a descriptor for a convolution forward propagation 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
-
◆ desc() [3/4]
Constructs a descriptor for a dilated convolution forward propagation 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
-
◆ desc() [4/4]
Constructs a descriptor for a dilated convolution forward propagation 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
-
The documentation for this struct was generated from the following file: