/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #include #include "../test_helper.h" #include "../test_include.h" #include "operators/quantize_op.h" namespace paddle_mobile { namespace round { enum RoundType { RoundToEven = 0, RoundAwayZero = 1, RoundTowardsZero = 2, }; } template struct Round { int8_t operator()(float x); }; template <> struct Round { int8_t operator()(float x) { return std::round(x); } }; template <> struct Round { int8_t operator()(float x) { return int8_t(x); } }; template <> struct Round { int8_t operator()(float x) { float v = std::round(x); int32_t q = static_cast(v); if (abs(abs(q - v) - 0.5) <= 0) { if (abs(q) % 2 != 0) { q = q + ((q > 0) ? -1 : 1); } } return static_cast(q); } }; template static void quantize(const Tensor *input, const float scale, Tensor *output) { int batch_size = input->dims()[0]; int channels = input->dims()[1]; int input_h = input->dims()[2]; int input_w = input->dims()[3]; int output_h = output->dims()[2]; int output_w = output->dims()[3]; size_t input_spatial = input_h * input_w; size_t output_spatial = output_h * output_w; const float *x = input->data(); int8_t *y = output->mutable_data(); for (int nc = 0; nc < batch_size * channels; ++nc) { const float *xh = x + nc * input_spatial; int8_t *yh = y + nc * output_spatial; for (int h = 0; h < input_h; ++h, yh += output_w, xh += input_w) { for (int w = 0; w < input_w; ++w) { yh[w] = Round()(xh[w] * scale); } } } } static float find_abs_max(const Tensor *input) { float max_abs = 0.f; const float *x = input->data(); size_t size = input->numel(); for (size_t i = 0; i < size; ++i) { float value = std::abs(x[i]); if (value > max_abs) { max_abs = value; } } return max_abs; } int TestQuqntizeOp(int argc, char *argv[]) { if (argc < 5) { std::cout << "Usage: ./test-quantize-op batch_size channel height width" << std::endl; return 1; } int batch_size = atoi(argv[1]); int channel = atoi(argv[2]); int height = atoi(argv[3]); int width = atoi(argv[4]); std::cout << "batch_size: " << batch_size << ", channel: " << channel << ", height: " << height << ", width: " << width << std::endl; framework::DDim dim = framework::make_ddim({batch_size, channel, height, width}); VariableNameMap inputs; VariableNameMap outputs; auto scope = std::make_shared(); inputs["X"] = std::vector({"input"}); outputs["Out"] = std::vector({"output"}); outputs["OutScale"] = std::vector({"output_scale"}); auto input_var = scope.get()->Var("input"); auto input = input_var->template GetMutable(); SetupTensor(input, dim, -100.f, 100.f); auto output_var = scope.get()->Var("output"); auto output_scale_var = scope.get()->Var("output_scale"); framework::AttributeMap attrs; auto *op = new operators::QuantizeOp("quantize", inputs, outputs, attrs, scope); op->InferShape(); op->Run(); auto output = output_var->template Get(); const int8_t *output_data = output->data(); auto output_scale = output_scale_var->template Get(); const float *output_scale_data = output_scale->data(); float output_scale_cmp = find_abs_max(input); PADDLE_MOBILE_ENFORCE(output_scale_cmp == output_scale_data[0], "output_scale = %.6f, output_scale_cmp = %.6f", output_scale_cmp, output_scale_data[0]); framework::Tensor output_cmp; output_cmp.Resize(output->dims()); float scale = 127 / output_scale_cmp; // quantize(input, scale, &output_cmp); // quantize(input, scale, &output_cmp); quantize(input, scale, &output_cmp); int8_t *output_cmp_data = output_cmp.data(); for (int i = 0; i < output->numel(); ++i) { PADDLE_MOBILE_ENFORCE(output_data[i] == output_cmp_data[i], "output[%d] = %d, output_cmp[%d] = %d", i, static_cast(output_data[i]), i, static_cast(output_cmp_data[i])); } delete op; return 0; } } // namespace paddle_mobile int main(int argc, char *argv[]) { return paddle_mobile::TestQuqntizeOp(argc, argv); }