blob: 8f97bbf845fb69903d0834c9369721c49f01a6d1 [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Alessandro Navone6413e492021-02-02 11:39:05 +00002 * Copyright (c) 2018-2021 Arm Limited.
Georgios Pinitasd8734b52017-12-22 15:27:52 +00003 *
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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_GRAPH_TYPE_PRINTER_H
25#define ARM_COMPUTE_GRAPH_TYPE_PRINTER_H
Georgios Pinitasd8734b52017-12-22 15:27:52 +000026
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/Types.h"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010029#include "arm_compute/graph/Types.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000030
Georgios Pinitas12be7ab2018-07-03 12:06:23 +010031#include "utils/TypePrinter.h"
32
Georgios Pinitasd8734b52017-12-22 15:27:52 +000033namespace arm_compute
34{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010035namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000036{
Georgios Pinitasd8734b52017-12-22 15:27:52 +000037/** Formatted output of the Target. */
38inline ::std::ostream &operator<<(::std::ostream &os, const Target &target)
39{
40 switch(target)
41 {
42 case Target::UNSPECIFIED:
43 os << "UNSPECIFIED";
44 break;
45 case Target::NEON:
Sheri Zhangac6499a2021-02-10 15:32:38 +000046 os << "Neon";
Georgios Pinitasd8734b52017-12-22 15:27:52 +000047 break;
48 case Target::CL:
49 os << "CL";
50 break;
Michalis Spyrou402740d2021-04-20 11:26:21 +010051 case Target::CLVK:
52 os << "CLVK";
53 break;
Georgios Pinitasd8734b52017-12-22 15:27:52 +000054 default:
55 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
56 }
57
58 return os;
59}
60
Georgios Pinitasda2491f2018-06-01 17:49:09 +010061inline ::std::ostream &operator<<(::std::ostream &os, const NodeType &node_type)
62{
63 switch(node_type)
64 {
65 case NodeType::ActivationLayer:
66 os << "ActivationLayer";
67 break;
thecha01e8f05da2020-08-24 17:21:41 +010068 case NodeType::ArgMinMaxLayer:
69 os << "ArgMinMaxLayer";
70 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +010071 case NodeType::BatchNormalizationLayer:
72 os << "BatchNormalizationLayer";
73 break;
Manuel Bottinid2048ce2018-10-23 17:00:42 +010074 case NodeType::BoundingBoxTransformLayer:
75 os << "BoundingBoxTransformLayer";
76 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +010077 case NodeType::ChannelShuffleLayer:
78 os << "ChannelShuffleLayer";
79 break;
Georgios Pinitase2220552018-07-20 13:23:44 +010080 case NodeType::ConcatenateLayer:
81 os << "ConcatenateLayer";
82 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +010083 case NodeType::ConvolutionLayer:
84 os << "ConvolutionLayer";
85 break;
86 case NodeType::DeconvolutionLayer:
87 os << "DeconvolutionLayer";
88 break;
thecha010a05e6a2020-08-28 18:40:38 +010089 case NodeType::DepthToSpaceLayer:
90 os << "DepthToSpaceLayer";
91 break;
Isabella Gottardicd4e9ab2019-11-05 17:50:27 +000092 case NodeType::DequantizationLayer:
93 os << "DequantizationLayer";
94 break;
Isabella Gottardi7234ed82018-11-27 08:51:10 +000095 case NodeType::DetectionOutputLayer:
96 os << "DetectionOutputLayer";
97 break;
Isabella Gottardia7acb3c2019-01-08 13:48:44 +000098 case NodeType::DetectionPostProcessLayer:
99 os << "DetectionPostProcessLayer";
100 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100101 case NodeType::DepthwiseConvolutionLayer:
102 os << "DepthwiseConvolutionLayer";
103 break;
104 case NodeType::EltwiseLayer:
105 os << "EltwiseLayer";
106 break;
Sheri Zhang16dddd22020-05-27 15:03:48 +0100107 case NodeType::UnaryEltwiseLayer:
108 os << "UnaryEltwiseLayer";
109 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100110 case NodeType::FlattenLayer:
111 os << "FlattenLayer";
112 break;
113 case NodeType::FullyConnectedLayer:
114 os << "FullyConnectedLayer";
115 break;
giuros01acce5042019-02-21 17:32:34 +0000116 case NodeType::FusedConvolutionBatchNormalizationLayer:
117 os << "FusedConvolutionBatchNormalizationLayer";
118 break;
ramelg01b75d6242021-11-26 19:12:40 +0000119 case NodeType::FusedConvolutionBatchNormalizationLayerWithPostOpsLayer:
120 os << "FusedConvolutionBatchNormalizationLayerWithPostOpsLayer";
121 break;
Sheri Zhangfb228032021-11-02 10:45:07 +0000122 case NodeType::FusedConvolutionWithPostOp:
123 os << "FusedConvolutionWithPostOp";
124 break;
Manuel Bottinibffb41e2019-06-20 16:00:27 +0100125 case NodeType::FusedDepthwiseConvolutionBatchNormalizationLayer:
126 os << "FusedDepthwiseConvolutionBatchNormalizationLayer";
127 break;
Manuel Bottini5209be52019-02-13 16:34:56 +0000128 case NodeType::GenerateProposalsLayer:
129 os << "GenerateProposalsLayer";
130 break;
thecha013603aff2020-09-01 14:52:38 +0100131 case NodeType::L2NormalizeLayer:
132 os << "L2NormalizeLayer";
Michalis Spyrou84392f42020-10-06 20:41:21 +0100133 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100134 case NodeType::NormalizationLayer:
135 os << "NormalizationLayer";
136 break;
Michele Di Giorgio555d1102018-09-12 13:51:59 +0100137 case NodeType::NormalizePlanarYUVLayer:
138 os << "NormalizePlanarYUVLayer";
139 break;
Michele Di Giorgio4bb17332018-09-26 13:56:51 +0100140 case NodeType::PadLayer:
141 os << "PadLayer";
142 break;
Georgios Pinitas57c48242018-08-02 13:41:49 +0100143 case NodeType::PermuteLayer:
144 os << "PermuteLayer";
145 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100146 case NodeType::PoolingLayer:
147 os << "PoolingLayer";
148 break;
Georgios Pinitasf8c47492020-02-04 17:39:59 +0000149 case NodeType::PReluLayer:
150 os << "PReluLayer";
151 break;
Giorgio Arena6e9d0e02020-01-03 15:02:04 +0000152 case NodeType::PrintLayer:
153 os << "PrintLayer";
154 break;
Pablo Tello32521432018-11-15 14:43:10 +0000155 case NodeType::PriorBoxLayer:
156 os << "PriorBoxLayer";
157 break;
Isabella Gottardi3db1ba92019-05-17 12:35:20 +0100158 case NodeType::QuantizationLayer:
159 os << "QuantizationLayer";
160 break;
thecha01d64444b2020-09-07 14:50:21 +0100161 case NodeType::ReductionOperationLayer:
162 os << "ReductionOperationLayer";
163 break;
Michele Di Giorgio555d1102018-09-12 13:51:59 +0100164 case NodeType::ReorgLayer:
165 os << "ReorgLayer";
166 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100167 case NodeType::ReshapeLayer:
168 os << "ReshapeLayer";
169 break;
170 case NodeType::ResizeLayer:
171 os << "ResizeLayer";
172 break;
Manuel Bottini3f9d4d72018-10-19 14:04:42 +0100173 case NodeType::ROIAlignLayer:
174 os << "ROIAlignLayer";
175 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100176 case NodeType::SoftmaxLayer:
177 os << "SoftmaxLayer";
178 break;
Michele Di Giorgioc30b6682018-09-12 17:44:08 +0100179 case NodeType::SliceLayer:
180 os << "SliceLayer";
181 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100182 case NodeType::SplitLayer:
183 os << "SplitLayer";
184 break;
Michele Di Giorgioec699752019-03-22 15:25:32 +0000185 case NodeType::StackLayer:
186 os << "StackLayer";
187 break;
thecha012bfadd92020-08-12 17:25:51 +0100188 case NodeType::StridedSliceLayer:
189 os << "StridedSliceLayer";
190 break;
Michalis Spyrou4e1c3f32018-09-20 17:14:03 +0100191 case NodeType::UpsampleLayer:
192 os << "UpsampleLayer";
193 break;
Georgios Pinitasda2491f2018-06-01 17:49:09 +0100194 case NodeType::Input:
195 os << "Input";
196 break;
197 case NodeType::Output:
198 os << "Output";
199 break;
200 case NodeType::Const:
201 os << "Const";
202 break;
203 case NodeType::Dummy:
204 os << "Dummy";
205 break;
206 default:
207 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
208 }
209
210 return os;
211}
212
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000213/** Formatted output of the EltwiseOperation type. */
214inline ::std::ostream &operator<<(::std::ostream &os, const EltwiseOperation &eltwise_op)
215{
216 switch(eltwise_op)
217 {
Georgios Pinitase2220552018-07-20 13:23:44 +0100218 case EltwiseOperation::Add:
219 os << "Add";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000220 break;
Georgios Pinitase2220552018-07-20 13:23:44 +0100221 case EltwiseOperation::Mul:
222 os << "Mul";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000223 break;
Georgios Pinitase2220552018-07-20 13:23:44 +0100224 case EltwiseOperation::Sub:
225 os << "Sub";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000226 break;
Alessandro Navone6413e492021-02-02 11:39:05 +0000227 case EltwiseOperation::Div:
228 os << "Div";
229 break;
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000230 default:
231 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
232 }
233
234 return os;
235}
236
237/** Formatted output of the ConvolutionMethod type. */
238inline ::std::ostream &operator<<(::std::ostream &os, const ConvolutionMethod &method)
239{
240 switch(method)
241 {
Georgios Pinitase2220552018-07-20 13:23:44 +0100242 case ConvolutionMethod::Default:
243 os << "Default";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000244 break;
Georgios Pinitase2220552018-07-20 13:23:44 +0100245 case ConvolutionMethod::Direct:
246 os << "Direct";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000247 break;
248 case ConvolutionMethod::GEMM:
249 os << "GEMM";
250 break;
Georgios Pinitase2220552018-07-20 13:23:44 +0100251 case ConvolutionMethod::Winograd:
252 os << "Winograd";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000253 break;
254 default:
255 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
256 }
257
258 return os;
259}
260
Giorgio Arena59631a12018-05-02 13:59:04 +0100261/** Formatted output of the FastMathHint type. */
262inline ::std::ostream &operator<<(::std::ostream &os, const FastMathHint &hint)
263{
264 switch(hint)
265 {
Georgios Pinitase2220552018-07-20 13:23:44 +0100266 case FastMathHint::Enabled:
267 os << "Enabled";
Giorgio Arena59631a12018-05-02 13:59:04 +0100268 break;
Georgios Pinitase2220552018-07-20 13:23:44 +0100269 case FastMathHint::Disabled:
270 os << "Disabled";
Giorgio Arena59631a12018-05-02 13:59:04 +0100271 break;
272 default:
273 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
274 }
275
276 return os;
277}
278
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000279/** Formatted output of the DepthwiseConvolutionMethod type. */
280inline ::std::ostream &operator<<(::std::ostream &os, const DepthwiseConvolutionMethod &method)
281{
282 switch(method)
283 {
Georgios Pinitase2220552018-07-20 13:23:44 +0100284 case DepthwiseConvolutionMethod::Default:
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000285 os << "DEFAULT";
286 break;
Georgios Pinitase2220552018-07-20 13:23:44 +0100287 case DepthwiseConvolutionMethod::Optimized3x3:
288 os << "Optimized3x3";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000289 break;
290 default:
291 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
292 }
293
294 return os;
295}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100296} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000297} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000298#endif /* ARM_COMPUTE_GRAPH_TYPE_PRINTER_H */