blob: 4ef49476b22e583734ca7090fd1474cc1291bff8 [file] [log] [blame]
Chunosovd621bca2017-11-03 17:33:15 +07001/*
Sang-Hoon Park396cb952020-03-26 14:02:37 +00002 * Copyright (c) 2017-2020 ARM Limited.
Chunosovd621bca2017-11-03 17:33:15 +07003 *
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_QUANTIZATION_ASYMM_HELPERS_H
25#define ARM_COMPUTE_QUANTIZATION_ASYMM_HELPERS_H
Chunosovd621bca2017-11-03 17:33:15 +070026
27#include "arm_compute/core/Error.h"
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010028#include "arm_compute/core/ITensor.h"
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010029#include "arm_compute/core/Types.h"
Chunosovd621bca2017-11-03 17:33:15 +070030
31namespace arm_compute
32{
33namespace quantization
34{
Manuel Bottini07263982019-10-17 18:37:26 +010035/** Calculate quantized representation of multiplier.
36 *
37 * @param[in] multiplier Real multiplier.
38 * @param[out] quant_multiplier Integer multiplier.
39 * @param[out] shift bit shift. A negative value indicates a left shift, while a positive value indicates a right shift
Sang-Hoon Park30b46a62020-04-18 01:40:57 +010040 * @param[in] ignore_epsilon When true, ignore pre-defined epsilon value. Defaults to false
Manuel Bottini07263982019-10-17 18:37:26 +010041 *
42 * @return a status
43 */
Sang-Hoon Park30b46a62020-04-18 01:40:57 +010044Status calculate_quantized_multiplier(float multiplier, int32_t *quant_multiplier, int32_t *shift, bool ignore_epsilon = false);
Chunosovd621bca2017-11-03 17:33:15 +070045/** Calculate quantized representation of multiplier with value less than one.
46 *
47 * @param[in] multiplier Real multiplier.
48 * @param[out] quant_multiplier Integer multiplier.
49 * @param[out] right_shift Right bit shift.
Sang-Hoon Park30b46a62020-04-18 01:40:57 +010050 * @param[in] ignore_epsilon When true, ignore pre-defined epsilon value. Defaults to false
Georgios Pinitas631c41a2017-12-06 11:53:03 +000051 *
52 * @return a status
Chunosovd621bca2017-11-03 17:33:15 +070053 */
Sang-Hoon Park30b46a62020-04-18 01:40:57 +010054Status calculate_quantized_multiplier_less_than_one(float multiplier, int32_t *quant_multiplier, int32_t *right_shift, bool ignore_epsilon = false);
Chunosovf450caa2017-11-08 16:09:35 +070055/** Calculate quantized representation of multiplier having value greater than one.
56 *
57 * @param[in] multiplier Real multiplier.
58 * @param[out] quantized_multiplier Integer multiplier.
59 * @param[out] left_shift Left bit shift.
Georgios Pinitas631c41a2017-12-06 11:53:03 +000060 *
61 * @return a status
Chunosovf450caa2017-11-08 16:09:35 +070062 */
Michalis Spyroue7be8a02019-12-12 16:16:09 +000063Status calculate_quantized_multiplier_greater_than_one(float multiplier, int32_t *quantized_multiplier, int32_t *left_shift);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010064
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +000065/** Calculate quantized representation of per-channel multipliers
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010066 *
67 * @param[in] iq_info Input quantization info.
68 * @param[in] wq_info Weights quantization info.
69 * @param[in] oq_info Output quantization info.
70 * @param[in, out] stage_info GemmLowp output stage info
71 *
72 * @return a status
73 */
Michele Di Giorgiof29d1b72019-10-29 10:58:13 +000074Status calculate_quantized_multipliers(const QuantizationInfo &iq_info,
75 const QuantizationInfo &wq_info,
76 const QuantizationInfo &oq_info,
77 GEMMLowpOutputStageInfo &stage_info);
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +010078
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010079/** Get minimum and maximum values for the input quantized data type
80 *
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010081 * @return min and max values for the quantized data type
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010082 */
83std::pair<int, int> get_min_max_values_from_quantized_data_type(DataType data_type);
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010084/** Compute quantized per-channel multipliers and shifts. As many multipliers
85 * and shifts as output channels are computed. If weights are not quantized
86 * per-channel, multipliers and shifts will end up being the same for each
87 * channel.
88 *
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000089 * @param[in] input Input tensor info.
90 * @param[in] weights Weights tensor info.
91 * @param[in] output Output tensor info.
92 * @param[in] idx_ofms Dimension index to get OFMs from the weights tensor.
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010093 * @param[out] output_multipliers_ptr Pointer to the buffer where to store per-channel multipliers.
94 * @param[out] output_shifts_ptr Pointer to the buffer where to store per-channel shifts.
95 *
96 * @return min and max values for the quantized data type
97 */
Vidhya Sudhan Loganathan951b8a42019-11-04 14:42:08 +000098void compute_quantized_multipliers_and_shifts(const ITensorInfo *input,
99 const ITensorInfo *weights,
100 const ITensorInfo *output,
101 unsigned int idx_ofms,
102 int32_t *output_multipliers_ptr,
103 int32_t *output_shifts_ptr);
Sang-Hoon Park396cb952020-03-26 14:02:37 +0000104
105/** Round to the nearest division by a power-of-two using exponent, copied from NEMath
106 *
107 * @note This function calculates the following expression: (x + 2^n -1 ) / 2^n where n = exponent
108 *
109 * @param[in] x Element to divide.
110 * @param[in] exponent Integer value used to round to nearest division by a power-of-two
111 *
112 * @return the nearest division by a power-of-two using exponent
113 */
114int32_t rounding_divide_by_pow2(int32_t x, int exponent);
115
116/** Compute multiplication of two integers
117 *
118 * @param[in] a One integer to multiply
119 * @param[in] b Another integer to multiply
120 *
121 * @return The multiplied value
122 */
123int32_t saturating_rounding_doubling_highmul(int32_t a, int32_t b);
124
125/** Compute the value multiplied by given quantized multiplier and shift
126 *
127 * @param[in] input Target value to multiply.
128 * @param[in] qmul Quantized multipler
129 * @param[in] shift Left bit shift
130 *
131 * @return The multiplied value
132 */
Sang-Hoon Park0d008f72020-03-13 14:56:05 +0000133int32_t multiply_by_quantized_multiplier(int32_t input, int32_t qmul, int32_t shift);
Sang-Hoon Park396cb952020-03-26 14:02:37 +0000134
135/** Compute the value multiplied the power-of-two
136 *
137 * @param[in] exponent Exponent used to calculate power-of-two
138 * @param[in] v Target value to multiply
139 *
140 * @return The multiplied value
141 */
Sang-Hoon Park0d008f72020-03-13 14:56:05 +0000142int32_t saturating_rounding_multiply_by_pow2(int32_t exponent, int32_t v);
143
144/** Compute quantized multiplier and shift for the inverse square root of input.
145 * Using 3-bit fixed point and 5 iteration of Newton-Raphson method.
146 *
147 * @param[in] input Input to use
148 * @param[in] reverse_shift -1 to reverse the shift direction
149 * @param[out] output_inv_sqrt Quantized multiplier for inverse square root
150 * @param[out] output_shift Shift for inverse square root
151 *
152 */
153void get_invsqrt_quantized_multiplier_exp(int32_t input, int32_t reverse_shift, int32_t &output_inv_sqrt, int32_t &output_shift);
Sang-Hoon Park396cb952020-03-26 14:02:37 +0000154
Chunosovd621bca2017-11-03 17:33:15 +0700155} // namespace quantization
156} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000157#endif /* ARM_COMPUTE_IO_FILE_HANDLER_H */