blob: cbdc788c0af06343226734a5d1b948067183a4bb [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 *
Luca Foschiani4b869532020-02-13 15:07:36 +000054 * -# @ref NEGEMMLowpQuantizeDownInt32ScaleKernel
Gian Marcoe75a02b2017-11-08 12:24:09 +000055 *
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
Giorgio Arena1856ff72020-02-07 13:46:45 +000071 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8. Defaults to the minimum possible 32-bit signed integer.
Anthony Barbierf202e502017-11-23 18:02:04 +000072 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8,
Giorgio Arena1856ff72020-02-07 13:46:45 +000073 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to the maximum possible 32-bit signed integer.
Anthony Barbierf202e502017-11-23 18:02:04 +000074 */
Luca Foschiani4b869532020-02-13 15:07:36 +000075 ARM_COMPUTE_DEPRECATED_REL(20.05)
Giorgio Arena1856ff72020-02-07 13:46:45 +000076 void configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_offset, int result_mult_int, int result_shift, int min = std::numeric_limits<int32_t>::lowest(),
77 int max = std::numeric_limits<int32_t>::max());
Georgios Pinitasa3b1b462017-11-16 19:24:39 +000078 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpQuantizeDownInt32ToUint8Scale
Anthony Barbierf202e502017-11-23 18:02:04 +000079 *
80 * @param[in] input Input tensor. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
81 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
82 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
83 * @param[in] output Output tensor. Data type supported: Data type supported: QASYMM8
Giorgio Arena1856ff72020-02-07 13:46:45 +000084 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8. Defaults to the minimum possible 32-bit signed integer.
Anthony Barbierf202e502017-11-23 18:02:04 +000085 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8,
Giorgio Arena1856ff72020-02-07 13:46:45 +000086 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to the maximum possible 32-bit signed integer.
Gian Marco58c57942017-11-28 09:10:03 +000087 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +000088 * @return a status
Gian Marco58c57942017-11-28 09:10:03 +000089 */
Luca Foschiani4b869532020-02-13 15:07:36 +000090 ARM_COMPUTE_DEPRECATED_REL(20.05)
Giorgio Arena1856ff72020-02-07 13:46:45 +000091 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min = std::numeric_limits<int32_t>::lowest(), int max = std::numeric_limits<int32_t>::max());
Gian Marco58c57942017-11-28 09:10:03 +000092};
93
94/** Basic function to execute NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint on NEON.
95 *
96 * NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint depends on 3 parameters:
97 *
98 * result_fixedpoint_multiplier, result_shift, result_offset_after_shift
99 *
100 * The final result is:
101 *
102 * (FixedPointMul(input[i][k], result_fixedpoint_multiplier) >> result_shift) + result_offset_after_shift
103 *
104 * where FixedPointMul(x, y) is the nearest integer to the following
105 * mathematical expression, evaluated without overflow or intermediate rounding:
106 *
107 * (x * y) / 2^31
108 *
109 * For more information: https://github.com/google/gemmlowp/blob/master/public/output_stages.h#L68
110 *
111 * In case the bias tensor is provided, the final result is:
112 *
113 * ((FixedPointMul(input[i][k] + bias[k], result_fixedpoint_multiplier)) >> result_shift) + result_offset_after_shift
114 *
115 * This function calls the following NEON kernels:
116 *
117 * -# @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
118 *
119 * @note The function accepts also 2 optional input arguments (min and max) which can be used to implement "rectified linear unit" activation functions
120 * after the result is shifted right by result_shift
121*/
Michalis Spyrou95abfdd2018-11-28 14:59:47 +0000122class NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint : public INESimpleFunctionNoBorder
Gian Marco58c57942017-11-28 09:10:03 +0000123{
124public:
125 /** Initialise the kernel's inputs, output
126 *
127 * @param[in] input Input tensor. Data type supported: S32
128 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the biases addition is not required.
129 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
130 * @param[out] output Output tensor. Data type supported: Data type supported: QASYMM8
131 * @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
132 * @param[in] result_shift Number of bits to shift right the result after the fixed point multiplication
133 * @param[in] result_offset_after_shift Offset to be applied to result before converting it back to QASYMM8
Giorgio Arena1856ff72020-02-07 13:46:45 +0000134 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8. Defaults to the minimum possible 32-bit signed integer.
Gian Marco58c57942017-11-28 09:10:03 +0000135 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000136 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to the maximum possible 32-bit signed integer.
Gian Marco58c57942017-11-28 09:10:03 +0000137 */
Giorgio Arena1856ff72020-02-07 13:46:45 +0000138 void configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
139 int min = std::numeric_limits<int32_t>::lowest(), int max = std::numeric_limits<int32_t>::max());
Gian Marco58c57942017-11-28 09:10:03 +0000140 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
141 *
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000142 * @param[in] input Input tensor. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
143 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
144 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
145 * @param[in] output Output tensor. Data type supported: Data type supported: QASYMM8
Giorgio Arena1856ff72020-02-07 13:46:45 +0000146 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8. Defaults to the minimum possible 32-bit signed integer.
Georgios Pinitasbb081ca2018-11-08 10:22:01 +0000147 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000148 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to the maximum possible 32-bit signed integer.
Gian Marco58c57942017-11-28 09:10:03 +0000149 *
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000150 * @return a status
Anthony Barbierf202e502017-11-23 18:02:04 +0000151 */
Giorgio Arena1856ff72020-02-07 13:46:45 +0000152 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min = std::numeric_limits<int32_t>::lowest(), int max = std::numeric_limits<int32_t>::max());
Gian Marcoe75a02b2017-11-08 12:24:09 +0000153};
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000154/** Basic function to execute NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint on NEON.
155 *
156 * NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint depends on 3 parameters:
157 *
158 * result_fixedpoint_multiplier, result_shift, result_offset_after_shift
159 *
160 * The final result is:
161 *
162 * (FixedPointMul(input[i][k], result_fixedpoint_multiplier) >> result_shift) + result_offset_after_shift
163 *
164 * where FixedPointMul(x, y) is the nearest integer to the following
165 * mathematical expression, evaluated without overflow or intermediate rounding:
166 *
167 * (x * y) / 2^31
168 *
169 * For more information: https://github.com/google/gemmlowp/blob/master/public/output_stages.h#L68
170 *
171 * In case the bias tensor is provided, the final result is:
172 *
173 * ((FixedPointMul(input[i][k] + bias[k], result_fixedpoint_multiplier)) >> result_shift) + result_offset_after_shift
174 *
175 * This function calls the following NEON kernels:
176 *
177 * -# @ref NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
178 *
179 * @note The function accepts also 2 optional input arguments (min and max) which can be used to implement "rectified linear unit" activation functions
180 * after the result is shifted right by result_shift
181*/
182class NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint : public INESimpleFunctionNoBorder
183{
184public:
185 /** Initialise the kernel's inputs, output
186 *
187 * @param[in] input Input tensor. Data type supported: S32
188 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the biases addition is not required.
189 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
190 * @param[out] output Output tensor. Data type supported: Data type supported: QASYMM8_SIGNED
191 * @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
192 * @param[in] result_shift Number of bits to shift right the result after the fixed point multiplication
193 * @param[in] result_offset_after_shift Offset to be applied to result before converting it back to QASYMM8_SIGNED
Giorgio Arena1856ff72020-02-07 13:46:45 +0000194 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8_SIGNED. Defaults to the minimum possible 32-bit signed integer.
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000195 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8_SIGNED,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000196 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to the maximum possible 32-bit signed integer.
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000197 */
Giorgio Arena1856ff72020-02-07 13:46:45 +0000198 void configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift, int result_offset_after_shift,
199 int min = std::numeric_limits<int32_t>::lowest(), int max = std::numeric_limits<int32_t>::max());
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000200 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPoint
201 *
202 * @param[in] input Input tensor. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
203 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
204 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
205 * @param[in] output Output tensor. Data type supported: Data type supported: QASYMM8_SIGNED
Giorgio Arena1856ff72020-02-07 13:46:45 +0000206 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QASYMM8_SIGNED. Defaults to the minimum possible 32-bit signed integer.
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000207 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QASYMM8_SIGNED,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000208 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to the maximum possible 32-bit signed integer.
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000209 *
210 * @return a status
211 */
Giorgio Arena1856ff72020-02-07 13:46:45 +0000212 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min = std::numeric_limits<int32_t>::lowest(), int max = std::numeric_limits<int32_t>::max());
Georgios Pinitas448a81f2019-11-21 14:10:25 +0000213};
Gian Marco Iodicebc415af2019-06-13 15:58:32 +0100214/** Basic function to execute NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint on NEON.
215 *
216 * NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint depends on 2 parameters:
217 *
218 * result_fixedpoint_multiplier, result_shift
219 *
220 * The final result is:
221 *
222 * (FixedPointMul(input[i][k], result_fixedpoint_multiplier) >> result_shift)
223 *
224 * where FixedPointMul(x, y) is the nearest integer to the following
225 * mathematical expression, evaluated without overflow or intermediate rounding:
226 *
227 * (x * y) / 2^31
228 *
229 * For more information: https://github.com/google/gemmlowp/blob/master/public/output_stages.h#L68
230 *
231 * In case the bias tensor is provided, the final result is:
232 *
233 * ((FixedPointMul(input[i][k] + bias[k], result_fixedpoint_multiplier)) >> result_shift) + result_offset_after_shift
234 *
235 * This function calls the following NEON kernels:
236 *
237 * -# @ref NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
238 *
239 * @note The function accepts also 2 optional input arguments (min and max) which can be used to implement "rectified linear unit" activation functions
240 * after the result is shifted right by result_shift
241*/
242class NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPoint : public INESimpleFunctionNoBorder
243{
244public:
245 /** Initialise the kernel's inputs, output
246 *
247 * @param[in] input Input tensor. Data type supported: S32
248 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the biases addition is not required.
249 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
250 * @param[out] output Output tensor. Data type supported: Data type supported: QSYMM16
251 * @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
252 * @param[in] result_shift Number of bits to shift right the result after the fixed point multiplication
Giorgio Arena1856ff72020-02-07 13:46:45 +0000253 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QSYMM16. Defaults to the minimum possible 32-bit signed integer.
Gian Marco Iodicebc415af2019-06-13 15:58:32 +0100254 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QSYMM16.
Giorgio Arena1856ff72020-02-07 13:46:45 +0000255 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to the maximum possible 32-bit signed integer.
Gian Marco Iodicebc415af2019-06-13 15:58:32 +0100256 */
Giorgio Arena1856ff72020-02-07 13:46:45 +0000257 void configure(const ITensor *input, const ITensor *bias, ITensor *output, int result_fixedpoint_multiplier, int result_shift, int min = std::numeric_limits<int32_t>::lowest(),
258 int max = std::numeric_limits<int32_t>::max());
Gian Marco Iodicebc415af2019-06-13 15:58:32 +0100259 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPoint
260 *
261 * @param[in] input Input tensor info. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
262 * @param[in] bias Biases tensor info. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
263 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
264 * @param[in] output Output tensor info. Data type supported: Data type supported: QSYMM16
Giorgio Arena1856ff72020-02-07 13:46:45 +0000265 * @param[in] min (Optional) Min value used to saturate down the output result before converting back to QSYMM16. Defaults to the minimum possible 32-bit signed integer.
Gian Marco Iodicebc415af2019-06-13 15:58:32 +0100266 * @param[in] max (Optional) Max value used to saturate up the output result before converting back to QSYMM16,
Giorgio Arena1856ff72020-02-07 13:46:45 +0000267 * Along with @p min, this value can be used to implement "rectified linear unit" activation functions. Defaults to the maximum possible 32-bit signed integer.
Gian Marco Iodicebc415af2019-06-13 15:58:32 +0100268 *
269 * @return a status
270 */
Giorgio Arena1856ff72020-02-07 13:46:45 +0000271 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, int min = std::numeric_limits<int32_t>::lowest(), int max = std::numeric_limits<int32_t>::max());
Gian Marco Iodicebc415af2019-06-13 15:58:32 +0100272};
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000273
274/** Basic function to execute GEMMLowpQuantizeDown kernels on NEON.
275 *
276 * This function calls the following NEON kernels:
277 *
Luca Foschiani4b869532020-02-13 15:07:36 +0000278 * -# @ref NEGEMMLowpQuantizeDownInt32ScaleKernel
Michele Di Giorgio9c700372020-01-08 11:33:44 +0000279 * -# @ref NEGEMMLowpQuantizeDownInt32ToUint8ScaleByFixedPointKernel
280 * -# @ref NEGEMMLowpQuantizeDownInt32ToInt8ScaleByFixedPointKernel
281 * -# @ref NEGEMMLowpQuantizeDownInt32ToInt16ScaleByFixedPointKernel
282*/
283class NEGEMMLowpOutputStage : public INESimpleFunctionNoBorder
284{
285public:
286 /** Initialise the kernel's inputs, output
287 *
288 * @param[in] input Input tensor. Data type supported: S32
289 * @param[in] bias Biases tensor. Only shared biases supported and it can be a nullptr if the biases addition is not required.
290 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
291 * @param[out] output Output tensor. Data type supported: Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM16
292 * @param[in] info GEMMLowp output stage metadata.
293 */
294 void configure(const ITensor *input, const ITensor *bias, ITensor *output, const GEMMLowpOutputStageInfo &info);
295 /** Static function to check if given info will lead to a valid configuration of @ref NEGEMMLowpOutputStage
296 *
297 * @param[in] input Input tensor info. It is the output of @ref NEGEMMLowpMatrixMultiplyCore function. Data type supported: S32
298 * @param[in] bias Biases tensor info. Only shared biases supported and it can be a nullptr if the addition of biases is not required.
299 * Biases are 1D tensor with dimensions [OFM]. Data type supported: Same as @p input.
300 * @param[in] output Output tensor info. Data type supported: Data type supported: QASYMM8/QASYMM8_SIGNED/QSYMM16
301 * @param[in] info GEMMLowp output stage metadata.
302 *
303 * @return a status
304 */
305 static Status validate(const ITensorInfo *input, const ITensorInfo *bias, const ITensorInfo *output, const GEMMLowpOutputStageInfo &info);
306};
Georgios Pinitas041f36d2018-09-18 18:38:37 +0100307} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000308#endif /*ARM_COMPUTE_NEGEMMLOWPOUTPUTSTAGE_H */