blob: d9d3e1a4d83f068f77b943a94a5a0fb7e0cad616 [file] [log] [blame]
Georgios Pinitas0bc78492019-03-18 20:07:37 +00001/*
Michele Di Giorgio45361932019-12-19 13:53:44 +00002 * Copyright (c) 2019-2020 ARM Limited.
Georgios Pinitas0bc78492019-03-18 20:07:37 +00003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_CORE_KERNEL_DESCRIPTORS_H
25#define ARM_COMPUTE_CORE_KERNEL_DESCRIPTORS_H
Georgios Pinitas0bc78492019-03-18 20:07:37 +000026
Gian Marco Iodiceca1f4602019-07-16 15:46:48 +010027#include "arm_compute/core/Types.h"
28
Georgios Pinitas0bc78492019-03-18 20:07:37 +000029namespace arm_compute
30{
Georgios Pinitas8be91482019-03-26 17:23:28 +000031/** Descriptor for FFT scale kernels */
32struct FFTScaleKernelInfo
Georgios Pinitas0bc78492019-03-18 20:07:37 +000033{
Georgios Pinitas8be91482019-03-26 17:23:28 +000034 float scale{ 0.f }; /**< Axis to perform the kernel on. */
35 bool conjugate{ true }; /**< Flag to conjugate the output/ */
36};
37
38/** Descriptor for FFT digit reverse kernels */
39struct FFTDigitReverseKernelInfo
40{
41 unsigned int axis{ 0 }; /**< Axis to perform the kernel on. */
42 bool conjugate{ false }; /**< Flag to conjugate the output/ */
43};
44
45/** Descriptor used by the FFT core kernels */
46struct FFTRadixStageKernelInfo
47{
48 unsigned int axis{ 0 }; /**< Axis to run the kernel on. */
Georgios Pinitas0bc78492019-03-18 20:07:37 +000049 unsigned int radix{ 0 }; /**< Radix to use. */
50 unsigned int Nx{ 0 }; /**< Nx coefficient. */
51 bool is_first_stage{ false }; /**< Flags if the FFT kernels is the first stage of a decomposed FFT. */
52};
Gian Marco Iodice7026b302019-06-26 17:18:11 +010053
54/** Descriptor used by the GEMM kernels */
55struct GEMMKernelInfo
56{
Michele Di Giorgiob54ba282020-01-14 15:31:55 +000057 unsigned int m{ 0 }; /**< Number of LHS rows*/
58 unsigned int n{ 0 }; /**< Number of RHS columns*/
59 unsigned int k{ 0 }; /**< Number of LHS columns or RHS rows */
60 unsigned int depth_output_gemm3d{ 0 }; /**< Depth of the output tensor in case is reinterpreted as 3D */
61 bool reinterpret_input_as_3d{ false }; /**< Flag used to reinterpret the input as 3D */
62 bool broadcast_bias{ false }; /**< Flag used to broadcast the bias addition */
63 bool fp_mixed_precision{ false }; /**< Flag used to indicate wider accumulators (32 bit instead of 16 for FP16). */
64 ActivationLayerInfo activation_info{}; /**< Activation function to perform after the matrix multiplication */
65 int mult_transpose1xW_width{ 1 }; /**< Multiplication factor for the width of the 1xW transposed block */
66 int mult_interleave4x4_height{ 1 }; /**< Multiplication factor for the height of the 4x4 interleaved block */
67 GEMMLHSMatrixInfo lhs_info{}; /**< LHS matrix information used to retrieve the number of rows processed by each thread */
68 GEMMRHSMatrixInfo rhs_info{}; /**< RHS matrix information used for reshaping the RHS matrix */
69 int32_t a_offset{ 0 }; /**< Offset to be added to each element of the matrix A */
70 int32_t b_offset{ 0 }; /**< Offset to be added to each element of the matrix B */
71 GEMMLowpOutputStageInfo output_stage{}; /**< GEMMLowp output stage information */
Gian Marco Iodice7026b302019-06-26 17:18:11 +010072};
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010073
74/** Descriptor used by the depthwise convolution kernels */
75struct DWCKernelInfo
76{
77 ActivationLayerInfo activation_info{}; /**< Activation function to perform after the depthwise convolution */
78};
79
80/** Descriptor used by the depthwise convolution kernels to retrieve the number of output elements processed by each thread */
81struct DWCWeightsKernelInfo
82{
83 unsigned int n0{ 0 }; /**< Number of columns processed by each thread */
84};
Sang-Hoon Park62eeb532019-10-29 13:13:19 +000085
86/** Descriptor used by the softmax kernels */
87struct SoftmaxKernelInfo
88{
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000089 float beta{ 1.f }; /**< A scaling factor for the exponent with default value 1.0 */
90 bool is_log{ false }; /**< Flag used to perform Log Softmax operation */
91 DataType input_data_type{ DataType::UNKNOWN }; /**< Input tensor data type */
Sang-Hoon Park62eeb532019-10-29 13:13:19 +000092};
Michele Di Giorgio45361932019-12-19 13:53:44 +000093
94/** Descriptor used by the direct convolution layer output stage kernels */
95struct DirectConvolutionLayerOutputStageKernelInfo
96{
97 int32_t result_fixedpoint_multiplier{ 0 }; /**< Result output stage multiplier used for quantizing */
98 int32_t result_shift{ 0 }; /**< Result output stage shift used for quantizing */
99 int32_t result_offset_after_shift{ 0 }; /**< Result offset used for quantizing */
100 DataType output_data_type{ DataType::UNKNOWN }; /**< Output tensor data type to use if the output is not initialized */
101};
Georgios Pinitas55a687d2020-01-30 12:00:23 +0000102
103struct InstanceNormalizationLayerKernelInfo
104{
105 /** Default constructor */
106 InstanceNormalizationLayerKernelInfo()
107 : InstanceNormalizationLayerKernelInfo(1.f, 0.f, 1e-12, true)
108 {
109 }
110 /** Constructor
111 *
112 * @param[in] gamma The scale scalar value applied to the normalized tensor.
113 * @param[in] beta The offset scalar value applied to the normalized tensor
114 * @param[in] epsilon Lower bound value for the normalization.
115 * @param[in] use_mixed_precision Use mixed precision in case of FP16 execution.
116 */
117 InstanceNormalizationLayerKernelInfo(float gamma, float beta, float epsilon, bool use_mixed_precision)
118 : gamma(gamma), beta(beta), epsilon(epsilon), use_mixed_precision(use_mixed_precision)
119 {
120 }
121
122 float gamma; /**< The scale scalar value applied to the normalized tensor. Defaults to 1.0 */
123 float beta; /**< The offset scalar value applied to the normalized tensor. Defaults to 0.0 */
124 float epsilon; /**< Lower bound value for the normalization. Defaults to 1e-12 */
125 bool use_mixed_precision; /**< Use mixed precision in case of FP16 execution. Defaults to true */
126};
Michele Di Giorgioa602f032020-03-12 19:34:33 +0000127
128struct GEMMLowpReductionKernelInfo
129{
130 /** Default constructor */
131 GEMMLowpReductionKernelInfo() = default;
132 /** Constructor
133 *
134 * @param[in] k Number of matrix columns/rows.
135 * @param[in] is_reshaped True if the input tensor has been reshaped.
136 * @param[in] scalar Scalar value to multiply each reduced column/row by.
137 * @param[in] mul_by_scalar True if each column/row reduction has to be multiplied by a scalar value.
138 */
139 GEMMLowpReductionKernelInfo(int32_t k, bool is_reshaped, int32_t scalar, bool mul_by_scalar)
140 : k(k), is_reshaped(is_reshaped), scalar(scalar), mul_by_scalar(mul_by_scalar)
141 {
142 }
143
144 int32_t k{ 0 }; /**< Number of matrix columns/rows */
145 bool is_reshaped{ false }; /**< True if the input tensor has been reshaped */
146 int32_t scalar{ 0 }; /**< Scalar value to multiply each reduced column/row by */
147 bool mul_by_scalar{ false }; /**< True if each column/row reduction has to be multiplied by a scalar value */
148};
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000149} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000150#endif /* ARM_COMPUTE_CORE_KERNEL_DESCRIPTORS_H */