From 383deec6b38f8b00f901d475000d46f8d3e5fb97 Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Fri, 23 Jun 2017 10:40:05 +0100 Subject: COMPMID-345: Added support for arm8.2+FP16 in the the validation framework. Change-Id: Ifef2133d4a0da5456bec147330405b6d58cf6a71 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/78676 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- scripts/check_clang-tidy.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'scripts') diff --git a/scripts/check_clang-tidy.py b/scripts/check_clang-tidy.py index ead2513a93..fc73dca94e 100755 --- a/scripts/check_clang-tidy.py +++ b/scripts/check_clang-tidy.py @@ -18,6 +18,7 @@ if __name__ == "__main__": if "error:" in line: if (("Utils.cpp" in line and "'arm_compute_version.embed' file not found" in line) or ("cl2.hpp" in line and "cast from pointer to smaller type 'cl_context_properties' (aka 'int') loses information" in line) or + ("arm_fp16.h" in line) or ("memory" in line and "cast from pointer to smaller type 'uintptr_t' (aka 'unsigned int') loses information" in line) or "3rdparty" in line): continue @@ -34,6 +35,8 @@ if __name__ == "__main__": ("NEMinMaxLocationKernel.cpp" in line and "move constructors should be marked noexcept" in line) or ("NEMinMaxLocationKernel.cpp" in line and "move assignment operators should be marked noexcept" in line) or ("PMUCounter.cpp" in line and "consider replacing 'long long' with 'int64'" in line) or + ("Validation.cpp" in line and "parameter 'classified_labels' is unused" in line) or + ("Validation.cpp" in line and "parameter 'expected_labels' is unused" in line) or "3rdparty" in line): continue -- cgit v1.2.1