From eb82fd2aa786715c3b6a941dc6d6deac4ce8e2a0 Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Fri, 23 Feb 2018 13:43:50 +0000 Subject: COMPMID-881: RSH new arm_gemm interface. Change-Id: I1e2a1a77097d8017c274af3f97eba6964f80f5fa Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/122592 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- scripts/clang_tidy_rules.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'scripts/clang_tidy_rules.py') diff --git a/scripts/clang_tidy_rules.py b/scripts/clang_tidy_rules.py index d6deee9b68..e5793e5061 100755 --- a/scripts/clang_tidy_rules.py +++ b/scripts/clang_tidy_rules.py @@ -40,6 +40,9 @@ def filter_clang_tidy_lines( lines ): if "/assembly/" in line: continue + if "/arm_gemm/" in line: + continue + if "/convolution/" in line: continue @@ -90,6 +93,8 @@ def filter_clang_tidy_lines( lines ): ("parameter 'memory_manager' is copied for each invocation but only used as a const reference" in line) or ("DeconvolutionLayer.cpp" in line and "casting (double + 0.5) to integer leads to incorrect rounding; consider using lround" in line) or ("NEWinogradLayerKernel.cpp" in line and "use '= default' to define a trivial destructor" in line) or + ("NEGEMMLowpMatrixMultiplyCore.cpp" in line and "constructor does not initialize these fields" in line) or + ("NEGEMMLowpAssemblyMatrixMultiplyCore" in line and "constructor does not initialize these fields" in line) or "3rdparty" in line): print_context=False continue -- cgit v1.2.1