A descriptor of an inner product operation. More...
#include <dnnl_types.h>
Public Attributes | |
dnnl_primitive_kind_t | primitive_kind |
The kind of primitive. More... | |
dnnl_prop_kind_t | prop_kind |
The kind of propagation. More... | |
dnnl_memory_desc_t | src_desc |
Source memory descriptor. | |
dnnl_memory_desc_t | diff_src_desc |
Source gradient memory descriptor. | |
dnnl_memory_desc_t | weights_desc |
Weights memory descriptor. | |
dnnl_memory_desc_t | diff_weights_desc |
Weights gradient memory descriptor. | |
dnnl_memory_desc_t | bias_desc |
Bias memory descriptor. | |
dnnl_memory_desc_t | diff_bias_desc |
Bias gradient memory descriptor. | |
dnnl_memory_desc_t | dst_desc |
Destination memory descriptor. | |
dnnl_memory_desc_t | diff_dst_desc |
Destination gradient memory descriptor. | |
dnnl_data_type_t | accum_data_type |
The accumulator data type. Initialized automatically. | |
A descriptor of an inner product operation.
dnnl_primitive_kind_t dnnl_inner_product_desc_t::primitive_kind |
The kind of primitive.
Used for self-identifying the primitive descriptor. Must be dnnl_inner_product.
dnnl_prop_kind_t dnnl_inner_product_desc_t::prop_kind |
The kind of propagation.
Possible values: dnnl_forward_training, dnnl_forward_inference, dnnl_backward_data, dnnl_backward_weights, and dnnl_backward_bias.