aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/TracePoint.cpp
diff options
context:
space:
mode:
authorAnthony Barbier <anthony.barbier@arm.com>2018-05-18 16:55:39 +0100
committerPablo Marquez <pablo.tello@arm.com>2020-03-05 16:47:10 +0000
commitb46702118eddcfec11487be8dd23234066642d62 (patch)
treeb80d1346c86f17a08e18879ad47c0e9999af27ac /src/runtime/TracePoint.cpp
parente8291acc1d9e89c9274d31f0d5bb4779eb95588c (diff)
downloadComputeLibrary-b46702118eddcfec11487be8dd23234066642d62.tar.gz
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 <pablo.tello@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2712 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Sang-Hoon Park <sang-hoon.park@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'src/runtime/TracePoint.cpp')
-rw-r--r--src/runtime/TracePoint.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/runtime/TracePoint.cpp b/src/runtime/TracePoint.cpp
new file mode 100644
index 0000000000..817d63bdf3
--- /dev/null
+++ b/src/runtime/TracePoint.cpp
@@ -0,0 +1,49 @@
+/*
+ * Copyright (c) 2020 ARM Limited.
+ *
+ * SPDX-License-Identifier: MIT
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to
+ * deal in the Software without restriction, including without limitation the
+ * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
+ * sell copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+#include "arm_compute/core/TracePoint.h"
+#include <stdio.h>
+#include <vector>
+
+#include "arm_compute/core/NEON/kernels/assembly/arm_gemm.hpp"
+#include "arm_compute/runtime/Array.h"
+#include "arm_compute/runtime/Pyramid.h"
+#include "arm_compute/runtime/common/LSTMParams.h"
+#include "utils/TypePrinter.h"
+
+namespace arm_compute
+{
+TRACE_TO_STRING(KeyPointArray)
+TRACE_TO_STRING(Pyramid)
+TRACE_TO_STRING(LSTMParams<ITensor>)
+TRACE_TO_STRING(FullyConnectedLayerInfo)
+TRACE_TO_STRING(arm_gemm::Requantize32)
+
+CONST_PTR_CLASS(KeyPointArray)
+CONST_PTR_CLASS(Pyramid)
+CONST_PTR_CLASS(LSTMParams<ITensor>)
+CONST_PTR_CLASS(DetectionPostProcessLayerInfo)
+CONST_PTR_CLASS(FullyConnectedLayerInfo)
+CONST_PTR_CLASS(GenerateProposalsInfo)
+CONST_PTR_CLASS(arm_gemm::Requantize32)
+} // namespace arm_compute