blob: ca2cbbc268395e8a2f16d3481b38f07ec496e62e [file] [log] [blame]
Gian Marcoe75a02b2017-11-08 12:24:09 +00001/*
Michele Di Giorgio9c700372020-01-08 11:33:44 +00002 * Copyright (c) 2017-2020 ARM Limited.
Gian Marcoe75a02b2017-11-08 12:24:09 +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_NEGEMMLOWPOUTPUTSTAGE_H
25#define ARM_COMPUTE_NEGEMMLOWPOUTPUTSTAGE_H
Gian Marcoe75a02b2017-11-08 12:24:09 +000026
Michalis Spyrou95abfdd2018-11-28 14:59:47 +000027#include "arm_compute/runtime/NEON/INESimpleFunctionNoBorder.h"
Gian Marcoe75a02b2017-11-08 12:24:09 +000028
29/** This file contains all available output stages for GEMMLowp on NEON.
30 *
31 * In gemmlowp, the "output stage" is the process that takes a final int32 accumulator value (the output of @ref NEGEMMLowpMatrixMultiplyCore),
32 * and processes it to obtain the final ASYMM8 value.
33 *
34 * More information about the GEMMLowp output stage can be found at https://github.com/google/gemmlowp/blob/master/doc/output.md
35 */
36
37namespace arm_compute
38{
39class ITensor;
40
41/** Basic function to execute NEGEMMLowpQuantizeDownInt32ToUint8Scale on NEON.
42 *
43 * NEGEMMLowpQuantizeDownInt32ToUint8Scale depends on 3 parameters: result_offset, result_mult_int, result_shift
44 * The final result is:
45 *
Gian Marco6b77e912017-11-17 09:27:57 +000046 * ((input[i][k] + result_offset) * result_mult_int) >> result_shift
Gian Marcoe75a02b2017-11-08 12:24:09 +000047 *
Gian Marco6b77e912017-11-17 09:27:57 +000048 * In case the bias tensor is provided, the final result is:
49 *
Gian Marco58c57942017-11-28 09:10:03 +000050 * ((input[i][k] + bias[k] + result_offset) * result_mult_int) >> result_shift
Gian Marcoe75a02b2017-11-08 12:24:09 +000051 *
52 * This function calls the following NEON kernels:
53 *
54 * -# @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleKernel
55 *
Gian Marco6b77e912017-11-17 09:27:57 +000056 * @note The function accepts also 2 optional input arguments (min and max) which can be used to implement "rectified linear unit" activation functions
Gian Marco58c57942017-11-28 09:10:03 +000057 * after the result is shifted right by result_shift
Gian Marcoe75a02b2017-11-08 12:24:09 +000058*/
Michalis Spyrou95abfdd2018-11-28 14:59:47 +000059class NEGEMMLowpQuantizeDownInt32ToUint8Scale : public INESimpleFunctionNoBorder
Gian Marcoe75a02b2017-11-08 12:24:09 +000060{
61public:
62 /** Initialise the kernel's inputs, output
Anthony Barbierf202e502017-11-23 18:02:04 +000063 *
64 * @param[in] input Input tensor. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
65 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
66 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
67 * @param[out] output Output tensor. Data type supported: Data type supported: QASYMM8
68 * @param[in] result_offset Offset to be added to each element of the input matrix
69 * @param[in] result_mult_int Value to be multiplied to each element of the input matrix when once the result_offset has been add
70 * @param[in] result_shift Number of bits to shift right the result before converting back to QASYMM8
71 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8
72 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8,
73 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions
74 */
Gian Marco6b77e912017-11-17 09:27:57 +000075 void configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_offset, int result_mult_int, int result_shift, int min = 0, int max = 0);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000076 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpQuantizeDownInt32ToUint8Scale
Anthony Barbierf202e502017-11-23 18:02:04 +000077 *
78 * @param[in] input Input tensor. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
79 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
80 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
81 * @param[in] output Output tensor. Data type supported: Data type supported: QASYMM8
82 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8
83 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8,
84 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions
Gian Marco58c57942017-11-28 09:10:03 +000085 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +000086 * @return a status
Gian Marco58c57942017-11-28 09:10:03 +000087 */
Georgios Pinitas631c41a2017-12-06 11:53:03 +000088 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min = 0, int max = 0);
Gian Marco58c57942017-11-28 09:10:03 +000089};
90
91/** Basic function to execute NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint on NEON.
92 *
93 * NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint depends on 3 parameters:
94 *
95 * result_fixedpoint_multiplier, result_shift, result_offset_after_shift
96 *
97 * The final result is:
98 *
99 * (FixedPointMul(input[i][k], result_fixedpoint_multiplier) >> result_shift) + result_offset_after_shift
100 *
101 * where FixedPointMul(x, y) is the nearest integer to the following
102 * mathematical expression, evaluated without overflow or intermediate rounding:
103 *
104 * (x * y) / 2^31
105 *
106 * For more information: https://github.com/google/gemmlowp/blob/master/public/output_stages.h#L68
107 *
108 * In case the bias tensor is provided, the final result is:
109 *
110 * ((FixedPointMul(input[i][k] + bias[k], result_fixedpoint_multiplier)) >> result_shift) + result_offset_after_shift
111 *
112 * This function calls the following NEON kernels:
113 *
114 * -# @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
115 *
116 * @note The function accepts also 2 optional input arguments (min and max) which can be used to implement "rectified linear unit" activation functions
117 * after the result is shifted right by result_shift
118*/
Michalis Spyrou95abfdd2018-11-28 14:59:47 +0000119class NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint : public INESimpleFunctionNoBorder
Gian Marco58c57942017-11-28 09:10:03 +0000120{
121public:
122 /** Initialise the kernel's inputs, output
123 *
124 * @param[in] input Input tensor. Data type supported: S32
125 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the biases addition is not required.
126 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
127 * @param[out] output Output tensor. Data type supported: Data type supported: QASYMM8
128 * @param[in] result_fixedpoint_multiplier Fixed point value to be multiplied to each element of the input matrix when once the result_offset has been add
129 * @param[in] result_shift Number of bits to shift right the result after the fixed point multiplication
130 * @param[in] result_offset_after_shift Offset to be applied to result before converting it back to QASYMM8
131 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8
132 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8,
133 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions
134 */
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000135 void configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift, int min = 0, int max = 0);
Gian Marco58c57942017-11-28 09:10:03 +0000136 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
137 *
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000138 * @param[in] input Input tensor. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
139 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
140 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
141 * @param[in] output Output tensor. Data type supported: Data type supported: QASYMM8
142 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8
143 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8,
Georgios Pinitas932491f2018-09-21 16:33:15 +0100144 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions
Gian Marco58c57942017-11-28 09:10:03 +0000145 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000146 * @return a status
Anthony Barbierf202e502017-11-23 18:02:04 +0000147 */
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000148 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min = 0, int max = 0);
Gian Marcoe75a02b2017-11-08 12:24:09 +0000149};
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000150/** Basic function to execute NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint on NEON.
151 *
152 * NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint depends on 3 parameters:
153 *
154 * result_fixedpoint_multiplier, result_shift, result_offset_after_shift
155 *
156 * The final result is:
157 *
158 * (FixedPointMul(input[i][k], result_fixedpoint_multiplier) >> result_shift) + result_offset_after_shift
159 *
160 * where FixedPointMul(x, y) is the nearest integer to the following
161 * mathematical expression, evaluated without overflow or intermediate rounding:
162 *
163 * (x * y) / 2^31
164 *
165 * For more information: https://github.com/google/gemmlowp/blob/master/public/output_stages.h#L68
166 *
167 * In case the bias tensor is provided, the final result is:
168 *
169 * ((FixedPointMul(input[i][k] + bias[k], result_fixedpoint_multiplier)) >> result_shift) + result_offset_after_shift
170 *
171 * This function calls the following NEON kernels:
172 *
173 * -# @ref NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
174 *
175 * @note The function accepts also 2 optional input arguments (min and max) which can be used to implement "rectified linear unit" activation functions
176 * after the result is shifted right by result_shift
177*/
178class NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint : public INESimpleFunctionNoBorder
179{
180public:
181 /** Initialise the kernel's inputs, output
182 *
183 * @param[in] input Input tensor. Data type supported: S32
184 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the biases addition is not required.
185 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
186 * @param[out] output Output tensor. Data type supported: Data type supported: QASYMM8_SIGNED
187 * @param[in] result_fixedpoint_multiplier Fixed point value to be multiplied to each element of the input matrix when once the result_offset has been add
188 * @param[in] result_shift Number of bits to shift right the result after the fixed point multiplication
189 * @param[in] result_offset_after_shift Offset to be applied to result before converting it back to QASYMM8_SIGNED
190 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8_SIGNED
191 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8_SIGNED,
192 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions
193 */
194 void configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift, int min = 0, int max = 0);
195 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
196 *
197 * @param[in] input Input tensor. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
198 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
199 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
200 * @param[in] output Output tensor. Data type supported: Data type supported: QASYMM8_SIGNED
201 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8_SIGNED
202 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8_SIGNED,
203 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions
204 *
205 * @return a status
206 */
207 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min = 0, int max = 0);
208};
Gian Marco Iodicebc415af2019-06-13 15:58:32 +0100209/** Basic function to execute NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint on NEON.
210 *
211 * NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint depends on 2 parameters:
212 *
213 * result_fixedpoint_multiplier, result_shift
214 *
215 * The final result is:
216 *
217 * (FixedPointMul(input[i][k], result_fixedpoint_multiplier) >> result_shift)
218 *
219 * where FixedPointMul(x, y) is the nearest integer to the following
220 * mathematical expression, evaluated without overflow or intermediate rounding:
221 *
222 * (x * y) / 2^31
223 *
224 * For more information: https://github.com/google/gemmlowp/blob/master/public/output_stages.h#L68
225 *
226 * In case the bias tensor is provided, the final result is:
227 *
228 * ((FixedPointMul(input[i][k] + bias[k], result_fixedpoint_multiplier)) >> result_shift) + result_offset_after_shift
229 *
230 * This function calls the following NEON kernels:
231 *
232 * -# @ref NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
233 *
234 * @note The function accepts also 2 optional input arguments (min and max) which can be used to implement "rectified linear unit" activation functions
235 * after the result is shifted right by result_shift
236*/
237class NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint : public INESimpleFunctionNoBorder
238{
239public:
240 /** Initialise the kernel's inputs, output
241 *
242 * @param[in] input Input tensor. Data type supported: S32
243 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the biases addition is not required.
244 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
245 * @param[out] output Output tensor. Data type supported: Data type supported: QSYMM16
246 * @param[in] result_fixedpoint_multiplier Fixed point value to be multiplied to each element of the input matrix when once the result_offset has been add
247 * @param[in] result_shift Number of bits to shift right the result after the fixed point multiplication
248 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QSYMM16. Defaults to 0.
249 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QSYMM16.
250 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to 0.
251 */
252 void configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift, int min = 0, int max = 0);
253 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
254 *
255 * @param[in] input Input tensor info. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
256 * @param[in] bias Biases tensor info. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
257 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
258 * @param[in] output Output tensor info. Data type supported: Data type supported: QSYMM16
259 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QSYMM16. Defaults to 0.
260 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QSYMM16,
261 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to 0.
262 *
263 * @return a status
264 */
265 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min = 0, int max = 0);
266};
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000267
268/** Basic function to execute GEMMLowpQuantizeDown kernels on NEON.
269 *
270 * This function calls the following NEON kernels:
271 *
272 * -# @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleKernel
273 * -# @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
274 * -# @ref NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
275 * -# @ref NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
276*/
277class NEGEMMLowpOutputStage : public INESimpleFunctionNoBorder
278{
279public:
280 /** Initialise the kernel's inputs, output
281 *
282 * @param[in] input Input tensor. Data type supported: S32
283 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the biases addition is not required.
284 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
285 * @param[out] output Output tensor. Data type supported: Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM16
286 * @param[in] info GEMMLowp output stage metadata.
287 */
288 void configure(const ITensor *input, const ITensor *bias, ITensor *output, const GEMMLowpOutputStageInfo &info);
289 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpOutputStage
290 *
291 * @param[in] input Input tensor info. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
292 * @param[in] bias Biases tensor info. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
293 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
294 * @param[in] output Output tensor info. Data type supported: Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM16
295 * @param[in] info GEMMLowp output stage metadata.
296 *
297 * @return a status
298 */
299 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, const GEMMLowpOutputStageInfo &info);
300};
Georgios Pinitas041f36d2018-09-18 18:38:37 +0100301} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000302#endif /*ARM_COMPUTE_NEGEMMLOWPOUTPUTSTAGE_H */