blob: 7c23399bc10afbc39428b3aa8cb3a7192e7d98e9 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Manuel Bottinib412fab2018-12-10 17:40:23 +00002 * Copyright (c) 2017-2019 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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 */
Anthony Barbier4dbc0a92018-08-27 13:39:47 +010024#ifndef __ARM_COMPUTE_TYPE_PRINTER_H__
25#define __ARM_COMPUTE_TYPE_PRINTER_H__
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
Isabella Gottardif07d28d2018-02-06 14:52:43 +000027#include "arm_compute/core/CL/CLTypes.h"
Anthony Barbier8914e322018-08-10 15:28:25 +010028#include "arm_compute/core/CPP/CPPTypes.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/Dimensions.h"
30#include "arm_compute/core/Error.h"
Michele Di Giorgiob8fc60f2018-04-25 11:58:07 +010031#include "arm_compute/core/GPUTarget.h"
John Richardson25f23682017-11-27 14:35:09 +000032#include "arm_compute/core/HOGInfo.h"
33#include "arm_compute/core/Size2D.h"
John Richardsona36eae12017-09-26 16:55:59 +010034#include "arm_compute/core/Strides.h"
Georgios Pinitas3faea252017-10-30 14:13:50 +000035#include "arm_compute/core/TensorInfo.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010036#include "arm_compute/core/Types.h"
37
38#include <ostream>
Moritz Pflanzeree493ae2017-07-05 10:52:21 +010039#include <sstream>
40#include <string>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010041
42namespace arm_compute
43{
Anthony Barbierb940fd62018-06-04 14:14:32 +010044/** Formatted output if arg is not null
45 *
46 * @param[in] arg Object to print
47 *
48 * @return String representing arg.
49 */
50template <typename T>
51std::string to_string_if_not_null(T *arg)
52{
53 if(arg == nullptr)
54 {
55 return "nullptr";
56 }
57 else
58 {
59 return to_string(*arg);
60 }
61}
Alex Gildayc357c472018-03-21 13:54:09 +000062/** Formatted output of the Dimensions type.
63 *
64 * @param[out] os Output stream.
65 * @param[in] dimensions Type to output.
66 *
67 * @return Modified output stream.
68 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069template <typename T>
70inline ::std::ostream &operator<<(::std::ostream &os, const Dimensions<T> &dimensions)
71{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010072 if(dimensions.num_dimensions() > 0)
73 {
74 os << dimensions[0];
75
76 for(unsigned int d = 1; d < dimensions.num_dimensions(); ++d)
77 {
Moritz Pflanzerc87fbf82017-07-18 14:02:10 +010078 os << "x" << dimensions[d];
Anthony Barbier6ff3b192017-09-04 18:44:23 +010079 }
80 }
81
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082 return os;
83}
84
Alex Gildayc357c472018-03-21 13:54:09 +000085/** Formatted output of the NonLinearFilterFunction type.
86 *
87 * @param[out] os Output stream.
88 * @param[in] function Type to output.
89 *
90 * @return Modified output stream.
91 */
Isabella Gottardi3b77e9d2017-06-22 11:05:41 +010092inline ::std::ostream &operator<<(::std::ostream &os, const NonLinearFilterFunction &function)
93{
94 switch(function)
95 {
96 case NonLinearFilterFunction::MAX:
97 os << "MAX";
98 break;
99 case NonLinearFilterFunction::MEDIAN:
100 os << "MEDIAN";
101 break;
102 case NonLinearFilterFunction::MIN:
103 os << "MIN";
104 break;
105 default:
106 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
107 }
108
109 return os;
110}
111
Alex Gildayc357c472018-03-21 13:54:09 +0000112/** Formatted output of the NonLinearFilterFunction type.
113 *
114 * @param[in] function Type to output.
115 *
116 * @return Formatted string.
117 */
John Richardson6f4d49f2017-09-07 11:21:10 +0100118inline std::string to_string(const NonLinearFilterFunction &function)
119{
120 std::stringstream str;
121 str << function;
122 return str.str();
123}
124
Alex Gildayc357c472018-03-21 13:54:09 +0000125/** Formatted output of the MatrixPattern type.
126 *
127 * @param[out] os Output stream.
128 * @param[in] pattern Type to output.
129 *
130 * @return Modified output stream.
131 */
Isabella Gottardi3b77e9d2017-06-22 11:05:41 +0100132inline ::std::ostream &operator<<(::std::ostream &os, const MatrixPattern &pattern)
133{
134 switch(pattern)
135 {
136 case MatrixPattern::BOX:
137 os << "BOX";
138 break;
139 case MatrixPattern::CROSS:
140 os << "CROSS";
141 break;
142 case MatrixPattern::DISK:
143 os << "DISK";
144 break;
145 case MatrixPattern::OTHER:
146 os << "OTHER";
147 break;
148 default:
149 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
150 }
151
152 return os;
153}
154
Alex Gildayc357c472018-03-21 13:54:09 +0000155/** Formatted output of the MatrixPattern type.
156 *
157 * @param[in] pattern Type to output.
158 *
159 * @return Formatted string.
160 */
John Richardson6f4d49f2017-09-07 11:21:10 +0100161inline std::string to_string(const MatrixPattern &pattern)
162{
163 std::stringstream str;
164 str << pattern;
165 return str.str();
166}
167
Alex Gildayc357c472018-03-21 13:54:09 +0000168/** Formatted output of the RoundingPolicy type.
169 *
170 * @param[out] os Output stream.
171 * @param[in] rounding_policy Type to output.
172 *
173 * @return Modified output stream.
174 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100175inline ::std::ostream &operator<<(::std::ostream &os, const RoundingPolicy &rounding_policy)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100176{
Anthony Barbier2a07e182017-08-04 18:20:27 +0100177 switch(rounding_policy)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100178 {
Anthony Barbier2a07e182017-08-04 18:20:27 +0100179 case RoundingPolicy::TO_ZERO:
180 os << "TO_ZERO";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100181 break;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100182 case RoundingPolicy::TO_NEAREST_UP:
183 os << "TO_NEAREST_UP";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100184 break;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100185 case RoundingPolicy::TO_NEAREST_EVEN:
186 os << "TO_NEAREST_EVEN";
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100187 break;
188 default:
189 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
190 }
191
192 return os;
193}
194
Alex Gildayc357c472018-03-21 13:54:09 +0000195/** Formatted output of the WeightsInfo type.
196 *
197 * @param[out] os Output stream.
198 * @param[in] weights_info Type to output.
199 *
200 * @return Modified output stream.
201 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100202inline ::std::ostream &operator<<(::std::ostream &os, const WeightsInfo &weights_info)
Isabella Gottardi1fab09f2017-07-13 15:55:57 +0100203{
Anthony Barbier2a07e182017-08-04 18:20:27 +0100204 os << weights_info.are_reshaped() << ";";
205 os << weights_info.num_kernels() << ";" << weights_info.kernel_size().first << "," << weights_info.kernel_size().second;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100206
207 return os;
208}
209
Alex Gildayc357c472018-03-21 13:54:09 +0000210/** Formatted output of the ROIPoolingInfo type.
211 *
212 * @param[out] os Output stream.
213 * @param[in] pool_info Type to output.
214 *
215 * @return Modified output stream.
216 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100217inline ::std::ostream &operator<<(::std::ostream &os, const ROIPoolingLayerInfo &pool_info)
Sanghoon Lee70f82912017-08-24 14:21:24 +0100218{
Anthony Barbier2a07e182017-08-04 18:20:27 +0100219 os << pool_info.pooled_width() << "x" << pool_info.pooled_height() << "~" << pool_info.spatial_scale();
Georgios Pinitasd9769582017-08-03 10:19:40 +0100220 return os;
221}
222
giuros0118870812018-09-13 09:31:40 +0100223/** Formatted output of the ROIPoolingInfo type.
224 *
225 * @param[in] pool_info Type to output.
226 *
227 * @return Formatted string.
228 */
229inline std::string to_string(const ROIPoolingLayerInfo &pool_info)
230{
231 std::stringstream str;
232 str << pool_info;
233 return str.str();
234}
235
giuros01c04a0e82018-10-03 12:44:35 +0100236/** Formatted output of the BoundingBoxTransformInfo type.
237 *
238 * @param[out] os Output stream.
239 * @param[in] bbox_info Type to output.
240 *
241 * @return Modified output stream.
242 */
243inline ::std::ostream &operator<<(::std::ostream &os, const BoundingBoxTransformInfo &bbox_info)
244{
245 auto weights = bbox_info.weights();
246 os << "(" << bbox_info.img_width() << "x" << bbox_info.img_height() << ")~" << bbox_info.scale() << "(weights = {" << weights[0] << ", " << weights[1] << ", " << weights[2] << ", " << weights[3] <<
247 "})";
248 return os;
249}
250
251/** Formatted output of the BoundingBoxTransformInfo type.
252 *
253 * @param[in] bbox_info Type to output.
254 *
255 * @return Formatted string.
256 */
257inline std::string to_string(const BoundingBoxTransformInfo &bbox_info)
258{
259 std::stringstream str;
260 str << bbox_info;
261 return str.str();
262}
263
Manuel Bottini5209be52019-02-13 16:34:56 +0000264/** Formatted output of the ComputeAnchorsInfo type.
265 *
266 * @param[out] os Output stream.
267 * @param[in] anchors_info Type to output.
268 *
269 * @return Modified output stream.
270 */
271inline ::std::ostream &operator<<(::std::ostream &os, const ComputeAnchorsInfo &anchors_info)
272{
273 os << "(" << anchors_info.feat_width() << "x" << anchors_info.feat_height() << ")~" << anchors_info.spatial_scale();
274 return os;
275}
276
277/** Formatted output of the ComputeAnchorsInfo type.
278 *
279 * @param[in] anchors_info Type to output.
280 *
281 * @return Formatted string.
282 */
283inline std::string to_string(const ComputeAnchorsInfo &anchors_info)
284{
285 std::stringstream str;
286 str << anchors_info;
287 return str.str();
288}
289
290/** Formatted output of the GenerateProposalsInfo type.
291 *
292 * @param[out] os Output stream.
293 * @param[in] proposals_info Type to output.
294 *
295 * @return Modified output stream.
296 */
297inline ::std::ostream &operator<<(::std::ostream &os, const GenerateProposalsInfo &proposals_info)
298{
299 os << "(" << proposals_info.im_width() << "x" << proposals_info.im_height() << ")~" << proposals_info.im_scale();
300 return os;
301}
302
303/** Formatted output of the GenerateProposalsInfo type.
304 *
305 * @param[in] proposals_info Type to output.
306 *
307 * @return Formatted string.
308 */
309inline std::string to_string(const GenerateProposalsInfo &proposals_info)
310{
311 std::stringstream str;
312 str << proposals_info;
313 return str.str();
314}
315
Alex Gildayc357c472018-03-21 13:54:09 +0000316/** Formatted output of the QuantizationInfo type.
317 *
318 * @param[out] os Output stream.
319 * @param[in] quantization_info Type to output.
320 *
321 * @return Modified output stream.
322 */
Chunosovd621bca2017-11-03 17:33:15 +0700323inline ::std::ostream &operator<<(::std::ostream &os, const QuantizationInfo &quantization_info)
324{
325 os << "Scale:" << quantization_info.scale << "~"
326 << "Offset:" << quantization_info.offset;
327 return os;
328}
329
Alex Gildayc357c472018-03-21 13:54:09 +0000330/** Formatted output of the QuantizationInfo type.
331 *
332 * @param[in] quantization_info Type to output.
333 *
334 * @return Formatted string.
335 */
Chunosovd621bca2017-11-03 17:33:15 +0700336inline std::string to_string(const QuantizationInfo &quantization_info)
337{
338 std::stringstream str;
339 str << quantization_info;
340 return str.str();
341}
342
Alex Gildayc357c472018-03-21 13:54:09 +0000343/** Formatted output of the activation function type.
344 *
345 * @param[out] os Output stream.
346 * @param[in] act_function Type to output.
347 *
348 * @return Modified output stream.
349 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100350inline ::std::ostream &operator<<(::std::ostream &os, const ActivationLayerInfo::ActivationFunction &act_function)
351{
352 switch(act_function)
353 {
354 case ActivationLayerInfo::ActivationFunction::ABS:
355 os << "ABS";
356 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100357 case ActivationLayerInfo::ActivationFunction::LINEAR:
358 os << "LINEAR";
359 break;
360 case ActivationLayerInfo::ActivationFunction::LOGISTIC:
361 os << "LOGISTIC";
362 break;
363 case ActivationLayerInfo::ActivationFunction::RELU:
364 os << "RELU";
365 break;
Georgios Pinitas579c0492017-07-12 16:12:12 +0100366 case ActivationLayerInfo::ActivationFunction::BOUNDED_RELU:
367 os << "BOUNDED_RELU";
368 break;
369 case ActivationLayerInfo::ActivationFunction::LEAKY_RELU:
370 os << "LEAKY_RELU";
371 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100372 case ActivationLayerInfo::ActivationFunction::SOFT_RELU:
373 os << "SOFT_RELU";
374 break;
375 case ActivationLayerInfo::ActivationFunction::SQRT:
376 os << "SQRT";
377 break;
Anthony Barbier2a07e182017-08-04 18:20:27 +0100378 case ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU:
379 os << "LU_BOUNDED_RELU";
Kevin Petitd9f80712017-12-06 12:18:48 +0000380 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100381 case ActivationLayerInfo::ActivationFunction::SQUARE:
382 os << "SQUARE";
383 break;
384 case ActivationLayerInfo::ActivationFunction::TANH:
385 os << "TANH";
386 break;
387 default:
388 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
389 }
390
391 return os;
392}
393
Alex Gildayc357c472018-03-21 13:54:09 +0000394/** Formatted output of the activation function info type.
395 *
396 * @param[in] info Type to output.
397 *
398 * @return Formatted string.
399 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100400inline std::string to_string(const arm_compute::ActivationLayerInfo &info)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100401{
402 std::stringstream str;
Isabella Gottardi3f217ec2018-02-12 14:59:19 +0000403 if(info.enabled())
404 {
405 str << info.activation();
406 }
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100407 return str.str();
408}
409
Alex Gildayc357c472018-03-21 13:54:09 +0000410/** Formatted output of the activation function type.
411 *
412 * @param[in] function Type to output.
413 *
414 * @return Formatted string.
415 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100416inline std::string to_string(const arm_compute::ActivationLayerInfo::ActivationFunction &function)
417{
418 std::stringstream str;
419 str << function;
420 return str.str();
421}
422
Alex Gildayc357c472018-03-21 13:54:09 +0000423/** Formatted output of the NormType type.
424 *
425 * @param[out] os Output stream.
426 * @param[in] norm_type Type to output.
427 *
428 * @return Modified output stream.
429 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100430inline ::std::ostream &operator<<(::std::ostream &os, const NormType &norm_type)
431{
432 switch(norm_type)
433 {
434 case NormType::CROSS_MAP:
435 os << "CROSS_MAP";
436 break;
437 case NormType::IN_MAP_1D:
438 os << "IN_MAP_1D";
439 break;
440 case NormType::IN_MAP_2D:
441 os << "IN_MAP_2D";
442 break;
443 default:
444 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
445 }
446
447 return os;
448}
449
Alex Gildayc357c472018-03-21 13:54:09 +0000450/** Formatted output of @ref NormalizationLayerInfo.
451 *
452 * @param[in] info Type to output.
453 *
454 * @return Formatted string.
455 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100456inline std::string to_string(const arm_compute::NormalizationLayerInfo &info)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100457{
458 std::stringstream str;
Michalis Spyroud466c2d2018-01-30 10:54:39 +0000459 str << info.type() << ":NormSize=" << info.norm_size();
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100460 return str.str();
461}
462
Alex Gildayc357c472018-03-21 13:54:09 +0000463/** Formatted output of @ref NormalizationLayerInfo.
464 *
465 * @param[out] os Output stream.
466 * @param[in] info Type to output.
467 *
468 * @return Modified output stream.
469 */
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100470inline ::std::ostream &operator<<(::std::ostream &os, const NormalizationLayerInfo &info)
471{
Michalis Spyroud466c2d2018-01-30 10:54:39 +0000472 os << info.type() << ":NormSize=" << info.norm_size();
Georgios Pinitas6f669f02017-09-26 12:32:57 +0100473 return os;
474}
475
Alex Gildayc357c472018-03-21 13:54:09 +0000476/** Formatted output of the PoolingType type.
477 *
478 * @param[out] os Output stream.
479 * @param[in] pool_type Type to output.
480 *
481 * @return Modified output stream.
482 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100483inline ::std::ostream &operator<<(::std::ostream &os, const PoolingType &pool_type)
484{
485 switch(pool_type)
486 {
487 case PoolingType::AVG:
488 os << "AVG";
489 break;
490 case PoolingType::MAX:
491 os << "MAX";
492 break;
Georgios Pinitascdf51452017-08-31 14:21:36 +0100493 case PoolingType::L2:
494 os << "L2";
495 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100496 default:
497 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
498 }
499
500 return os;
501}
502
Alex Gildayc357c472018-03-21 13:54:09 +0000503/** Formatted output of @ref PoolingLayerInfo.
504 *
505 * @param[out] os Output stream.
506 * @param[in] info Type to output.
507 *
508 * @return Modified output stream.
509 */
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100510inline ::std::ostream &operator<<(::std::ostream &os, const PoolingLayerInfo &info)
511{
Anthony Barbier2a07e182017-08-04 18:20:27 +0100512 os << info.pool_type();
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100513
514 return os;
515}
516
Alex Gildayc357c472018-03-21 13:54:09 +0000517/** Formatted output of @ref RoundingPolicy.
518 *
519 * @param[in] rounding_policy Type to output.
520 *
521 * @return Formatted string.
522 */
John Richardsondd715f22017-09-18 16:10:48 +0100523inline std::string to_string(const RoundingPolicy &rounding_policy)
524{
525 std::stringstream str;
526 str << rounding_policy;
527 return str.str();
528}
529
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000530/** [Print DataLayout type] **/
Alex Gildayc357c472018-03-21 13:54:09 +0000531/** Formatted output of the DataLayout type.
532 *
533 * @param[out] os Output stream.
534 * @param[in] data_layout Type to output.
535 *
536 * @return Modified output stream.
537 */
Michele Di Giorgio4a65b982018-03-02 11:21:38 +0000538inline ::std::ostream &operator<<(::std::ostream &os, const DataLayout &data_layout)
539{
540 switch(data_layout)
541 {
542 case DataLayout::UNKNOWN:
543 os << "UNKNOWN";
544 break;
545 case DataLayout::NHWC:
546 os << "NHWC";
547 break;
548 case DataLayout::NCHW:
549 os << "NCHW";
550 break;
551 default:
552 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
553 }
554
555 return os;
556}
557
Alex Gildayc357c472018-03-21 13:54:09 +0000558/** Formatted output of the DataLayout type.
559 *
560 * @param[in] data_layout Type to output.
561 *
562 * @return Formatted string.
563 */
Michele Di Giorgio4a65b982018-03-02 11:21:38 +0000564inline std::string to_string(const arm_compute::DataLayout &data_layout)
565{
566 std::stringstream str;
567 str << data_layout;
568 return str.str();
569}
Vidhya Sudhan Loganathand646ae12018-11-19 15:18:20 +0000570/** [Print DataLayout type] **/
Michele Di Giorgio4a65b982018-03-02 11:21:38 +0000571
Georgios Pinitase2220552018-07-20 13:23:44 +0100572/** Formatted output of the DataLayoutDimension type.
573 *
574 * @param[out] os Output stream.
575 * @param[in] data_layout_dim Data layout dimension to print.
576 *
577 * @return Modified output stream.
578 */
579inline ::std::ostream &operator<<(::std::ostream &os, const DataLayoutDimension &data_layout_dim)
580{
581 switch(data_layout_dim)
582 {
583 case DataLayoutDimension::WIDTH:
584 os << "WIDTH";
585 break;
586 case DataLayoutDimension::HEIGHT:
587 os << "HEIGHT";
588 break;
589 case DataLayoutDimension::CHANNEL:
590 os << "CHANNEL";
591 break;
592 case DataLayoutDimension::BATCHES:
593 os << "BATCHES";
594 break;
595 default:
596 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
597 }
598 return os;
599}
600
Alex Gildayc357c472018-03-21 13:54:09 +0000601/** Formatted output of the DataType type.
602 *
603 * @param[out] os Output stream.
604 * @param[in] data_type Type to output.
605 *
606 * @return Modified output stream.
607 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100608inline ::std::ostream &operator<<(::std::ostream &os, const DataType &data_type)
609{
610 switch(data_type)
611 {
612 case DataType::UNKNOWN:
613 os << "UNKNOWN";
614 break;
615 case DataType::U8:
616 os << "U8";
617 break;
Chunosovd621bca2017-11-03 17:33:15 +0700618 case DataType::QASYMM8:
619 os << "QASYMM8";
620 break;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100621 case DataType::S8:
622 os << "S8";
623 break;
624 case DataType::U16:
625 os << "U16";
626 break;
627 case DataType::S16:
628 os << "S16";
629 break;
630 case DataType::U32:
631 os << "U32";
632 break;
633 case DataType::S32:
634 os << "S32";
635 break;
636 case DataType::U64:
637 os << "U64";
638 break;
639 case DataType::S64:
640 os << "S64";
641 break;
642 case DataType::F16:
643 os << "F16";
644 break;
645 case DataType::F32:
646 os << "F32";
647 break;
648 case DataType::F64:
649 os << "F64";
650 break;
651 case DataType::SIZET:
652 os << "SIZET";
653 break;
654 default:
655 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
656 }
657
658 return os;
659}
660
Alex Gildayc357c472018-03-21 13:54:09 +0000661/** Formatted output of the DataType type.
662 *
663 * @param[in] data_type Type to output.
664 *
665 * @return Formatted string.
666 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100667inline std::string to_string(const arm_compute::DataType &data_type)
Moritz Pflanzeree493ae2017-07-05 10:52:21 +0100668{
669 std::stringstream str;
670 str << data_type;
671 return str.str();
672}
673
Alex Gildayc357c472018-03-21 13:54:09 +0000674/** Formatted output of the Format type.
675 *
676 * @param[out] os Output stream.
677 * @param[in] format Type to output.
678 *
679 * @return Modified output stream.
680 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100681inline ::std::ostream &operator<<(::std::ostream &os, const Format &format)
682{
683 switch(format)
684 {
685 case Format::UNKNOWN:
686 os << "UNKNOWN";
687 break;
688 case Format::U8:
689 os << "U8";
690 break;
691 case Format::S16:
692 os << "S16";
693 break;
694 case Format::U16:
695 os << "U16";
696 break;
697 case Format::S32:
698 os << "S32";
699 break;
700 case Format::U32:
701 os << "U32";
702 break;
703 case Format::F16:
704 os << "F16";
705 break;
706 case Format::F32:
707 os << "F32";
708 break;
709 case Format::UV88:
710 os << "UV88";
711 break;
712 case Format::RGB888:
713 os << "RGB888";
714 break;
715 case Format::RGBA8888:
716 os << "RGBA8888";
717 break;
718 case Format::YUV444:
719 os << "YUV444";
720 break;
721 case Format::YUYV422:
722 os << "YUYV422";
723 break;
724 case Format::NV12:
725 os << "NV12";
726 break;
727 case Format::NV21:
728 os << "NV21";
729 break;
730 case Format::IYUV:
731 os << "IYUV";
732 break;
733 case Format::UYVY422:
734 os << "UYVY422";
735 break;
736 default:
737 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
738 }
739
740 return os;
741}
742
Alex Gildayc357c472018-03-21 13:54:09 +0000743/** Formatted output of the Format type.
744 *
745 * @param[in] format Type to output.
746 *
747 * @return Formatted string.
748 */
Moritz Pflanzer7655a672017-09-23 11:57:33 +0100749inline std::string to_string(const Format &format)
750{
751 std::stringstream str;
752 str << format;
753 return str.str();
754}
755
Alex Gildayc357c472018-03-21 13:54:09 +0000756/** Formatted output of the Channel type.
757 *
758 * @param[out] os Output stream.
759 * @param[in] channel Type to output.
760 *
761 * @return Modified output stream.
762 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100763inline ::std::ostream &operator<<(::std::ostream &os, const Channel &channel)
764{
765 switch(channel)
766 {
767 case Channel::UNKNOWN:
768 os << "UNKNOWN";
769 break;
770 case Channel::C0:
771 os << "C0";
772 break;
773 case Channel::C1:
774 os << "C1";
775 break;
776 case Channel::C2:
777 os << "C2";
778 break;
779 case Channel::C3:
780 os << "C3";
781 break;
782 case Channel::R:
783 os << "R";
784 break;
785 case Channel::G:
786 os << "G";
787 break;
788 case Channel::B:
789 os << "B";
790 break;
791 case Channel::A:
792 os << "A";
793 break;
794 case Channel::Y:
795 os << "Y";
796 break;
797 case Channel::U:
798 os << "U";
799 break;
800 case Channel::V:
801 os << "V";
802 break;
803 default:
804 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
805 }
806
807 return os;
808}
809
Alex Gildayc357c472018-03-21 13:54:09 +0000810/** Formatted output of the Channel type.
811 *
812 * @param[in] channel Type to output.
813 *
814 * @return Formatted string.
815 */
Ioan-Cristian Szabo9414f642017-10-27 17:35:40 +0100816inline std::string to_string(const Channel &channel)
817{
818 std::stringstream str;
819 str << channel;
820 return str.str();
821}
822
Alex Gildayc357c472018-03-21 13:54:09 +0000823/** Formatted output of the BorderMode type.
824 *
825 * @param[out] os Output stream.
826 * @param[in] mode Type to output.
827 *
828 * @return Modified output stream.
829 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100830inline ::std::ostream &operator<<(::std::ostream &os, const BorderMode &mode)
831{
832 switch(mode)
833 {
834 case BorderMode::UNDEFINED:
835 os << "UNDEFINED";
836 break;
837 case BorderMode::CONSTANT:
838 os << "CONSTANT";
839 break;
840 case BorderMode::REPLICATE:
841 os << "REPLICATE";
842 break;
843 default:
844 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
845 }
846
847 return os;
848}
849
Alex Gildayc357c472018-03-21 13:54:09 +0000850/** Formatted output of the BorderSize type.
851 *
852 * @param[out] os Output stream.
853 * @param[in] border Type to output.
854 *
855 * @return Modified output stream.
856 */
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100857inline ::std::ostream &operator<<(::std::ostream &os, const BorderSize &border)
858{
Moritz Pflanzerc87fbf82017-07-18 14:02:10 +0100859 os << border.top << ","
860 << border.right << ","
861 << border.bottom << ","
862 << border.left;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100863
864 return os;
865}
Anthony Barbier2a07e182017-08-04 18:20:27 +0100866
Giuseppe Rossinid7647d42018-07-17 18:13:13 +0100867/** Formatted output of the PaddingList type.
868 *
869 * @param[out] os Output stream.
870 * @param[in] padding Type to output.
871 *
872 * @return Modified output stream.
873 */
874inline ::std::ostream &operator<<(::std::ostream &os, const PaddingList &padding)
875{
876 os << "{";
877 for(auto const &p : padding)
878 {
879 os << "{" << p.first << "," << p.second << "}";
880 }
881 os << "}";
882 return os;
883}
884
giuros013175fcf2018-11-21 09:59:17 +0000885/** Formatted output of the Multiples type.
886 *
887 * @param[out] os Output stream.
888 * @param[in] multiples Type to output.
889 *
890 * @return Modified output stream.
891 */
892inline ::std::ostream &operator<<(::std::ostream &os, const Multiples &multiples)
893{
894 os << "(";
895 for(size_t i = 0; i < multiples.size() - 1; i++)
896 {
897 os << multiples[i] << ", ";
898 }
899 os << multiples.back() << ")";
900 return os;
901}
902
Alex Gildayc357c472018-03-21 13:54:09 +0000903/** Formatted output of the InterpolationPolicy type.
904 *
905 * @param[out] os Output stream.
906 * @param[in] policy Type to output.
907 *
908 * @return Modified output stream.
909 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100910inline ::std::ostream &operator<<(::std::ostream &os, const InterpolationPolicy &policy)
911{
912 switch(policy)
913 {
914 case InterpolationPolicy::NEAREST_NEIGHBOR:
915 os << "NEAREST_NEIGHBOR";
916 break;
917 case InterpolationPolicy::BILINEAR:
918 os << "BILINEAR";
919 break;
920 case InterpolationPolicy::AREA:
921 os << "AREA";
922 break;
923 default:
924 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
925 }
926
927 return os;
928}
929
Alex Gildayc357c472018-03-21 13:54:09 +0000930/** Formatted output of the SamplingPolicy type.
931 *
932 * @param[out] os Output stream.
933 * @param[in] policy Type to output.
934 *
935 * @return Modified output stream.
936 */
Daniil Efremov02bf80d2017-11-22 00:26:51 +0700937inline ::std::ostream &operator<<(::std::ostream &os, const SamplingPolicy &policy)
938{
939 switch(policy)
940 {
941 case SamplingPolicy::CENTER:
942 os << "CENTER";
943 break;
944 case SamplingPolicy::TOP_LEFT:
945 os << "TOP_LEFT";
946 break;
947 default:
948 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
949 }
950
951 return os;
952}
953
Alex Gildayc357c472018-03-21 13:54:09 +0000954/** Formatted output of the TensorInfo type.
955 *
Anthony Barbier366628a2018-08-01 13:55:03 +0100956 * @param[out] os Output stream.
957 * @param[in] info Type to output.
958 *
959 * @return Modified output stream.
960 */
961inline ::std::ostream &operator<<(::std::ostream &os, const TensorInfo &info)
962{
963 os << "{Shape=" << info.tensor_shape() << ","
964 << "Type=" << info.data_type() << ","
965 << "Channels=" << info.num_channels() << "}";
966 return os;
967}
968/** Formatted output of the TensorInfo type.
969 *
Alex Gildayc357c472018-03-21 13:54:09 +0000970 * @param[in] info Type to output.
971 *
972 * @return Formatted string.
973 */
Georgios Pinitas3faea252017-10-30 14:13:50 +0000974inline std::string to_string(const TensorInfo &info)
975{
976 std::stringstream str;
Anthony Barbier366628a2018-08-01 13:55:03 +0100977 str << info;
Georgios Pinitas3faea252017-10-30 14:13:50 +0000978 return str.str();
979}
980
Abe Mbise925ca0f2017-10-02 19:16:33 +0100981//FIXME: Check why this doesn't work and the TensorShape and Coordinates overload are needed
Alex Gildayc357c472018-03-21 13:54:09 +0000982/** Formatted output of the Dimensions type.
983 *
984 * @param[in] dimensions Type to output.
985 *
986 * @return Formatted string.
987 */
Anthony Barbier2a07e182017-08-04 18:20:27 +0100988template <typename T>
989inline std::string to_string(const Dimensions<T> &dimensions)
990{
991 std::stringstream str;
992 str << dimensions;
993 return str.str();
994}
995
Alex Gildayc357c472018-03-21 13:54:09 +0000996/** Formatted output of the Strides type.
997 *
998 * @param[in] stride Type to output.
999 *
1000 * @return Formatted string.
1001 */
John Richardsona36eae12017-09-26 16:55:59 +01001002inline std::string to_string(const Strides &stride)
1003{
1004 std::stringstream str;
1005 str << stride;
1006 return str.str();
1007}
1008
Alex Gildayc357c472018-03-21 13:54:09 +00001009/** Formatted output of the TensorShape type.
1010 *
1011 * @param[in] shape Type to output.
1012 *
1013 * @return Formatted string.
1014 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001015inline std::string to_string(const TensorShape &shape)
1016{
1017 std::stringstream str;
1018 str << shape;
1019 return str.str();
1020}
1021
Alex Gildayc357c472018-03-21 13:54:09 +00001022/** Formatted output of the Coordinates type.
1023 *
1024 * @param[in] coord Type to output.
1025 *
1026 * @return Formatted string.
1027 */
Abe Mbise925ca0f2017-10-02 19:16:33 +01001028inline std::string to_string(const Coordinates &coord)
1029{
1030 std::stringstream str;
1031 str << coord;
1032 return str.str();
1033}
1034
Anthony Barbierb940fd62018-06-04 14:14:32 +01001035/** Formatted output of the GEMMReshapeInfo type.
1036 *
1037 * @param[out] os Output stream.
1038 * @param[in] info Type to output.
1039 *
1040 * @return Modified output stream.
1041 */
1042inline ::std::ostream &operator<<(::std::ostream &os, const GEMMReshapeInfo &info)
1043{
1044 os << "{m=" << info.m() << ",";
1045 os << "n=" << info.n() << ",";
1046 os << "k=" << info.k() << ",";
1047 os << "mult_transpose1xW_width=" << info.mult_transpose1xW_width() << ",";
1048 os << "mult_interleave4x4_height=" << info.mult_interleave4x4_height();
1049 os << "}";
1050
1051 return os;
1052}
1053
1054/** Formatted output of the GEMMInfo type.
1055 *
1056 * @param[out] os Output stream.
1057 * @param[in] info Type to output.
1058 *
1059 * @return Modified output stream.
1060 */
1061inline ::std::ostream &operator<<(::std::ostream &os, const GEMMInfo &info)
1062{
1063 os << "{is_a_reshaped=" << info.is_a_reshaped() << ",";
1064 os << "is_b_reshaped=" << info.is_b_reshaped() << ",";
1065 os << "reshape_b_only_on_first_run=" << info.reshape_b_only_on_first_run() << ",";
Anthony Barbierb940fd62018-06-04 14:14:32 +01001066 os << "}";
1067
1068 return os;
1069}
1070
1071/** Formatted output of the Window::Dimension type.
1072 *
1073 * @param[out] os Output stream.
1074 * @param[in] dim Type to output.
1075 *
1076 * @return Modified output stream.
1077 */
1078inline ::std::ostream &operator<<(::std::ostream &os, const Window::Dimension &dim)
1079{
1080 os << "{start=" << dim.start() << ", end=" << dim.end() << ", step=" << dim.step() << "}";
1081
1082 return os;
1083}
1084/** Formatted output of the Window type.
1085 *
1086 * @param[out] os Output stream.
1087 * @param[in] win Type to output.
1088 *
1089 * @return Modified output stream.
1090 */
1091inline ::std::ostream &operator<<(::std::ostream &os, const Window &win)
1092{
1093 os << "{";
1094 for(unsigned int i = 0; i < Coordinates::num_max_dimensions; i++)
1095 {
1096 if(i > 0)
1097 {
1098 os << ", ";
1099 }
1100 os << win[i];
1101 }
1102 os << "}";
1103
1104 return os;
1105}
1106
1107/** Formatted output of the WeightsInfo type.
1108 *
1109 * @param[in] info Type to output.
1110 *
1111 * @return Formatted string.
1112 */
1113inline std::string to_string(const WeightsInfo &info)
1114{
1115 std::stringstream str;
1116 str << info;
1117 return str.str();
1118}
1119
1120/** Formatted output of the GEMMReshapeInfo type.
1121 *
1122 * @param[in] info Type to output.
1123 *
1124 * @return Formatted string.
1125 */
1126inline std::string to_string(const GEMMReshapeInfo &info)
1127{
1128 std::stringstream str;
1129 str << info;
1130 return str.str();
1131}
1132
1133/** Formatted output of the GEMMInfo type.
1134 *
1135 * @param[in] info Type to output.
1136 *
1137 * @return Formatted string.
1138 */
1139inline std::string to_string(const GEMMInfo &info)
1140{
1141 std::stringstream str;
1142 str << info;
1143 return str.str();
1144}
1145
1146/** Formatted output of the Window::Dimension type.
1147 *
1148 * @param[in] dim Type to output.
1149 *
1150 * @return Formatted string.
1151 */
1152inline std::string to_string(const Window::Dimension &dim)
1153{
1154 std::stringstream str;
1155 str << dim;
1156 return str.str();
1157}
1158/** Formatted output of the Window type.
1159 *
1160 * @param[in] win Type to output.
1161 *
1162 * @return Formatted string.
1163 */
1164inline std::string to_string(const Window &win)
1165{
1166 std::stringstream str;
1167 str << win;
1168 return str.str();
1169}
1170
Alex Gildayc357c472018-03-21 13:54:09 +00001171/** Formatted output of the Rectangle type.
1172 *
1173 * @param[out] os Output stream.
1174 * @param[in] rect Type to output.
1175 *
1176 * @return Modified output stream.
1177 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001178inline ::std::ostream &operator<<(::std::ostream &os, const Rectangle &rect)
1179{
1180 os << rect.width << "x" << rect.height;
1181 os << "+" << rect.x << "+" << rect.y;
1182
1183 return os;
1184}
1185
Usama Arif8cf8c112019-03-14 15:36:54 +00001186/** Formatted output of the PaddingMode type.
1187 *
1188 * @param[out] os Output stream.
1189 * @param[in] mode Type to output.
1190 *
1191 * @return Modified output stream.
1192 */
1193inline ::std::ostream &operator<<(::std::ostream &os, const PaddingMode &mode)
1194{
1195 switch(mode)
1196 {
1197 case PaddingMode::CONSTANT:
1198 os << "CONSTANT";
1199 break;
1200 case PaddingMode::REFLECT:
1201 os << "REFLECT";
1202 break;
1203 case PaddingMode::SYMMETRIC:
1204 os << "SYMMETRIC";
1205 break;
1206 default:
1207 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1208 }
1209
1210 return os;
1211}
1212
1213/** Formatted output of the PaddingMode type.
1214 *
1215 * @param[in] mode Type to output.
1216 *
1217 * @return Formatted string.
1218 */
1219inline std::string to_string(const PaddingMode &mode)
1220{
1221 std::stringstream str;
1222 str << mode;
1223 return str.str();
1224}
1225
Alex Gildayc357c472018-03-21 13:54:09 +00001226/** Formatted output of the PadStrideInfo type.
1227 *
1228 * @param[out] os Output stream.
1229 * @param[in] pad_stride_info Type to output.
1230 *
1231 * @return Modified output stream.
1232 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001233inline ::std::ostream &operator<<(::std::ostream &os, const PadStrideInfo &pad_stride_info)
1234{
1235 os << pad_stride_info.stride().first << "," << pad_stride_info.stride().second;
1236 os << ";";
Jaroslaw Rzepeckia1ed41f2017-10-13 11:13:58 +01001237 os << pad_stride_info.pad_left() << "," << pad_stride_info.pad_right() << ","
1238 << pad_stride_info.pad_top() << "," << pad_stride_info.pad_bottom();
Anthony Barbier2a07e182017-08-04 18:20:27 +01001239
1240 return os;
1241}
1242
Alex Gildayc357c472018-03-21 13:54:09 +00001243/** Formatted output of the PadStrideInfo type.
1244 *
1245 * @param[in] pad_stride_info Type to output.
1246 *
1247 * @return Formatted string.
1248 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001249inline std::string to_string(const PadStrideInfo &pad_stride_info)
1250{
1251 std::stringstream str;
1252 str << pad_stride_info;
1253 return str.str();
1254}
1255
Alex Gildayc357c472018-03-21 13:54:09 +00001256/** Formatted output of the BorderMode type.
1257 *
1258 * @param[in] mode Type to output.
1259 *
1260 * @return Formatted string.
1261 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001262inline std::string to_string(const BorderMode &mode)
1263{
1264 std::stringstream str;
1265 str << mode;
1266 return str.str();
1267}
1268
Alex Gildayc357c472018-03-21 13:54:09 +00001269/** Formatted output of the BorderSize type.
1270 *
1271 * @param[in] border Type to output.
1272 *
1273 * @return Formatted string.
1274 */
John Richardsonb482ce12017-09-18 12:44:01 +01001275inline std::string to_string(const BorderSize &border)
1276{
1277 std::stringstream str;
1278 str << border;
1279 return str.str();
1280}
1281
Giuseppe Rossinid7647d42018-07-17 18:13:13 +01001282/** Formatted output of the PaddingList type.
1283 *
1284 * @param[in] padding Type to output.
1285 *
1286 * @return Formatted string.
1287 */
1288inline std::string to_string(const PaddingList &padding)
1289{
1290 std::stringstream str;
1291 str << padding;
1292 return str.str();
1293}
1294
giuros013175fcf2018-11-21 09:59:17 +00001295/** Formatted output of the Multiples type.
1296 *
1297 * @param[in] multiples Type to output.
1298 *
1299 * @return Formatted string.
1300 */
1301inline std::string to_string(const Multiples &multiples)
1302{
1303 std::stringstream str;
1304 str << multiples;
1305 return str.str();
1306}
1307
Alex Gildayc357c472018-03-21 13:54:09 +00001308/** Formatted output of the InterpolationPolicy type.
1309 *
1310 * @param[in] policy Type to output.
1311 *
1312 * @return Formatted string.
1313 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001314inline std::string to_string(const InterpolationPolicy &policy)
1315{
1316 std::stringstream str;
1317 str << policy;
1318 return str.str();
1319}
1320
Alex Gildayc357c472018-03-21 13:54:09 +00001321/** Formatted output of the SamplingPolicy type.
1322 *
1323 * @param[in] policy Type to output.
1324 *
1325 * @return Formatted string.
1326 */
Daniil Efremov02bf80d2017-11-22 00:26:51 +07001327inline std::string to_string(const SamplingPolicy &policy)
1328{
1329 std::stringstream str;
1330 str << policy;
1331 return str.str();
1332}
1333
Alex Gildayc357c472018-03-21 13:54:09 +00001334/** Formatted output of the ConvertPolicy type.
1335 *
1336 * @param[out] os Output stream.
1337 * @param[in] policy Type to output.
1338 *
1339 * @return Modified output stream.
1340 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001341inline ::std::ostream &operator<<(::std::ostream &os, const ConvertPolicy &policy)
1342{
1343 switch(policy)
1344 {
1345 case ConvertPolicy::WRAP:
1346 os << "WRAP";
1347 break;
1348 case ConvertPolicy::SATURATE:
1349 os << "SATURATE";
1350 break;
1351 default:
1352 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1353 }
1354
1355 return os;
1356}
1357
1358inline std::string to_string(const ConvertPolicy &policy)
1359{
1360 std::stringstream str;
1361 str << policy;
1362 return str.str();
1363}
1364
giuros01164a2722018-11-20 18:34:46 +00001365/** Formatted output of the ArithmeticOperation type.
1366 *
1367 * @param[out] os Output stream.
1368 * @param[in] op Operation to output.
1369 *
1370 * @return Modified output stream.
1371 */
1372inline ::std::ostream &operator<<(::std::ostream &os, const ArithmeticOperation &op)
1373{
1374 switch(op)
1375 {
1376 case ArithmeticOperation::ADD:
1377 os << "ADD";
1378 break;
1379 case ArithmeticOperation::SUB:
1380 os << "SUB";
1381 break;
1382 case ArithmeticOperation::DIV:
1383 os << "DIV";
1384 break;
1385 case ArithmeticOperation::MAX:
1386 os << "MAX";
1387 break;
1388 case ArithmeticOperation::MIN:
1389 os << "MIN";
1390 break;
1391 case ArithmeticOperation::SQUARED_DIFF:
1392 os << "SQUARED_DIFF";
1393 break;
1394 default:
1395 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1396 }
1397
1398 return os;
1399}
1400
1401/** Formatted output of the Arithmetic Operation
1402 *
1403 * @param[in] op Type to output.
1404 *
1405 * @return Formatted string.
1406 */
1407inline std::string to_string(const ArithmeticOperation &op)
1408{
1409 std::stringstream str;
1410 str << op;
1411 return str.str();
1412}
1413
Alex Gildayc357c472018-03-21 13:54:09 +00001414/** Formatted output of the Reduction Operations.
1415 *
1416 * @param[out] os Output stream.
1417 * @param[in] op Type to output.
1418 *
1419 * @return Modified output stream.
1420 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001421inline ::std::ostream &operator<<(::std::ostream &os, const ReductionOperation &op)
1422{
1423 switch(op)
1424 {
Michalis Spyrou7e9391b2018-10-05 14:49:28 +01001425 case ReductionOperation::SUM:
1426 os << "SUM";
1427 break;
Anthony Barbier2a07e182017-08-04 18:20:27 +01001428 case ReductionOperation::SUM_SQUARE:
1429 os << "SUM_SQUARE";
1430 break;
Michalis Spyrou7e9391b2018-10-05 14:49:28 +01001431 case ReductionOperation::MEAN_SUM:
1432 os << "MEAN_SUM";
1433 break;
Michalis Spyrou7930db42018-11-22 17:36:28 +00001434 case ReductionOperation::ARG_IDX_MAX:
1435 os << "ARG_IDX_MAX";
1436 break;
1437 case ReductionOperation::ARG_IDX_MIN:
1438 os << "ARG_IDX_MIN";
1439 break;
Manuel Bottinib412fab2018-12-10 17:40:23 +00001440 case ReductionOperation::PROD:
1441 os << "PROD";
1442 break;
Anthony Barbier2a07e182017-08-04 18:20:27 +01001443 default:
1444 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1445 }
1446
1447 return os;
1448}
1449
Alex Gildayc357c472018-03-21 13:54:09 +00001450/** Formatted output of the Reduction Operations.
1451 *
1452 * @param[in] op Type to output.
1453 *
1454 * @return Formatted string.
1455 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001456inline std::string to_string(const ReductionOperation &op)
1457{
1458 std::stringstream str;
1459 str << op;
1460 return str.str();
1461}
1462
Georgios Pinitas7900a9e2018-11-23 11:44:58 +00001463/** Formatted output of the Comparison Operations.
1464 *
1465 * @param[out] os Output stream.
1466 * @param[in] op Type to output.
1467 *
1468 * @return Modified output stream.
1469 */
1470inline ::std::ostream &operator<<(::std::ostream &os, const ComparisonOperation &op)
1471{
1472 switch(op)
1473 {
1474 case ComparisonOperation::Equal:
1475 os << "Equal";
1476 break;
1477 case ComparisonOperation::NotEqual:
1478 os << "NotEqual";
1479 break;
1480 case ComparisonOperation::Greater:
1481 os << "Greater";
1482 break;
1483 case ComparisonOperation::GreaterEqual:
1484 os << "GreaterEqual";
1485 break;
1486 case ComparisonOperation::Less:
1487 os << "Less";
1488 break;
1489 case ComparisonOperation::LessEqual:
1490 os << "LessEqual";
1491 break;
1492 default:
1493 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1494 }
1495
1496 return os;
1497}
1498
Michalis Spyroue9362622018-11-23 17:41:37 +00001499/** Formatted output of the Elementwise unary Operations.
1500 *
1501 * @param[out] os Output stream.
1502 * @param[in] op Type to output.
1503 *
1504 * @return Modified output stream.
1505 */
1506inline ::std::ostream &operator<<(::std::ostream &os, const ElementWiseUnary &op)
1507{
1508 switch(op)
1509 {
1510 case ElementWiseUnary::RSQRT:
1511 os << "RSQRT";
1512 break;
1513 case ElementWiseUnary::EXP:
1514 os << "EXP";
1515 break;
1516 default:
1517 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1518 }
1519
1520 return os;
1521}
1522
Georgios Pinitas7900a9e2018-11-23 11:44:58 +00001523/** Formatted output of the Comparison Operations.
1524 *
1525 * @param[in] op Type to output.
1526 *
1527 * @return Formatted string.
1528 */
1529inline std::string to_string(const ComparisonOperation &op)
1530{
1531 std::stringstream str;
1532 str << op;
1533 return str.str();
1534}
1535
Michalis Spyroue9362622018-11-23 17:41:37 +00001536/** Formatted output of the Elementwise unary Operations.
1537 *
1538 * @param[in] op Type to output.
1539 *
1540 * @return Formatted string.
1541 */
1542inline std::string to_string(const ElementWiseUnary &op)
1543{
1544 std::stringstream str;
1545 str << op;
1546 return str.str();
1547}
1548
Alex Gildayc357c472018-03-21 13:54:09 +00001549/** Formatted output of the Norm Type.
1550 *
1551 * @param[in] type Type to output.
1552 *
1553 * @return Formatted string.
1554 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001555inline std::string to_string(const NormType &type)
1556{
1557 std::stringstream str;
1558 str << type;
1559 return str.str();
1560}
1561
Alex Gildayc357c472018-03-21 13:54:09 +00001562/** Formatted output of the Pooling Type.
1563 *
1564 * @param[in] type Type to output.
1565 *
1566 * @return Formatted string.
1567 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001568inline std::string to_string(const PoolingType &type)
1569{
1570 std::stringstream str;
1571 str << type;
1572 return str.str();
1573}
1574
Alex Gildayc357c472018-03-21 13:54:09 +00001575/** Formatted output of the Pooling Layer Info.
1576 *
1577 * @param[in] info Type to output.
1578 *
1579 * @return Formatted string.
1580 */
Anthony Barbier2a07e182017-08-04 18:20:27 +01001581inline std::string to_string(const PoolingLayerInfo &info)
1582{
1583 std::stringstream str;
Georgios Pinitas4c2dd542017-11-13 12:58:41 +00001584 str << "{Type=" << info.pool_type() << ","
1585 << "IsGlobalPooling=" << info.is_global_pooling();
1586 if(!info.is_global_pooling())
1587 {
1588 str << ","
Isabella Gottardi6e464c32018-01-26 12:32:45 +00001589 << "PoolSize=" << info.pool_size().width << "," << info.pool_size().height << ","
Georgios Pinitas4c2dd542017-11-13 12:58:41 +00001590 << "PadStride=" << info.pad_stride_info();
1591 }
1592 str << "}";
Anthony Barbier2a07e182017-08-04 18:20:27 +01001593 return str.str();
1594}
1595
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +01001596/** Formatted output of the PriorBoxLayerInfo.
1597 *
1598 * @param[in] info Type to output.
1599 *
1600 * @return Formatted string.
1601 */
1602inline std::string to_string(const PriorBoxLayerInfo &info)
1603{
1604 std::stringstream str;
1605 str << "{";
1606 str << "Clip:" << info.clip()
1607 << "Flip:" << info.flip()
1608 << "StepX:" << info.steps()[0]
1609 << "StepY:" << info.steps()[1]
1610 << "MinSizes:" << info.min_sizes().size()
1611 << "MaxSizes:" << info.max_sizes().size()
1612 << "ImgSizeX:" << info.img_size().x
1613 << "ImgSizeY:" << info.img_size().y
1614 << "Offset:" << info.offset()
1615 << "Variances:" << info.variances().size();
1616 str << "}";
1617 return str.str();
1618}
1619
Alex Gildayc357c472018-03-21 13:54:09 +00001620/** Formatted output of the KeyPoint type.
1621 *
1622 * @param[out] os Output stream
1623 * @param[in] point Type to output.
1624 *
1625 * @return Modified output stream.
1626 */
Moritz Pflanzer6c6597c2017-09-24 12:09:41 +01001627inline ::std::ostream &operator<<(::std::ostream &os, const KeyPoint &point)
1628{
1629 os << "{x=" << point.x << ","
1630 << "y=" << point.y << ","
1631 << "strength=" << point.strength << ","
1632 << "scale=" << point.scale << ","
1633 << "orientation=" << point.orientation << ","
1634 << "tracking_status=" << point.tracking_status << ","
1635 << "error=" << point.error << "}";
1636
1637 return os;
1638}
John Richardson63e50412017-10-13 20:51:42 +01001639
Alex Gildayc357c472018-03-21 13:54:09 +00001640/** Formatted output of the PhaseType type.
1641 *
1642 * @param[out] os Output stream
1643 * @param[in] phase_type Type to output.
1644 *
1645 * @return Modified output stream.
1646 */
John Richardson63e50412017-10-13 20:51:42 +01001647inline ::std::ostream &operator<<(::std::ostream &os, const PhaseType &phase_type)
1648{
1649 switch(phase_type)
1650 {
1651 case PhaseType::SIGNED:
1652 os << "SIGNED";
1653 break;
1654 case PhaseType::UNSIGNED:
1655 os << "UNSIGNED";
1656 break;
1657 default:
1658 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1659 }
1660
1661 return os;
1662}
1663
Alex Gildayc357c472018-03-21 13:54:09 +00001664/** Formatted output of the PhaseType type.
1665 *
1666 * @param[in] type Type to output.
1667 *
1668 * @return Formatted string.
1669 */
John Richardson63e50412017-10-13 20:51:42 +01001670inline std::string to_string(const arm_compute::PhaseType &type)
1671{
1672 std::stringstream str;
1673 str << type;
1674 return str.str();
1675}
John Richardson3c5f9492017-10-04 15:27:37 +01001676
Alex Gildayc357c472018-03-21 13:54:09 +00001677/** Formatted output of the MagnitudeType type.
1678 *
1679 * @param[out] os Output stream
1680 * @param[in] magnitude_type Type to output.
1681 *
1682 * @return Modified output stream.
1683 */
John Richardson3c5f9492017-10-04 15:27:37 +01001684inline ::std::ostream &operator<<(::std::ostream &os, const MagnitudeType &magnitude_type)
1685{
1686 switch(magnitude_type)
1687 {
1688 case MagnitudeType::L1NORM:
1689 os << "L1NORM";
1690 break;
1691 case MagnitudeType::L2NORM:
1692 os << "L2NORM";
1693 break;
1694 default:
1695 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1696 }
1697
1698 return os;
1699}
1700
Alex Gildayc357c472018-03-21 13:54:09 +00001701/** Formatted output of the MagnitudeType type.
1702 *
1703 * @param[in] type Type to output.
1704 *
1705 * @return Formatted string.
1706 */
John Richardson3c5f9492017-10-04 15:27:37 +01001707inline std::string to_string(const arm_compute::MagnitudeType &type)
1708{
1709 std::stringstream str;
1710 str << type;
1711 return str.str();
1712}
John Richardson1c529922017-11-01 10:57:48 +00001713
Alex Gildayc357c472018-03-21 13:54:09 +00001714/** Formatted output of the HOGNormType type.
1715 *
1716 * @param[out] os Output stream
1717 * @param[in] norm_type Type to output
1718 *
1719 * @return Modified output stream.
1720 */
John Richardson25f23682017-11-27 14:35:09 +00001721inline ::std::ostream &operator<<(::std::ostream &os, const HOGNormType &norm_type)
1722{
1723 switch(norm_type)
1724 {
1725 case HOGNormType::L1_NORM:
1726 os << "L1_NORM";
1727 break;
1728 case HOGNormType::L2_NORM:
1729 os << "L2_NORM";
1730 break;
1731 case HOGNormType::L2HYS_NORM:
1732 os << "L2HYS_NORM";
1733 break;
1734 default:
1735 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1736 }
1737
1738 return os;
1739}
1740
Alex Gildayc357c472018-03-21 13:54:09 +00001741/** Formatted output of the HOGNormType type.
1742 *
1743 * @param[in] type Type to output
1744 *
1745 * @return Formatted string.
1746 */
John Richardson25f23682017-11-27 14:35:09 +00001747inline std::string to_string(const HOGNormType &type)
1748{
1749 std::stringstream str;
1750 str << type;
1751 return str.str();
1752}
1753
Alex Gildayc357c472018-03-21 13:54:09 +00001754/** Formatted output of the Size2D type.
1755 *
1756 * @param[out] os Output stream
1757 * @param[in] size Type to output
1758 *
1759 * @return Modified output stream.
1760 */
John Richardson25f23682017-11-27 14:35:09 +00001761inline ::std::ostream &operator<<(::std::ostream &os, const Size2D &size)
1762{
1763 os << size.width << "x" << size.height;
1764
1765 return os;
1766}
1767
Alex Gildayc357c472018-03-21 13:54:09 +00001768/** Formatted output of the Size2D type.
1769 *
1770 * @param[in] type Type to output
1771 *
1772 * @return Formatted string.
1773 */
John Richardson25f23682017-11-27 14:35:09 +00001774inline std::string to_string(const Size2D &type)
1775{
1776 std::stringstream str;
1777 str << type;
1778 return str.str();
1779}
1780
Alex Gildayc357c472018-03-21 13:54:09 +00001781/** Formatted output of the HOGInfo type.
1782 *
1783 * @param[out] os Output stream
1784 * @param[in] hog_info Type to output
1785 *
1786 * @return Modified output stream.
1787 */
John Richardson25f23682017-11-27 14:35:09 +00001788inline ::std::ostream &operator<<(::std::ostream &os, const HOGInfo &hog_info)
1789{
1790 os << "{CellSize=" << hog_info.cell_size() << ","
1791 << "BlockSize=" << hog_info.block_size() << ","
1792 << "DetectionWindowSize=" << hog_info.detection_window_size() << ","
1793 << "BlockStride=" << hog_info.block_stride() << ","
1794 << "NumBins=" << hog_info.num_bins() << ","
1795 << "NormType=" << hog_info.normalization_type() << ","
1796 << "L2HystThreshold=" << hog_info.l2_hyst_threshold() << ","
1797 << "PhaseType=" << hog_info.phase_type() << "}";
1798
1799 return os;
1800}
1801
Alex Gildayc357c472018-03-21 13:54:09 +00001802/** Formatted output of the HOGInfo type.
1803 *
1804 * @param[in] type Type to output
1805 *
1806 * @return Formatted string.
1807 */
John Richardson25f23682017-11-27 14:35:09 +00001808inline std::string to_string(const HOGInfo &type)
1809{
1810 std::stringstream str;
1811 str << type;
1812 return str.str();
1813}
1814
Alex Gildayc357c472018-03-21 13:54:09 +00001815/** Formatted output of the ConvolutionMethod type.
1816 *
1817 * @param[out] os Output stream
1818 * @param[in] conv_method Type to output
1819 *
1820 * @return Modified output stream.
1821 */
Isabella Gottardif07d28d2018-02-06 14:52:43 +00001822inline ::std::ostream &operator<<(::std::ostream &os, const ConvolutionMethod &conv_method)
1823{
1824 switch(conv_method)
1825 {
1826 case ConvolutionMethod::GEMM:
1827 os << "GEMM";
1828 break;
1829 case ConvolutionMethod::DIRECT:
1830 os << "DIRECT";
1831 break;
1832 case ConvolutionMethod::WINOGRAD:
1833 os << "WINOGRAD";
1834 break;
1835 default:
1836 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1837 }
1838
1839 return os;
1840}
1841
Alex Gildayc357c472018-03-21 13:54:09 +00001842/** Formatted output of the ConvolutionMethod type.
1843 *
1844 * @param[in] conv_method Type to output
1845 *
1846 * @return Formatted string.
1847 */
Isabella Gottardif07d28d2018-02-06 14:52:43 +00001848inline std::string to_string(const ConvolutionMethod &conv_method)
1849{
1850 std::stringstream str;
1851 str << conv_method;
1852 return str.str();
1853}
1854
Alex Gildayc357c472018-03-21 13:54:09 +00001855/** Formatted output of the GPUTarget type.
1856 *
1857 * @param[out] os Output stream
1858 * @param[in] gpu_target Type to output
1859 *
1860 * @return Modified output stream.
1861 */
Isabella Gottardif07d28d2018-02-06 14:52:43 +00001862inline ::std::ostream &operator<<(::std::ostream &os, const GPUTarget &gpu_target)
1863{
1864 switch(gpu_target)
1865 {
1866 case GPUTarget::GPU_ARCH_MASK:
1867 os << "GPU_ARCH_MASK";
1868 break;
1869 case GPUTarget::MIDGARD:
1870 os << "MIDGARD";
1871 break;
1872 case GPUTarget::BIFROST:
1873 os << "BIFROST";
1874 break;
1875 case GPUTarget::T600:
1876 os << "T600";
1877 break;
1878 case GPUTarget::T700:
1879 os << "T700";
1880 break;
1881 case GPUTarget::T800:
1882 os << "T800";
1883 break;
Michalis Spyroua9676112018-02-22 18:07:43 +00001884 case GPUTarget::G71:
1885 os << "G71";
1886 break;
1887 case GPUTarget::G72:
1888 os << "G72";
1889 break;
1890 case GPUTarget::G51:
1891 os << "G51";
1892 break;
1893 case GPUTarget::G51BIG:
1894 os << "G51BIG";
1895 break;
1896 case GPUTarget::G51LIT:
1897 os << "G51LIT";
1898 break;
Georgios Pinitasb03f7c52018-07-12 10:49:53 +01001899 case GPUTarget::G76:
1900 os << "G76";
Michalis Spyroua9676112018-02-22 18:07:43 +00001901 break;
1902 case GPUTarget::TTRX:
1903 os << "TTRX";
1904 break;
1905 case GPUTarget::TBOX:
1906 os << "TBOX";
Isabella Gottardif07d28d2018-02-06 14:52:43 +00001907 break;
1908 default:
1909 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1910 }
1911
1912 return os;
1913}
1914
Alex Gildayc357c472018-03-21 13:54:09 +00001915/** Formatted output of the GPUTarget type.
1916 *
1917 * @param[in] gpu_target Type to output
1918 *
1919 * @return Formatted string.
1920 */
Isabella Gottardif07d28d2018-02-06 14:52:43 +00001921inline std::string to_string(const GPUTarget &gpu_target)
1922{
1923 std::stringstream str;
1924 str << gpu_target;
1925 return str.str();
1926}
Gian Marco Iodice247f52c2018-03-22 11:24:56 +00001927
John Richardson8de92612018-02-22 14:09:31 +00001928/** Formatted output of the DetectionWindow type.
1929 *
1930 * @param[out] os Output stream
1931 * @param[in] detection_window Type to output
1932 *
1933 * @return Modified output stream.
1934 */
John Richardson684cb0f2018-01-09 11:17:00 +00001935inline ::std::ostream &operator<<(::std::ostream &os, const DetectionWindow &detection_window)
1936{
1937 os << "{x=" << detection_window.x << ","
1938 << "y=" << detection_window.y << ","
1939 << "width=" << detection_window.width << ","
1940 << "height=" << detection_window.height << ","
1941 << "idx_class=" << detection_window.idx_class << ","
1942 << "score=" << detection_window.score << "}";
1943
1944 return os;
1945}
1946
Isabella Gottardi05e56442018-11-16 11:26:52 +00001947/** Formatted output of the DetectionOutputLayerCodeType type.
1948 *
1949 * @param[out] os Output stream
1950 * @param[in] detection_code Type to output
1951 *
1952 * @return Modified output stream.
1953 */
1954inline ::std::ostream &operator<<(::std::ostream &os, const DetectionOutputLayerCodeType &detection_code)
1955{
1956 switch(detection_code)
1957 {
1958 case DetectionOutputLayerCodeType::CENTER_SIZE:
1959 os << "CENTER_SIZE";
1960 break;
1961 case DetectionOutputLayerCodeType::CORNER:
1962 os << "CORNER";
1963 break;
1964 case DetectionOutputLayerCodeType::CORNER_SIZE:
1965 os << "CORNER_SIZE";
1966 break;
1967 case DetectionOutputLayerCodeType::TF_CENTER:
1968 os << "TF_CENTER";
1969 break;
1970 default:
1971 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
1972 }
1973
1974 return os;
1975}
1976/** Formatted output of the DetectionOutputLayerCodeType type.
1977 *
1978 * @param[in] detection_code Type to output
1979 *
1980 * @return Formatted string.
1981 */
1982inline std::string to_string(const DetectionOutputLayerCodeType &detection_code)
1983{
1984 std::stringstream str;
1985 str << detection_code;
1986 return str.str();
1987}
1988
1989/** Formatted output of the DetectionOutputLayerInfo type.
1990 *
1991 * @param[out] os Output stream
1992 * @param[in] detection_info Type to output
1993 *
1994 * @return Modified output stream.
1995 */
1996inline ::std::ostream &operator<<(::std::ostream &os, const DetectionOutputLayerInfo &detection_info)
1997{
1998 os << "{Classes=" << detection_info.num_classes() << ","
1999 << "ShareLocation=" << detection_info.share_location() << ","
2000 << "CodeType=" << detection_info.code_type() << ","
2001 << "VarianceEncodedInTarget=" << detection_info.variance_encoded_in_target() << ","
2002 << "KeepTopK=" << detection_info.keep_top_k() << ","
2003 << "NMSThreshold=" << detection_info.nms_threshold() << ","
2004 << "Eta=" << detection_info.eta() << ","
2005 << "BackgroundLabelId=" << detection_info.background_label_id() << ","
2006 << "ConfidenceThreshold=" << detection_info.confidence_threshold() << ","
2007 << "TopK=" << detection_info.top_k() << ","
2008 << "NumLocClasses=" << detection_info.num_loc_classes()
2009 << "}";
2010
2011 return os;
2012}
2013
2014/** Formatted output of the DetectionOutputLayerInfo type.
2015 *
2016 * @param[in] detection_info Type to output
2017 *
2018 * @return Formatted string.
2019 */
2020inline std::string to_string(const DetectionOutputLayerInfo &detection_info)
2021{
2022 std::stringstream str;
2023 str << detection_info;
2024 return str.str();
2025}
John Richardson8de92612018-02-22 14:09:31 +00002026/** Formatted output of the DetectionWindow type.
2027 *
2028 * @param[in] detection_window Type to output
2029 *
2030 * @return Formatted string.
2031 */
2032inline std::string to_string(const DetectionWindow &detection_window)
2033{
2034 std::stringstream str;
2035 str << detection_window;
2036 return str.str();
2037}
2038
2039/** Formatted output of the Termination type.
2040 *
2041 * @param[out] os Output stream
2042 * @param[in] termination Type to output
2043 *
2044 * @return Modified output stream.
2045 */
2046inline ::std::ostream &operator<<(::std::ostream &os, const Termination &termination)
2047{
2048 switch(termination)
2049 {
2050 case Termination::TERM_CRITERIA_EPSILON:
2051 os << "TERM_CRITERIA_EPSILON";
2052 break;
2053 case Termination::TERM_CRITERIA_ITERATIONS:
2054 os << "TERM_CRITERIA_ITERATIONS";
2055 break;
2056 case Termination::TERM_CRITERIA_BOTH:
2057 os << "TERM_CRITERIA_BOTH";
2058 break;
2059 default:
2060 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
2061 }
2062
2063 return os;
2064}
2065
2066/** Formatted output of the Termination type.
2067 *
2068 * @param[in] termination Type to output
2069 *
2070 * @return Formatted string.
2071 */
2072inline std::string to_string(const Termination &termination)
2073{
2074 std::stringstream str;
2075 str << termination;
2076 return str.str();
2077}
2078
Anthony Barbier8914e322018-08-10 15:28:25 +01002079/** Formatted output of the CPUModel type.
2080 *
2081 * @param[out] os Output stream
2082 * @param[in] cpu_model Model to output
2083 *
2084 * @return Modified output stream.
2085 */
2086inline ::std::ostream &operator<<(::std::ostream &os, const CPUModel &cpu_model)
2087{
2088 switch(cpu_model)
2089 {
2090 case CPUModel::GENERIC:
2091 os << "GENERIC";
2092 break;
2093 case CPUModel::GENERIC_FP16:
2094 os << "GENERIC_FP16";
2095 break;
2096 case CPUModel::GENERIC_FP16_DOT:
2097 os << "GENERIC_FP16_DOT";
2098 break;
2099 case CPUModel::A53:
2100 os << "A53";
2101 break;
2102 case CPUModel::A55r0:
2103 os << "A55r0";
2104 break;
2105 case CPUModel::A55r1:
2106 os << "A55r1";
2107 break;
2108 default:
2109 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
2110 }
2111
2112 return os;
2113}
2114
2115/** Formatted output of the CPUModel type.
2116 *
2117 * @param[in] cpu_model Model to output
2118 *
2119 * @return Formatted string.
2120 */
2121inline std::string to_string(const CPUModel &cpu_model)
2122{
2123 std::stringstream str;
2124 str << cpu_model;
2125 return str.str();
2126}
Anthony Barbier671a11e2018-07-06 15:11:36 +01002127/** Formatted output of a vector of objects.
2128 *
2129 * @param[out] os Output stream
2130 * @param[in] args Vector of objects to print
2131 *
2132 * @return Modified output stream.
2133 */
2134template <typename T>
2135inline ::std::ostream &operator<<(::std::ostream &os, const std::vector<T> &args)
2136{
2137 os << "[";
2138 bool first = true;
2139 for(auto &arg : args)
2140 {
2141 if(first)
2142 {
2143 first = false;
2144 }
2145 else
2146 {
2147 os << ", ";
2148 }
2149 os << arg;
2150 }
2151 os << "]";
2152 return os;
2153}
2154
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +01002155/** Formatted output of @ref PriorBoxLayerInfo.
2156 *
2157 * @param[out] os Output stream.
2158 * @param[in] info Type to output.
2159 *
2160 * @return Modified output stream.
2161 */
2162inline ::std::ostream &operator<<(::std::ostream &os, const PriorBoxLayerInfo &info)
2163{
2164 os << "Clip:" << info.clip()
2165 << "Flip:" << info.flip()
2166 << "StepX:" << info.steps()[0]
2167 << "StepY:" << info.steps()[1]
2168 << "MinSizes:" << info.min_sizes()
2169 << "MaxSizes:" << info.max_sizes()
2170 << "ImgSizeX:" << info.img_size().x
2171 << "ImgSizeY:" << info.img_size().y
2172 << "Offset:" << info.offset()
2173 << "Variances:" << info.variances();
2174
2175 return os;
2176}
2177
Anthony Barbier671a11e2018-07-06 15:11:36 +01002178/** Formatted output of a vector of objects.
2179 *
2180 * @param[in] args Vector of objects to print
2181 *
2182 * @return String representing args.
2183 */
2184template <typename T>
2185std::string to_string(const std::vector<T> &args)
2186{
2187 std::stringstream str;
2188 str << args;
2189 return str.str();
2190}
2191
Gian Marco Iodice247f52c2018-03-22 11:24:56 +00002192/** Formatted output of the WinogradInfo type. */
2193inline ::std::ostream &operator<<(::std::ostream &os, const WinogradInfo &info)
2194{
2195 os << "{OutputTileSize=" << info.output_tile_size << ","
2196 << "KernelSize=" << info.kernel_size << ","
2197 << "PadStride=" << info.convolution_info << ","
2198 << "OutputDataLayout=" << info.output_data_layout << "}";
2199
2200 return os;
2201}
2202
Gian Marco Iodice247f52c2018-03-22 11:24:56 +00002203inline std::string to_string(const WinogradInfo &type)
2204{
2205 std::stringstream str;
2206 str << type;
2207 return str.str();
2208}
Anthony Barbier671a11e2018-07-06 15:11:36 +01002209
2210/** Fallback method: try to use std::to_string:
2211 *
2212 * @param[in] val Value to convert to string
2213 *
2214 * @return String representing val.
2215 */
2216template <typename T>
2217inline std::string to_string(const T &val)
2218{
2219 return support::cpp11::to_string(val);
2220}
2221
Anthony Barbier6ff3b192017-09-04 18:44:23 +01002222} // namespace arm_compute
Anthony Barbier4dbc0a92018-08-27 13:39:47 +01002223
2224#endif /* __ARM_COMPUTE_TYPE_PRINTER_H__ */