blob: c3d489974062f576b069c4257fb1aa118ef5bf0e [file] [log] [blame]
Anthony Barbierb4670212018-05-18 16:55:39 +01001/*
Giorgio Arenac5a61392021-01-06 15:13:08 +00002 * Copyright (c) 2020-2021 Arm Limited.
Anthony Barbierb4670212018-05-18 16:55:39 +01003 *
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
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010026#include "arm_compute/core/CL/CLTypes.h"
Anthony Barbierb4670212018-05-18 16:55:39 +010027#include "arm_compute/core/CL/ICLArray.h"
28#include "arm_compute/core/CL/ICLDistribution1D.h"
29#include "arm_compute/core/CL/ICLHOG.h"
30#include "arm_compute/core/CL/ICLLut.h"
31#include "arm_compute/core/CL/ICLMultiHOG.h"
32#include "arm_compute/core/CL/ICLMultiImage.h"
33#include "arm_compute/core/CL/ICLTensor.h"
Anthony Barbierb4670212018-05-18 16:55:39 +010034#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
Giorgio Arenac5a61392021-01-06 15:13:08 +000054ARM_COMPUTE_TRACE_TO_STRING(std::vector<ICLTensor *>)
55ARM_COMPUTE_TRACE_TO_STRING(ICLMultiImage)
56ARM_COMPUTE_TRACE_TO_STRING(ICLDetectionWindowArray)
57ARM_COMPUTE_TRACE_TO_STRING(ICLKeyPointArray)
58ARM_COMPUTE_TRACE_TO_STRING(ICLLKInternalKeypointArray)
59ARM_COMPUTE_TRACE_TO_STRING(ICLCoefficientTableArray)
60ARM_COMPUTE_TRACE_TO_STRING(ICLCoordinates2DArray)
61ARM_COMPUTE_TRACE_TO_STRING(ICLOldValArray)
62ARM_COMPUTE_TRACE_TO_STRING(cl::Buffer)
63ARM_COMPUTE_TRACE_TO_STRING(ICLDistribution1D)
64ARM_COMPUTE_TRACE_TO_STRING(ICLMultiHOG)
65ARM_COMPUTE_TRACE_TO_STRING(ICLHOG)
66ARM_COMPUTE_TRACE_TO_STRING(ICLLut)
67ARM_COMPUTE_TRACE_TO_STRING(ICLSize2DArray)
68ARM_COMPUTE_TRACE_TO_STRING(std::vector<const ICLTensor *>)
Anthony Barbierb4670212018-05-18 16:55:39 +010069
Giorgio Arenac5a61392021-01-06 15:13:08 +000070ARM_COMPUTE_CONST_PTR_CLASS(std::vector<ICLTensor *>)
71ARM_COMPUTE_CONST_PTR_CLASS(ICLMultiImage)
72ARM_COMPUTE_CONST_PTR_CLASS(ICLDetectionWindowArray)
73ARM_COMPUTE_CONST_PTR_CLASS(ICLKeyPointArray)
74ARM_COMPUTE_CONST_PTR_CLASS(ICLLKInternalKeypointArray)
75ARM_COMPUTE_CONST_PTR_CLASS(ICLCoefficientTableArray)
76ARM_COMPUTE_CONST_PTR_CLASS(ICLCoordinates2DArray)
77ARM_COMPUTE_CONST_PTR_CLASS(ICLOldValArray)
78ARM_COMPUTE_CONST_PTR_CLASS(cl::Buffer)
79ARM_COMPUTE_CONST_PTR_CLASS(ICLDistribution1D)
80ARM_COMPUTE_CONST_PTR_CLASS(ICLMultiHOG)
81ARM_COMPUTE_CONST_PTR_CLASS(ICLHOG)
82ARM_COMPUTE_CONST_PTR_CLASS(ICLLut)
83ARM_COMPUTE_CONST_PTR_CLASS(ICLSize2DArray)
84ARM_COMPUTE_CONST_PTR_CLASS(std::vector<const ICLTensor *>)
Anthony Barbierb4670212018-05-18 16:55:39 +010085} // namespace arm_compute