From 81ee53d65a6e3e7d454eda967e6f9f157cae69f1 Mon Sep 17 00:00:00 2001 From: Jeremy Johnson Date: Wed, 23 Mar 2022 15:32:34 +0000 Subject: Add missing REQUIRE to NEGATE op And update test generation to create values in predictable range Signed-off-by: Jeremy Johnson Change-Id: I4ba1ff445bf6caeec9f8782902fc45929fe0ee77 --- reference_model/src/ops/ewise_unary.cc | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) (limited to 'reference_model/src') diff --git a/reference_model/src/ops/ewise_unary.cc b/reference_model/src/ops/ewise_unary.cc index 13e517b..0f38056 100644 --- a/reference_model/src/ops/ewise_unary.cc +++ b/reference_model/src/ops/ewise_unary.cc @@ -229,15 +229,30 @@ int OpNegate::register_fcn() break; case DType_INT16: case DType_INT32: - this->fcn = [](InEigenType a) -> OutEigenType { - InEigenType result = -(a); - return result; + this->fcn = [this](InEigenType a) -> OutEigenType { + int64_t res_in_64 = 0L - a; + int64_t max_in_64, min_in_64; + if (Dtype == DType_INT16) { + max_in_64 = static_cast(std::numeric_limits::max()); + min_in_64 = static_cast(std::numeric_limits::min()); + } + else + { + max_in_64 = static_cast(std::numeric_limits::max()); + min_in_64 = static_cast(std::numeric_limits::min()); + } + REQUIRE(res_in_64 <= max_in_64 && res_in_64 >= min_in_64, "OpNegate: result not in input type range"); + return static_cast(res_in_64); }; break; case DType_INT8: this->fcn = [this](InEigenType a) -> OutEigenType { - InEigenType result = -(a - this->qinfo->input_zp()) + this->qinfo->output_zp(); - result = std::min(std::max(result, static_cast(QMin)), static_cast(QMax)); + int32_t res_in_32 = 0 - (a - this->qinfo->input_zp()); + int32_t max_in_32 = static_cast(std::numeric_limits::max()); + int32_t min_in_32 = static_cast(std::numeric_limits::min()); + REQUIRE(res_in_32 <= max_in_32 && res_in_32 >= min_in_32, "OpNegate: result not in i8 range"); + res_in_32 += this->qinfo->output_zp(); + InEigenType result = static_cast(std::min(std::max(res_in_32, static_cast(QMin)), static_cast(QMax))); return result; }; break; -- cgit v1.2.1