Intel(R) Math Kernel Library for Deep Neural Networks (Intel(R) MKL-DNN)
0.21.0
Performance library for Deep Learning
|
A descriptor of a convolution operation. More...
#include <mkldnn_types.h>
Public Attributes | |
mkldnn_primitive_kind_t | primitive_kind |
The kind of primitive. More... | |
mkldnn_prop_kind_t | prop_kind |
The kind of propagation. More... | |
mkldnn_alg_kind_t | alg_kind |
The kind of the convolution algorithm. More... | |
mkldnn_memory_desc_t | src_desc |
Source memory descriptor. More... | |
mkldnn_memory_desc_t | diff_src_desc |
Source gradient memory descriptor. More... | |
mkldnn_memory_desc_t | weights_desc |
Weights memory descriptor. More... | |
mkldnn_memory_desc_t | diff_weights_desc |
Weights gradient memory descriptor. More... | |
mkldnn_memory_desc_t | bias_desc |
Bias memory descriptor. More... | |
mkldnn_memory_desc_t | diff_bias_desc |
Bias gradient memory descriptor. More... | |
mkldnn_memory_desc_t | dst_desc |
Destination memory descriptor. More... | |
mkldnn_memory_desc_t | diff_dst_desc |
Destination gradient memory descriptor. More... | |
mkldnn_dims_t | strides |
Convolution strides in each spatial dimension. More... | |
mkldnn_dims_t | dilates |
Convolution dilates in each spatial dimension. More... | |
mkldnn_dims_t | padding [2] |
Padding in each spatial dimension. More... | |
mkldnn_padding_kind_t | padding_kind |
The kind of padding to use. More... | |
mkldnn_data_type_t | accum_data_type |
The accumulator data type. More... | |
A descriptor of a convolution operation.
mkldnn_primitive_kind_t mkldnn_convolution_desc_t::primitive_kind |
The kind of primitive.
Used for self-identifying the primitive descriptor. Must be mkldnn_convolution.
mkldnn_prop_kind_t mkldnn_convolution_desc_t::prop_kind |
The kind of propagation.
Possible values: mkldnn_forward_training, mkldnn_forward_inference, mkldnn_backward_data, mkldnn_backward_weights, and mkldnn_backward_bias.
mkldnn_alg_kind_t mkldnn_convolution_desc_t::alg_kind |
The kind of the convolution algorithm.
Possible values: mkldnn_convolution_direct.
mkldnn_memory_desc_t mkldnn_convolution_desc_t::src_desc |
Source memory descriptor.
mkldnn_memory_desc_t mkldnn_convolution_desc_t::diff_src_desc |
Source gradient memory descriptor.
mkldnn_memory_desc_t mkldnn_convolution_desc_t::weights_desc |
Weights memory descriptor.
mkldnn_memory_desc_t mkldnn_convolution_desc_t::diff_weights_desc |
Weights gradient memory descriptor.
mkldnn_memory_desc_t mkldnn_convolution_desc_t::bias_desc |
Bias memory descriptor.
mkldnn_memory_desc_t mkldnn_convolution_desc_t::diff_bias_desc |
Bias gradient memory descriptor.
mkldnn_memory_desc_t mkldnn_convolution_desc_t::dst_desc |
Destination memory descriptor.
mkldnn_memory_desc_t mkldnn_convolution_desc_t::diff_dst_desc |
Destination gradient memory descriptor.
mkldnn_dims_t mkldnn_convolution_desc_t::strides |
Convolution strides in each spatial dimension.
mkldnn_dims_t mkldnn_convolution_desc_t::dilates |
Convolution dilates in each spatial dimension.
mkldnn_dims_t mkldnn_convolution_desc_t::padding[2] |
Padding in each spatial dimension.
padding[0] is a padding in the beginning (padding_l
), padding[1] is a padding in the end (padding_r
).
mkldnn_padding_kind_t mkldnn_convolution_desc_t::padding_kind |
The kind of padding to use.
mkldnn_data_type_t mkldnn_convolution_desc_t::accum_data_type |
The accumulator data type.
Initialized automatically.