From b46702118eddcfec11487be8dd23234066642d62 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 18 May 2018 16:55:39 +0100 Subject: COMPMID-1181: Support for tracing configuration This patch adds support for tracing function and kernel configuration arguments. The trace is printed to stdout. To enable tracing run the script: scripts/enable_tracing.py and recompile the library with tracing=1. Change-Id: If6626785e263d9023899b20e175a53652d70a605 Signed-off-by: morgolock Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2712 Tested-by: Arm Jenkins Reviewed-by: Sang-Hoon Park Reviewed-by: Georgios Pinitas Comments-Addressed: Arm Jenkins --- scripts/clang_tidy_rules.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'scripts/clang_tidy_rules.py') diff --git a/scripts/clang_tidy_rules.py b/scripts/clang_tidy_rules.py index 99bc5a63c8..8d448ad928 100755 --- a/scripts/clang_tidy_rules.py +++ b/scripts/clang_tidy_rules.py @@ -28,7 +28,10 @@ def filter_files( list_files ): if os.path.splitext(f)[1] != ".cpp": continue # Skip OMPScheduler as it causes problems in clang - if "OMPScheduler.cpp" in f: + if (("OMPScheduler.cpp" in f) or + ("CLTracePoint.cpp" in f) or + ("NETracePoint.cpp" in f) or + ("TracePoint.cpp" in f)): continue to_check.append(f) return to_check -- cgit v1.2.1