• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
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/CLTypes.h"
27 #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"
34 #include "utils/TypePrinter.h"
35 
36 #include <vector>
37 
38 namespace arm_compute
39 {
to_string(const ICLTensor & arg)40 std::string to_string(const ICLTensor &arg)
41 {
42     std::stringstream str;
43     str << "TensorInfo(" << *arg.info() << ")";
44     return str.str();
45 }
46 
47 template <>
operator <<(TracePoint::Args && tp,const ICLTensor * arg)48 TracePoint::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 
54 TRACE_TO_STRING(std::vector<ICLTensor *>)
55 TRACE_TO_STRING(ICLMultiImage)
56 TRACE_TO_STRING(ICLDetectionWindowArray)
57 TRACE_TO_STRING(ICLKeyPointArray)
58 TRACE_TO_STRING(ICLLKInternalKeypointArray)
59 TRACE_TO_STRING(ICLCoefficientTableArray)
60 TRACE_TO_STRING(ICLCoordinates2DArray)
61 TRACE_TO_STRING(ICLOldValArray)
62 TRACE_TO_STRING(cl::Buffer)
63 TRACE_TO_STRING(ICLDistribution1D)
64 TRACE_TO_STRING(ICLMultiHOG)
65 TRACE_TO_STRING(ICLHOG)
66 TRACE_TO_STRING(ICLLut)
67 TRACE_TO_STRING(ICLSize2DArray)
68 TRACE_TO_STRING(std::vector<const ICLTensor *>)
69 
70 CONST_PTR_CLASS(std::vector<ICLTensor *>)
71 CONST_PTR_CLASS(ICLMultiImage)
72 CONST_PTR_CLASS(ICLDetectionWindowArray)
73 CONST_PTR_CLASS(ICLKeyPointArray)
74 CONST_PTR_CLASS(ICLLKInternalKeypointArray)
75 CONST_PTR_CLASS(ICLCoefficientTableArray)
76 CONST_PTR_CLASS(ICLCoordinates2DArray)
77 CONST_PTR_CLASS(ICLOldValArray)
78 CONST_PTR_CLASS(cl::Buffer)
79 CONST_PTR_CLASS(ICLDistribution1D)
80 CONST_PTR_CLASS(ICLMultiHOG)
81 CONST_PTR_CLASS(ICLHOG)
82 CONST_PTR_CLASS(ICLLut)
83 CONST_PTR_CLASS(ICLSize2DArray)
84 CONST_PTR_CLASS(std::vector<const ICLTensor *>)
85 } // namespace arm_compute
86