aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/kernels/elementwise_unary/list.h
diff options
context:
space:
mode:
authorRamy Elgammal <ramy.elgammal@arm.com>2023-04-12 17:31:10 +0100
committerRamy Elgammal <ramy.elgammal@arm.com>2023-04-17 12:16:27 +0000
commitb84df20f17f1fe8d098fb8531543c263541355de (patch)
tree3752ffa3a693ad7b2c5497fbf37f55698b14e48b /src/cpu/kernels/elementwise_unary/list.h
parent1ed6a144b1396297b813457016d545af1bb9d823 (diff)
downloadComputeLibrary-b84df20f17f1fe8d098fb8531543c263541355de.tar.gz
Fix unhandled case in ElementwiseUnary
- Case: when the dequantized float value < 0.f the unary op was not called if operator is not LOG or RSQRT Resolves: COMPMID-5994 Signed-off-by: Ramy Elgammal <ramy.elgammal@arm.com> Change-Id: I24d69db22042701f506188ace91ea4ab3dafeccf Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9437 Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Viet-Hoa Do <viet-hoa.do@arm.com> Reviewed-by: Gunes Bayir <gunes.bayir@arm.com>
Diffstat (limited to 'src/cpu/kernels/elementwise_unary/list.h')
-rw-r--r--src/cpu/kernels/elementwise_unary/list.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cpu/kernels/elementwise_unary/list.h b/src/cpu/kernels/elementwise_unary/list.h
index c1cfbb8a3a..432fabf4af 100644
--- a/src/cpu/kernels/elementwise_unary/list.h
+++ b/src/cpu/kernels/elementwise_unary/list.h
@@ -42,9 +42,10 @@ DECLARE_ELEMETWISE_UNARY_KERNEL(neon_fp32_elementwise_unary);
DECLARE_ELEMETWISE_UNARY_KERNEL(neon_fp16_elementwise_unary);
DECLARE_ELEMETWISE_UNARY_KERNEL(neon_s32_elementwise_unary);
DECLARE_ELEMETWISE_UNARY_KERNEL(neon_q8_elementwise_unary);
+#ifndef __aarch64__
DECLARE_ELEMETWISE_UNARY_KERNEL(neon_qasymm8_signed_elementwise_unary);
DECLARE_ELEMETWISE_UNARY_KERNEL(neon_qasymm8_elementwise_unary);
-
+#endif // __aarch64__
#undef DECLARE_ELEMETWISE_UNARY_KERNEL
} // namespace cpu