mxnet
Classes | Functions
Dnnl_api_softmax_v2
Collaboration diagram for Dnnl_api_softmax_v2:

Classes

struct  dnnl_softmax_v2_desc_t
 A descriptor of a Softmax operation. More...
 

Functions

dnnl_status_t DNNL_API dnnl_softmax_v2_forward_desc_init (dnnl_softmax_v2_desc_t *softmax_desc, dnnl_prop_kind_t prop_kind, dnnl_alg_kind_t alg_kind, const dnnl_memory_desc_t *src_desc, const dnnl_memory_desc_t *dst_desc, int softmax_axis)
 
dnnl_status_t DNNL_API dnnl_softmax_v2_backward_desc_init (dnnl_softmax_v2_desc_t *softmax_desc, dnnl_alg_kind_t alg_kind, const dnnl_memory_desc_t *diff_src_desc, const dnnl_memory_desc_t *diff_dst_desc, const dnnl_memory_desc_t *dst_desc, int softmax_axis)
 

Detailed Description

Function Documentation

◆ dnnl_softmax_v2_backward_desc_init()

dnnl_status_t DNNL_API dnnl_softmax_v2_backward_desc_init ( dnnl_softmax_v2_desc_t softmax_desc,
dnnl_alg_kind_t  alg_kind,
const dnnl_memory_desc_t diff_src_desc,
const dnnl_memory_desc_t diff_dst_desc,
const dnnl_memory_desc_t dst_desc,
int  softmax_axis 
)

Initializes a descriptor for softmax v2 backward propagation primitive.

Parameters
softmax_descOutput descriptor for a softmax primitive.
alg_kindSoftmax algorithm kind: either dnnl_softmax_accurate, or dnnl_softmax_log.
diff_src_descDiff source memory descriptor.
diff_dst_descDiff destination memory descriptor.
dst_descDestination memory descriptor.
softmax_axisAxis over which softmax is computed.
Returns
dnnl_success on success and a status describing the error otherwise.

◆ dnnl_softmax_v2_forward_desc_init()

dnnl_status_t DNNL_API dnnl_softmax_v2_forward_desc_init ( dnnl_softmax_v2_desc_t softmax_desc,
dnnl_prop_kind_t  prop_kind,
dnnl_alg_kind_t  alg_kind,
const dnnl_memory_desc_t src_desc,
const dnnl_memory_desc_t dst_desc,
int  softmax_axis 
)

Initializes a descriptor for softmax v2 forward propagation primitive.

Parameters
softmax_descOutput descriptor for a softmax primitive.
prop_kindPropagation kind. Possible values are dnnl_forward_training and dnnl_forward_inference.
alg_kindSoftmax algorithm kind: either dnnl_softmax_accurate, or dnnl_softmax_log.
src_descSource memory descriptor.
dst_descDestination memory descriptor.
softmax_axisAxis over which softmax is computed.
Returns
dnnl_success on success and a status describing the error otherwise.