blob: 4b04bebdeffe66258743a9c38d62fb7ec144c74c [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{
Gian Marco Iodiceca1f4602019-07-16 15:46:48 +010057 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 broadcase the bias addition */
Georgios Pinitasc370c752019-09-12 12:26:11 +010063 bool fp_mixed_precision{ false }; /**< Flag used to indicate wider accumulators (32 bit instead of 16 for FP16). */
Gian Marco Iodiceca1f4602019-07-16 15:46:48 +010064 ActivationLayerInfo activation_info{}; /**< Activation function to perform after the matrix multiplication */
Gian Marco Iodice7026b302019-06-26 17:18:11 +010065};
Gian Marco Iodice9285adb2019-09-05 16:10:27 +010066
67/** Descriptor used by the depthwise convolution kernels */
68struct DWCKernelInfo
69{
70 ActivationLayerInfo activation_info{}; /**< Activation function to perform after the depthwise convolution */
71};
72
73/** Descriptor used by the depthwise convolution kernels to retrieve the number of output elements processed by each thread */
74struct DWCWeightsKernelInfo
75{
76 unsigned int n0{ 0 }; /**< Number of columns processed by each thread */
77};
Sang-Hoon Park62eeb532019-10-29 13:13:19 +000078
79/** Descriptor used by the softmax kernels */
80struct SoftmaxKernelInfo
81{
Sang-Hoon Park0779fec2019-11-13 17:08:12 +000082 float beta{ 1.f }; /**< A scaling factor for the exponent with default value 1.0 */
83 bool is_log{ false }; /**< Flag used to perform Log Softmax operation */
84 DataType input_data_type{ DataType::UNKNOWN }; /**< Input tensor data type */
Sang-Hoon Park62eeb532019-10-29 13:13:19 +000085};
Michele Di Giorgio45361932019-12-19 13:53:44 +000086
87/** Descriptor used by the direct convolution layer output stage kernels */
88struct DirectConvolutionLayerOutputStageKernelInfo
89{
90 int32_t result_fixedpoint_multiplier{ 0 }; /**< Result output stage multiplier used for quantizing */
91 int32_t result_shift{ 0 }; /**< Result output stage shift used for quantizing */
92 int32_t result_offset_after_shift{ 0 }; /**< Result offset used for quantizing */
93 DataType output_data_type{ DataType::UNKNOWN }; /**< Output tensor data type to use if the output is not initialized */
94};
Georgios Pinitas55a687d2020-01-30 12:00:23 +000095
96struct InstanceNormalizationLayerKernelInfo
97{
98 /** Default constructor */
99 InstanceNormalizationLayerKernelInfo()
100 : InstanceNormalizationLayerKernelInfo(1.f, 0.f, 1e-12, true)
101 {
102 }
103 /** Constructor
104 *
105 * @param[in] gamma The scale scalar value applied to the normalized tensor.
106 * @param[in] beta The offset scalar value applied to the normalized tensor
107 * @param[in] epsilon Lower bound value for the normalization.
108 * @param[in] use_mixed_precision Use mixed precision in case of FP16 execution.
109 */
110 InstanceNormalizationLayerKernelInfo(float gamma, float beta, float epsilon, bool use_mixed_precision)
111 : gamma(gamma), beta(beta), epsilon(epsilon), use_mixed_precision(use_mixed_precision)
112 {
113 }
114
115 float gamma; /**< The scale scalar value applied to the normalized tensor. Defaults to 1.0 */
116 float beta; /**< The offset scalar value applied to the normalized tensor. Defaults to 0.0 */
117 float epsilon; /**< Lower bound value for the normalization. Defaults to 1e-12 */
118 bool use_mixed_precision; /**< Use mixed precision in case of FP16 execution. Defaults to true */
119};
Georgios Pinitas0bc78492019-03-18 20:07:37 +0000120} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000121#endif /* ARM_COMPUTE_CORE_KERNEL_DESCRIPTORS_H */