blob: b459cfbf3dbe30dd2241abf53a053d8638ba9a35 [file] [log] [blame]
Anthony Barbierb4670212018-05-18 16:55:39 +01001/*
2 * Copyright (c) 2020 ARM Limited.
3 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#include "arm_compute/core/TracePoint.h"
25
26#include "arm_compute/core/CL/ICLArray.h"
27#include "arm_compute/core/CL/ICLDistribution1D.h"
28#include "arm_compute/core/CL/ICLHOG.h"
29#include "arm_compute/core/CL/ICLLut.h"
30#include "arm_compute/core/CL/ICLMultiHOG.h"
31#include "arm_compute/core/CL/ICLMultiImage.h"
32#include "arm_compute/core/CL/ICLTensor.h"
33#include "arm_compute/core/CL/kernels/CLLKTrackerKernel.h"
34#include "utils/TypePrinter.h"
35
36#include <vector>
37
38namespace arm_compute
39{
40std::string to_string(const ICLTensor &arg)
41{
42 std::stringstream str;
43 str << "TensorInfo(" << *arg.info() << ")";
44 return str.str();
45}
46
47template <>
48TracePoint::Args &&operator<<(TracePoint::Args &&tp, const ICLTensor *arg)
49{
50 tp.args.push_back("ICLTensor(" + to_string_if_not_null(arg) + ")");
51 return std::move(tp);
52}
53
54TRACE_TO_STRING(std::vector<ICLTensor *>)
55TRACE_TO_STRING(ICLMultiImage)
56TRACE_TO_STRING(ICLDetectionWindowArray)
57TRACE_TO_STRING(ICLKeyPointArray)
58TRACE_TO_STRING(ICLLKInternalKeypointArray)
59TRACE_TO_STRING(ICLCoefficientTableArray)
60TRACE_TO_STRING(ICLCoordinates2DArray)
61TRACE_TO_STRING(ICLOldValArray)
62TRACE_TO_STRING(cl::Buffer)
63TRACE_TO_STRING(ICLDistribution1D)
64TRACE_TO_STRING(ICLMultiHOG)
65TRACE_TO_STRING(ICLHOG)
66TRACE_TO_STRING(ICLLut)
67TRACE_TO_STRING(ICLSize2DArray)
68TRACE_TO_STRING(std::vector<const ICLTensor *>)
69
70CONST_PTR_CLASS(std::vector<ICLTensor *>)
71CONST_PTR_CLASS(ICLMultiImage)
72CONST_PTR_CLASS(ICLDetectionWindowArray)
73CONST_PTR_CLASS(ICLKeyPointArray)
74CONST_PTR_CLASS(ICLLKInternalKeypointArray)
75CONST_PTR_CLASS(ICLCoefficientTableArray)
76CONST_PTR_CLASS(ICLCoordinates2DArray)
77CONST_PTR_CLASS(ICLOldValArray)
78CONST_PTR_CLASS(cl::Buffer)
79CONST_PTR_CLASS(ICLDistribution1D)
80CONST_PTR_CLASS(ICLMultiHOG)
81CONST_PTR_CLASS(ICLHOG)
82CONST_PTR_CLASS(ICLLut)
83CONST_PTR_CLASS(ICLSize2DArray)
84CONST_PTR_CLASS(std::vector<const ICLTensor *>)
85} // namespace arm_compute