blob: 386d75eca2e1c7c3d9f1808d7b91b05e0aeb1399 [file] [log] [blame]
Chunosovd621bca2017-11-03 17:33:15 +07001/*
Michalis Spyrou299fdd32019-05-01 13:03:59 +01002 * Copyright (c) 2017-2019 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 */
24#include "arm_compute/core/utils/quantization/AsymmHelpers.h"
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +010025#include "arm_compute/core/Helpers.h"
Chunosovd621bca2017-11-03 17:33:15 +070026
27#include <cmath>
28#include <limits>
29#include <numeric>
30
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010031namespace arm_compute
32{
33namespace quantization
34{
Michalis Spyrou299fdd32019-05-01 13:03:59 +010035constexpr int64_t fixed_point_one_Q0 = (1LL << 31);
Gian Marco Iodice3139f032018-11-05 14:26:32 +000036constexpr float epsilon = 0.00001f;
Chunosovf450caa2017-11-08 16:09:35 +070037
Manuel Bottini07263982019-10-17 18:37:26 +010038Status calculate_quantized_multiplier(float multiplier, int *quant_multiplier, int *shift)
39{
40 if(multiplier > 1.f)
41 {
42 Status status = calculate_quantized_multiplier_greater_than_one(multiplier, quant_multiplier, shift);
43 *shift *= -1;
44 return status;
45 }
46 else
47 {
48 return calculate_quantized_multiplier_less_than_one(multiplier, quant_multiplier, shift);
49 }
50}
51
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010052Status calculate_quantized_multiplier_less_than_one(float multiplier,
53 int *quant_multiplier,
54 int *right_shift)
Chunosovd621bca2017-11-03 17:33:15 +070055{
56 ARM_COMPUTE_RETURN_ERROR_ON(quant_multiplier == nullptr);
57 ARM_COMPUTE_RETURN_ERROR_ON(right_shift == nullptr);
Gian Marco Iodice3139f032018-11-05 14:26:32 +000058 ARM_COMPUTE_RETURN_ERROR_ON(multiplier < -epsilon);
59 ARM_COMPUTE_RETURN_ERROR_ON(multiplier > 1.0f + epsilon);
60 if(std::fabs(1.0f - multiplier) < epsilon)
61 {
62 *quant_multiplier = 1;
63 *right_shift = 0;
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010064 return Status{};
Gian Marco Iodice3139f032018-11-05 14:26:32 +000065 }
66
67 if(std::fabs(0.0f - multiplier) < epsilon)
Chunosovd621bca2017-11-03 17:33:15 +070068 {
69 *quant_multiplier = 0;
70 *right_shift = 0;
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010071 return Status{};
Chunosovd621bca2017-11-03 17:33:15 +070072 }
Gian Marco Iodice3139f032018-11-05 14:26:32 +000073
Chunosovd621bca2017-11-03 17:33:15 +070074 const double q = std::frexp(multiplier, right_shift);
75 *right_shift *= -1;
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010076 auto q_fixed = static_cast<int64_t>(support::cpp11::round(q * fixed_point_one_Q0));
Chunosovf450caa2017-11-08 16:09:35 +070077 ARM_COMPUTE_RETURN_ERROR_ON(q_fixed > fixed_point_one_Q0);
78 if(q_fixed == fixed_point_one_Q0)
Chunosovd621bca2017-11-03 17:33:15 +070079 {
80 q_fixed /= 2;
81 --*right_shift;
82 }
83 ARM_COMPUTE_RETURN_ERROR_ON(*right_shift < 0);
84 ARM_COMPUTE_RETURN_ERROR_ON(q_fixed > std::numeric_limits<int32_t>::max());
Chunosovf450caa2017-11-08 16:09:35 +070085 *quant_multiplier = static_cast<int32_t>(q_fixed);
Chunosovd621bca2017-11-03 17:33:15 +070086
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010087 return Status{};
Chunosovf450caa2017-11-08 16:09:35 +070088}
89
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010090Status calculate_quantized_multiplier_greater_than_one(float multiplier,
91 int *quantized_multiplier,
92 int *left_shift)
Chunosovf450caa2017-11-08 16:09:35 +070093{
94 ARM_COMPUTE_RETURN_ERROR_ON(quantized_multiplier == nullptr);
95 ARM_COMPUTE_RETURN_ERROR_ON(left_shift == nullptr);
96 ARM_COMPUTE_RETURN_ERROR_ON(multiplier < 1.f);
97 const double q = std::frexp(multiplier, left_shift);
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +010098 auto q_fixed = static_cast<int64_t>(support::cpp11::round(q * fixed_point_one_Q0));
Chunosovf450caa2017-11-08 16:09:35 +070099 ARM_COMPUTE_RETURN_ERROR_ON(q_fixed > fixed_point_one_Q0);
100 if(q_fixed == fixed_point_one_Q0)
101 {
102 q_fixed /= 2;
103 ++*left_shift;
104 }
105 ARM_COMPUTE_RETURN_ERROR_ON(*left_shift < 0);
106 ARM_COMPUTE_RETURN_ERROR_ON(q_fixed > std::numeric_limits<int32_t>::max());
107 *quantized_multiplier = static_cast<int32_t>(q_fixed);
108
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +0100109 return Status{};
Chunosovf450caa2017-11-08 16:09:35 +0700110}
Georgios Pinitasdbdea0d2019-10-16 19:21:40 +0100111
112arm_compute::Status calculate_quantized_multipliers_less_than_one(const QuantizationInfo &iq_info,
113 const QuantizationInfo &wq_info,
114 const QuantizationInfo &oq_info,
115 GEMMLowpOutputStageInfo &stage_info)
116{
117 ARM_COMPUTE_RETURN_ERROR_ON(iq_info.scale().empty());
118 ARM_COMPUTE_RETURN_ERROR_ON(wq_info.scale().empty());
119 ARM_COMPUTE_RETURN_ERROR_ON(oq_info.scale().empty());
120
121 const unsigned int size = wq_info.scale().size();
122
123 auto &quant_multipliers = stage_info.gemmlowp_multipliers;
124 auto &quant_shifts = stage_info.gemmlowp_shifts;
125 quant_multipliers.resize(size);
126 quant_shifts.resize(size);
127
128 const auto &w_scales = wq_info.scale();
129 const float i_scale = iq_info.scale().at(0);
130 const float o_scale = oq_info.scale().at(0);
131
132 for(unsigned int i = 0; i < size; ++i)
133 {
134 const float multiplier = i_scale * w_scales[i] / o_scale;
135 int quant_multiplier = 0;
136 int quant_shift = 0;
137 ARM_COMPUTE_RETURN_ON_ERROR(calculate_quantized_multiplier_less_than_one(multiplier, &quant_multiplier, &quant_shift));
138 quant_multipliers[i] = quant_multiplier;
139 quant_shifts[i] = quant_shift;
140 }
141
142 // Legacy part
143 stage_info.gemmlowp_shift = quant_shifts[0];
144 stage_info.gemmlowp_multiplier = quant_multipliers[0];
145
146 return Status{};
147}
148
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +0100149std::pair<int, int> get_min_max_values_from_quantized_data_type(DataType data_type)
150{
151 int min_quant_val = 0;
152 int max_quant_val = 0;
153 switch(data_type)
154 {
155 case DataType::QASYMM8:
156 min_quant_val = std::numeric_limits<uint8_t>::min();
157 max_quant_val = std::numeric_limits<uint8_t>::max();
158 break;
159 case DataType::QSYMM8:
160 min_quant_val = std::numeric_limits<int8_t>::min();
161 max_quant_val = std::numeric_limits<int8_t>::max();
162 break;
163 case DataType::QASYMM16:
164 min_quant_val = std::numeric_limits<uint16_t>::min();
165 max_quant_val = std::numeric_limits<uint16_t>::max();
166 break;
167 case DataType::QSYMM16:
168 min_quant_val = std::numeric_limits<int16_t>::min();
169 max_quant_val = std::numeric_limits<int16_t>::max();
170 break;
171 default:
172 ARM_COMPUTE_ERROR("Unsupported data type");
173 }
174 return std::make_pair(min_quant_val, max_quant_val);
175}
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100176void compute_quantized_multipliers_and_shifts(const ITensor *input, const ITensor *weights, const ITensor *output, int32_t *output_multipliers_ptr, int32_t *output_shifts_ptr)
177{
178 const unsigned int idx_c = get_data_layout_dimension_index(weights->info()->data_layout(), DataLayoutDimension::CHANNEL);
179 const unsigned int num_filters = is_data_type_quantized_per_channel(weights->info()->data_type()) ? weights->info()->dimension(idx_c) : 1;
180
181 const UniformQuantizationInfo iq_info = input->info()->quantization_info().uniform();
182 const QuantizationInfo wq_info = weights->info()->quantization_info();
183 const UniformQuantizationInfo oq_info = output->info()->quantization_info().uniform();
184
185 for(unsigned int i = 0; i < num_filters; ++i)
186 {
187 int output_multiplier = 0;
188 int output_shift = 0;
189 const float multiplier = iq_info.scale * wq_info.scale()[i] / oq_info.scale;
190 ARM_COMPUTE_ERROR_ON(multiplier > 1.0f);
191 calculate_quantized_multiplier_less_than_one(multiplier, &output_multiplier, &output_shift);
192
193 output_multipliers_ptr[i] = output_multiplier;
194 output_shifts_ptr[i] = output_shift;
195 }
196}
Michele Di Giorgiod87a7b22019-09-10 10:42:27 +0100197} // quantization
198} // arm_compute