/* 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 "../test_helper.h" #include "../test_include.h" #include "operators/quantize_op.h" namespace paddle_mobile { 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; } static void quantize_round_to_even(const Tensor *input, const float scale, Tensor *output) { const float *x = input->data(); int8_t *y = output->mutable_data(); size_t size = input->numel(); for (size_t i = 0; i < size; ++i) { float value = x[i] * scale; float v = round(value); int32_t q = (int32_t)v; if (abs(abs(q - value) - 0.5) > 0) { y[i] = q; } else { if (abs(q) % 2 == 0) { y[i] = q; } else { y[i] = q + ((q > 0) ? -1 : 1); } } } } static void quantize_round_to_nearest(const Tensor *input, const float scale, Tensor *output) { const float *x = input->data(); int8_t *y = output->mutable_data(); size_t size = input->numel(); for (size_t i = 0; i < size; ++i) { y[i] = round(x[i] * scale); } } int TestQuqntizeOp() { framework::DDim dim = framework::make_ddim({1, 3, 224, 224}); 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(dim); float scale = 127 / output_scale_cmp; // quantize_round_to_even(input, scale, &output_cmp); quantize_round_to_nearest(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() { return paddle_mobile::TestQuqntizeOp(); }