-
Notifications
You must be signed in to change notification settings - Fork 966
Expand file tree
/
Copy pathop_choose_qparams_test.cpp
More file actions
260 lines (218 loc) · 10 KB
/
op_choose_qparams_test.cpp
File metadata and controls
260 lines (218 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree.
*/
#include <executorch/kernels/quantized/NativeFunctions.h> // Declares the operator
#include <executorch/runtime/core/exec_aten/exec_aten.h>
#include <executorch/runtime/core/exec_aten/testing_util/tensor_factory.h>
#include <executorch/runtime/core/exec_aten/testing_util/tensor_util.h>
#include <executorch/runtime/core/exec_aten/util/scalar_type_util.h>
#include <executorch/test/utils/DeathTest.h>
#include <gtest/gtest.h>
#include <cmath>
#include <limits>
using namespace ::testing;
using executorch::aten::ArrayRef;
using executorch::aten::Scalar;
using executorch::aten::ScalarType;
using executorch::aten::Tensor;
using torch::executor::native::choose_qparams_per_token_asymmetric_out;
using torch::executor::native::choose_qparams_tensor_out;
using torch::executor::testing::TensorFactory;
/// A generic smoke test that works for any dtype that supports ones() and
/// zeros().
template <ScalarType DTYPE>
void test_dtype() {
et_pal_init();
TensorFactory<ScalarType::Float> tf_float;
TensorFactory<ScalarType::Double> tf_double;
TensorFactory<ScalarType::Long> tf_long;
Tensor input = tf_float.make({2, 2}, {1.0, 2.5, 3.2, 15.4});
Tensor scale_out = tf_double.zeros({1});
Tensor zero_point_out = tf_long.zeros({1});
Tensor expected_scale = tf_double.make({1}, {0.0603922});
Tensor expected_zero_point = tf_long.make({1}, {0});
int64_t quant_min = 0;
int64_t quant_max = 255;
choose_qparams_tensor_out(
input, quant_min, quant_max, 0.0, DTYPE, scale_out, zero_point_out);
EXPECT_TENSOR_CLOSE(scale_out, expected_scale);
EXPECT_TENSOR_EQ(zero_point_out, expected_zero_point);
}
TEST(OpChooseQparamsPerTokenAsymmetricTensorOutTest, Float) {
et_pal_init();
TensorFactory<ScalarType::Float> tf_float;
TensorFactory<ScalarType::Double> tf_double;
TensorFactory<ScalarType::Long> tf_long;
Tensor input = tf_float.make({2, 3}, {-0.5, 0.3, 1.2, 0.1, -0.8, 2.1});
Tensor scale_out = tf_double.zeros({2, 1});
Tensor zero_point_out = tf_long.zeros({2, 1});
Tensor expected_scale = tf_double.make({2, 1}, {0.00666667, 0.0113725485});
Tensor expected_zero_point = tf_long.make({2, 1}, {-53, -58});
choose_qparams_per_token_asymmetric_out(
input, ScalarType::Float, scale_out, zero_point_out);
EXPECT_TENSOR_CLOSE_WITH_TOL(scale_out, expected_scale, 1e-4, 1e-4);
EXPECT_TENSOR_EQ(zero_point_out, expected_zero_point);
}
TEST(OpChooseQparamsPerTokenAsymmetricTensorOutTest, ExtraDimFloat) {
et_pal_init();
TensorFactory<ScalarType::Float> tf_float;
TensorFactory<ScalarType::Double> tf_double;
TensorFactory<ScalarType::Long> tf_long;
Tensor input = tf_float.make({1, 2, 3}, {-0.5, 0.3, 1.2, 0.1, -0.8, 2.1});
Tensor scale_out = tf_double.zeros({1, 2, 1});
Tensor zero_point_out = tf_long.zeros({1, 2, 1});
Tensor expected_scale = tf_double.make({1, 2, 1}, {0.00666667, 0.0113725485});
Tensor expected_zero_point = tf_long.make({1, 2, 1}, {-53, -58});
choose_qparams_per_token_asymmetric_out(
input, ScalarType::Float, scale_out, zero_point_out);
EXPECT_TENSOR_CLOSE_WITH_TOL(scale_out, expected_scale, 1e-4, 1e-4);
EXPECT_TENSOR_EQ(zero_point_out, expected_zero_point);
}
TEST(OpChooseQparamsPerTokenAsymmetricTensorOutTest, LargeArray) {
et_pal_init();
TensorFactory<ScalarType::Float> tf_float;
TensorFactory<ScalarType::Double> tf_double;
TensorFactory<ScalarType::Long> tf_long;
Tensor input = tf_float.make(
{5, 17},
{0.41654, 0.26599, 0.4141, 0.83809, 0.02938, 0.12199, 0.53667,
0.799, 0.6606, 0.46657, 0.66142, 0.71787, 0.56098, 0.30202,
0.059377, 0.85473, 0.8017, 0.2703, 0.44299, 0.49045, 0.75581,
0.24429, 0.43906, 0.78652, 0.83885, 0.31034, 0.76534, 0.74422,
0.62549, 0.80006, 0.38144, 0.70652, 0.33553, 0.89136, 0.49126,
0.072916, 0.75654, 0.82057, 0.083848, 0.29753, 0.62718, 0.95579,
0.83097, 0.47293, 0.15666, 0.6248, 0.21672, 0.14626, 0.71834,
0.93664, 0.23382, 0.68931, 0.70866, 0.60545, 0.98648, 0.30335,
0.62439, 0.19195, 0.1923, 0.75638, 0.81114, 0.34778, 0.0070671,
0.50918, 0.19698, 0.19969, 0.57687, 0.062786, 0.18447, 0.22961,
0.29656, 0.25486, 0.75965, 0.11328, 0.86468, 0.21264, 0.99591,
0.75231, 0.97834, 0.042441, 0.39978, 0.9633, 0.9297, 0.12188,
0.73564});
Tensor scale_out = tf_double.zeros({5, 1});
Tensor zero_point_out = tf_long.zeros({5, 1});
Tensor expected_scale = tf_double.make(
{5, 1}, {0.0033519, 0.0034955, 0.0037482, 0.0038685, 0.0039055});
Tensor expected_zero_point =
tf_long.make({5, 1}, {-128, -128, -128, -128, -128});
choose_qparams_per_token_asymmetric_out(
input, ScalarType::Float, scale_out, zero_point_out);
EXPECT_TENSOR_CLOSE_WITH_TOL(scale_out, expected_scale, 1e-5, 1e-5);
EXPECT_TENSOR_EQ(zero_point_out, expected_zero_point);
}
TEST(OpChooseQparamsPerTokenAsymmetricTensorOutTest, DynamicShapeFloat) {
et_pal_init();
TensorFactory<ScalarType::Float> tf_float;
TensorFactory<ScalarType::Double> tf_double;
TensorFactory<ScalarType::Long> tf_long;
Tensor input = tf_float.make({1, 2, 3}, {-0.5, 0.3, 1.2, 0.1, -0.8, 2.1});
Tensor scale_out = tf_double.zeros(
{1, 5, 1}, torch::executor::TensorShapeDynamism::DYNAMIC_BOUND);
Tensor zero_point_out = tf_long.zeros(
{1, 5, 1}, torch::executor::TensorShapeDynamism::DYNAMIC_BOUND);
Tensor expected_scale = tf_double.make({1, 2, 1}, {0.00666667, 0.0113725485});
Tensor expected_zero_point = tf_long.make({1, 2, 1}, {-53, -58});
choose_qparams_per_token_asymmetric_out(
input, ScalarType::Float, scale_out, zero_point_out);
EXPECT_TENSOR_CLOSE_WITH_TOL(scale_out, expected_scale, 1e-4, 1e-4);
EXPECT_TENSOR_EQ(zero_point_out, expected_zero_point);
Tensor new_input = tf_float.make(
{1, 5, 8},
{5.2254, 5.6041, 5.7653, -1.0126, -0.86126, -0.1606, -0.99196,
-1.067, 5.5913, 5.7713, 5.4901, -0.43128, -1.1759, -0.60466,
-0.82913, -0.73623, 5.4588, 5.4066, 5.2644, -0.89692, -0.16866,
-0.63169, -0.42352, -0.48866, 5.594, 5.5223, 5.5277, -0.17658,
-0.30669, -1.1777, -0.65389, -0.36422, 5.6375, 5.1857, 5.0743,
-0.46654, -0.43817, -0.41506, -0.94515, -0.60247});
Tensor new_expected_scale = tf_double.make(
{1, 5, 1}, {0.026793, 0.027244, 0.024924, 0.026556, 0.025814});
Tensor new_expected_zero_point =
tf_long.make({1, 5, 1}, {-88, -85, -92, -84, -91});
choose_qparams_per_token_asymmetric_out(
new_input, ScalarType::Float, scale_out, zero_point_out);
EXPECT_TENSOR_CLOSE_WITH_TOL(scale_out, new_expected_scale, 1e-4, 1e-4);
EXPECT_TENSOR_EQ(zero_point_out, new_expected_zero_point);
}
TEST(
OpChooseQparamsPerTokenAsymmetricTensorOutTest,
LargeInputParallelization) {
et_pal_init();
TensorFactory<ScalarType::Float> tf_float;
TensorFactory<ScalarType::Double> tf_double;
TensorFactory<ScalarType::Long> tf_long;
// Create input with 8 tokens x 128 elements per token = 1024 total elements
// This exceeds the MIN_ELEMENTS_FOR_PARALLEL threshold of 512
const int num_tokens = 8;
const int token_size = 128;
std::vector<float> input_data(num_tokens * token_size);
// Generate test data with known min/max per token for easier verification
std::vector<float> expected_min(num_tokens);
std::vector<float> expected_max(num_tokens);
for (int i = 0; i < num_tokens; i++) {
float token_min = -1.0f * (i + 1);
float token_max = 2.0f * (i + 1);
expected_min[i] = token_min;
expected_max[i] = token_max;
for (int j = 0; j < token_size; j++) {
// Linearly interpolate between min and max
float t = j / static_cast<float>(token_size - 1);
input_data[i * token_size + j] = token_min + t * (token_max - token_min);
}
}
Tensor input = tf_float.make({num_tokens, token_size}, input_data);
Tensor scale_out = tf_double.zeros({num_tokens, 1});
Tensor zero_point_out = tf_long.zeros({num_tokens, 1});
choose_qparams_per_token_asymmetric_out(
input, ScalarType::Float, scale_out, zero_point_out);
// Manually calculate expected scale and zero_point using the same algorithm
// as calculate_scale_and_zero_point function
const int32_t qmin = -128;
const int32_t qmax = 127;
const float SMALL_SCALE_THRESHOLD = 6.1e-5f;
for (int i = 0; i < num_tokens; i++) {
float min = std::min(expected_min[i], 0.0f);
float max = std::max(expected_max[i], 0.0f);
// Calculate scale
double scale = (static_cast<double>(max) - min) / (qmax - qmin);
if (float(scale) == 0.0f || std::isinf(1.0f / float(scale))) {
scale = 0.1;
}
// Cut off small scale
if (scale < SMALL_SCALE_THRESHOLD) {
scale = SMALL_SCALE_THRESHOLD;
if (min == 0.0f) {
max = SMALL_SCALE_THRESHOLD * (qmax - qmin);
} else if (max == 0.0f) {
min = -SMALL_SCALE_THRESHOLD * (qmax - qmin);
} else {
float amplifier = SMALL_SCALE_THRESHOLD / scale;
min *= amplifier;
max *= amplifier;
}
}
// Calculate zero_point
double zero_point_from_min = qmin - min / scale;
double zero_point_from_max = qmax - max / scale;
double zero_point_from_min_error = std::abs(qmin) - std::abs(min / scale);
double zero_point_from_max_error = std::abs(qmax) - std::abs(max / scale);
double initial_zero_point =
zero_point_from_min_error < zero_point_from_max_error
? zero_point_from_min
: zero_point_from_max;
int32_t nudged_zero_point = 0;
if (initial_zero_point < qmin) {
nudged_zero_point = qmin;
} else if (initial_zero_point > qmax) {
nudged_zero_point = qmax;
} else {
nudged_zero_point =
std::nearbyint(static_cast<float>(initial_zero_point));
}
// Verify computed values match expected
EXPECT_NEAR(scale_out.const_data_ptr<double>()[i], scale, 1e-6);
EXPECT_EQ(zero_point_out.const_data_ptr<int64_t>()[i], nudged_zero_point);
}
}