aboutsummaryrefslogtreecommitdiff
path: root/reference_model/src/ops/type_conversion.cc
diff options
context:
space:
mode:
authorJerry Ge <jerry.ge@arm.com>2023-07-19 23:08:16 +0000
committerJerry Ge <jerry.ge@arm.com>2023-07-25 22:49:17 +0000
commit9c9c8dafe8f9a32bd70aee268cd537b93865a3ba (patch)
treee94fc471261b9f72bef86033fbc76022f55d5de8 /reference_model/src/ops/type_conversion.cc
parentc1e13432b4a218781afd6b0171d4afff11730433 (diff)
downloadreference_model-9c9c8dafe8f9a32bd70aee268cd537b93865a3ba.tar.gz
Run clang-format and update copyright
- Also added run clang-format to pre-commit runs Signed-off-by: Jerry Ge <jerry.ge@arm.com> Change-Id: I4e59ac0afbaa30dce0773aa63d92a1a3b119e2f3
Diffstat (limited to 'reference_model/src/ops/type_conversion.cc')
-rw-r--r--reference_model/src/ops/type_conversion.cc40
1 files changed, 17 insertions, 23 deletions
diff --git a/reference_model/src/ops/type_conversion.cc b/reference_model/src/ops/type_conversion.cc
index fce8e7c..9464fd9 100644
--- a/reference_model/src/ops/type_conversion.cc
+++ b/reference_model/src/ops/type_conversion.cc
@@ -14,20 +14,18 @@
// limitations under the License.
#include "type_conversion.h"
-#include "quant_util.h"
#include "arith_util.h"
+#include "half.hpp"
+#include "quant_util.h"
#include "template_types.h"
#include <cmath>
-#include "half.hpp"
using namespace TosaReference;
using namespace Eigen;
using namespace tosa;
template <int Rank, TOSA_REF_TYPE InDtype, TOSA_REF_TYPE OutDtype>
-OpRescale<Rank, InDtype, OutDtype>::OpRescale(SubgraphTraverser* sgt_,
- TosaAttributeBase* attribute_,
- uint64_t id_)
+OpRescale<Rank, InDtype, OutDtype>::OpRescale(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, uint64_t id_)
: GraphNode(sgt_, Op_RESCALE, id_)
{
setRequiredOperands(1, 1);
@@ -160,12 +158,13 @@ int OpRescale<Rank, InDtype, OutDtype>::eval()
else
scaled = TosaReference::QuantUtil::apply_scale_16(input_zp_shifted, channel_multiplier,
channel_shift);
- int64_t res_in_64 = static_cast<int64_t>(scaled) + output_zp;
+ int64_t res_in_64 = static_cast<int64_t>(scaled) + output_zp;
int64_t i32_max_in_64 = static_cast<int64_t>(std::numeric_limits<int32_t>::max());
int64_t i32_min_in_64 = static_cast<int64_t>(std::numeric_limits<int32_t>::min());
if (res_in_64 > i32_max_in_64 || res_in_64 < i32_min_in_64)
{
- std::string desc = "scaling result [" + std::to_string(scaled) + "] plus output_zp [" + std::to_string(output_zp) + "] not in i32 range";
+ std::string desc = "scaling result [" + std::to_string(scaled) + "] plus output_zp [" +
+ std::to_string(output_zp) + "] not in i32 range";
throw desc;
}
OutEigenType out_val = static_cast<OutEigenType>(res_in_64);
@@ -201,12 +200,13 @@ int OpRescale<Rank, InDtype, OutDtype>::eval()
else
scaled =
TosaReference::QuantUtil::apply_scale_16(input_zp_shifted, tensor_multiplier, tensor_shift);
- int64_t res_in_64 = static_cast<int64_t>(scaled) + output_zp;
+ int64_t res_in_64 = static_cast<int64_t>(scaled) + output_zp;
int64_t i32_max_in_64 = static_cast<int64_t>(std::numeric_limits<int32_t>::max());
int64_t i32_min_in_64 = static_cast<int64_t>(std::numeric_limits<int32_t>::min());
if (res_in_64 > i32_max_in_64 || res_in_64 < i32_min_in_64)
{
- std::string desc = "scaling result [" + std::to_string(scaled) + "] plus output_zp [" + std::to_string(output_zp) + "] not in i32 range";
+ std::string desc = "scaling result [" + std::to_string(scaled) + "] plus output_zp [" +
+ std::to_string(output_zp) + "] not in i32 range";
throw desc;
}
@@ -234,9 +234,7 @@ int OpRescale<Rank, InDtype, OutDtype>::eval()
}
template <int Rank, TOSA_REF_TYPE InDtype, TOSA_REF_TYPE OutDtype>
-OpCast<Rank, InDtype, OutDtype>::OpCast(SubgraphTraverser* sgt_,
- TosaAttributeBase* attribute_,
- uint64_t id_)
+OpCast<Rank, InDtype, OutDtype>::OpCast(SubgraphTraverser* sgt_, TosaAttributeBase* attribute_, uint64_t id_)
: GraphNode(sgt_, Op_CAST, id_)
{
setRequiredOperands(1, 1);
@@ -315,7 +313,7 @@ CastHelper<InDtype, TOSA_REF_TYPE_FP16>::CastHelper()
// Integer data converted to fp16 (stored as fp32)
fcn = [](InEigenType in) -> float {
half_float::half h = half_float::half(in);
- float out = half_float::half_cast<float, half_float::half>(h);
+ float out = half_float::half_cast<float, half_float::half>(h);
return out;
};
}
@@ -354,10 +352,10 @@ CastHelper<TOSA_REF_TYPE_FP16, OutDtype>::CastHelper()
fcn = [](float in) -> OutEigenType {
// Cast from float representation back to half_float before rounding
half_float::half h = half_float::half(in);
- h = std::rint(h);
- OutEigenType out = half_float::half_cast<OutEigenType, half_float::half>(h);
- out = std::max<OutEigenType>(out, OutMin);
- out = std::min<OutEigenType>(out, OutMax);
+ h = std::rint(h);
+ OutEigenType out = half_float::half_cast<OutEigenType, half_float::half>(h);
+ out = std::max<OutEigenType>(out, OutMin);
+ out = std::min<OutEigenType>(out, OutMax);
return out;
};
}
@@ -365,9 +363,7 @@ CastHelper<TOSA_REF_TYPE_FP16, OutDtype>::CastHelper()
CastHelper<TOSA_REF_TYPE_FP16, TOSA_REF_TYPE_FP32>::CastHelper()
{
// No-op since fp16 values treated internally as their fp32 representation
- fcn = [](float in) -> OutEigenType {
- return in;
- };
+ fcn = [](float in) -> OutEigenType { return in; };
}
template <TOSA_REF_TYPE OutDtype>
@@ -385,9 +381,7 @@ CastHelper<TOSA_REF_TYPE_BF16, OutDtype>::CastHelper()
CastHelper<TOSA_REF_TYPE_BF16, TOSA_REF_TYPE_FP32>::CastHelper()
{
// No-op since bf16 values treated as truncated fp32 internally
- fcn = [](InEigenType in) -> OutEigenType {
- return in;
- };
+ fcn = [](InEigenType in) -> OutEigenType { return in; };
}
template <TOSA_REF_TYPE InDtype>