Intel® oneAPI Deep Neural Network Developer Guide and Reference
ID
768875
Date
6/30/2025
Public
Abs
AbsBackward
Add
AvgPool
AvgPoolBackward
BatchNormForwardTraining
BatchNormInference
BatchNormTrainingBackward
BiasAdd
BiasAddBackward
Clamp
ClampBackward
Concat
Convolution
ConvolutionBackwardData
ConvolutionBackwardWeights
ConvTranspose
ConvTransposeBackwardData
ConvTransposeBackwardWeights
Dequantize
Divide
DynamicDequantize
DynamicQuantize
Elu
EluBackward
End
Exp
GroupNorm
GELU
GELUBackward
HardSigmoid
HardSigmoidBackward
HardSwish
HardSwishBackward
Interpolate
InterpolateBackward
LayerNorm
LayerNormBackward
LeakyReLU
Log
LogSoftmax
LogSoftmaxBackward
MatMul
Maximum
MaxPool
MaxPoolBackward
Minimum
Mish
MishBackward
Multiply
Pow
PReLU
PReLUBackward
Quantize
Reciprocal
ReduceL1
ReduceL2
ReduceMax
ReduceMean
ReduceMin
ReduceProd
ReduceSum
ReLU
ReLUBackward
Reorder
Round
Select
Sigmoid
SigmoidBackward
SoftMax
SoftMaxBackward
SoftPlus
SoftPlusBackward
Sqrt
SqrtBackward
Square
SquaredDifference
StaticReshape
StaticTranspose
Subtract
Tanh
TanhBackward
TypeCast
Wildcard
enum dnnl_alg_kind_t
enum dnnl_normalization_flags_t
enum dnnl_primitive_kind_t
enum dnnl_prop_kind_t
enum dnnl_query_t
enum dnnl::normalization_flags
enum dnnl::query
struct dnnl_exec_arg_t
struct dnnl_primitive
struct dnnl_primitive_desc
struct dnnl::primitive
struct dnnl::primitive_desc
struct dnnl::primitive_desc_base
enum dnnl_rnn_direction_t
enum dnnl_rnn_flags_t
enum dnnl::rnn_direction
enum dnnl::rnn_flags
struct dnnl::augru_backward
struct dnnl::augru_forward
struct dnnl::gru_backward
struct dnnl::gru_forward
struct dnnl::lbr_augru_backward
struct dnnl::lbr_augru_forward
struct dnnl::lbr_gru_backward
struct dnnl::lbr_gru_forward
struct dnnl::lstm_backward
struct dnnl::lstm_forward
struct dnnl::rnn_primitive_desc_base
struct dnnl::vanilla_rnn_backward
struct dnnl::vanilla_rnn_forward
Reorder
Overview
A primitive to copy data between two memory objects. More…
// structs
struct dnnl::reorder;
// global functions
dnnl_status_t DNNL_API dnnl_reorder_primitive_desc_create(
dnnl_primitive_desc_t* reorder_primitive_desc,
const_dnnl_memory_desc_t src_desc,
dnnl_engine_t src_engine,
const_dnnl_memory_desc_t dst_desc,
dnnl_engine_t dst_engine,
const_dnnl_primitive_attr_t attr
);
Detailed Documentation
A primitive to copy data between two memory objects.
This primitive is typically used to change the way the data is laid out in memory.
See also:
Reorder in developer guide
Global Functions
dnnl_status_t DNNL_API dnnl_reorder_primitive_desc_create(
dnnl_primitive_desc_t* reorder_primitive_desc,
const_dnnl_memory_desc_t src_desc,
dnnl_engine_t src_engine,
const_dnnl_memory_desc_t dst_desc,
dnnl_engine_t dst_engine,
const_dnnl_primitive_attr_t attr
)
Creates a primitive descriptor for a reorder primitive.
Parameters:
reorder_primitive_desc |
Output primitive descriptor. |
src_desc |
Source memory descriptor. |
src_engine |
Engine on which the source memory object will be located. |
dst_desc |
Destination memory descriptor. |
dst_engine |
Engine on which the destination memory object will be located. |
attr |
Primitive attributes to use (can be NULL). |
Returns:
dnnl_success on success and a status describing the error otherwise.