From af15076bf8148870aa41d414b73e81f3b7e86436 Mon Sep 17 00:00:00 2001 From: Ramy Elgammal Date: Tue, 25 Apr 2023 17:19:27 +0100 Subject: =?UTF-8?q?Only=20define=20validation=20test=20tolerance=20for=20q?= =?UTF-8?q?uantized=20types=20in=20case=20of=20aarch64=20for=20Neon?= =?UTF-8?q?=E2=84=A2=20Matmul?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Partially Resovles: COMPMID-6026 Signed-off-by: Ramy Elgammal Change-Id: I273b213abba275f1609eae33058e3acbee2a7146 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/9489 Benchmark: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Viet-Hoa Do Comments-Addressed: Arm Jenkins --- tests/validation/NEON/MatMul.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/validation/NEON/MatMul.cpp b/tests/validation/NEON/MatMul.cpp index 0f97dcf9c4..0a20d18490 100644 --- a/tests/validation/NEON/MatMul.cpp +++ b/tests/validation/NEON/MatMul.cpp @@ -45,8 +45,10 @@ TEST_SUITE(MatMul) constexpr AbsoluteTolerance tolerance_fp32(0.001f); /**< Tolerance value for comparing reference's output against implementation's output for FP32 data types */ const AbsoluteTolerance tolerance_fp16(half(0.1f)); +#ifdef __aarch64__ constexpr AbsoluteTolerance tolerance_qasymm8(0); constexpr AbsoluteTolerance tolerance_qasymm8_signed(0); +#endif // __aarch64__ // clang-format off // *INDENT-OFF* -- cgit v1.2.1