blob: 4ff1019ccea0192dad0c96b353da49af019819e8 [file] [log] [blame]
Georgios Pinitas6f669f02017-09-26 12:32:57 +01001/*
2 * Copyright (c) 2017 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#ifndef __ARM_COMPUTE_TEST_GRAPH_TYPE_PRINTER_H__
25#define __ARM_COMPUTE_TEST_GRAPH_TYPE_PRINTER_H__
26
27#include "arm_compute/graph/Types.h"
28
29#include <ostream>
30#include <sstream>
31#include <string>
32
33namespace arm_compute
34{
35namespace graph
36{
37/** Formatted output of the @ref ConvolutionMethodHint type. */
38inline ::std::ostream &operator<<(::std::ostream &os, const ConvolutionMethodHint &conv_method)
39{
40 switch(conv_method)
41 {
42 case ConvolutionMethodHint::DIRECT:
43 os << "DIRECT";
44 break;
45 case ConvolutionMethodHint::GEMM:
46 os << "GEMM";
47 break;
48 default:
49 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
50 }
51
52 return os;
53}
54
55inline std::string to_string(const ConvolutionMethodHint &conv_method)
56{
57 std::stringstream str;
58 str << conv_method;
59 return str.str();
60}
Georgios Pinitas0c29cd32017-10-18 17:29:27 +010061
62/** Formatted output of the @ref TargetHint type. */
63inline ::std::ostream &operator<<(::std::ostream &os, const TargetHint &target_hint)
64{
65 switch(target_hint)
66 {
67 case TargetHint::NEON:
68 os << "NEON";
69 break;
70 case TargetHint::OPENCL:
71 os << "OPENCL";
72 break;
73 default:
74 ARM_COMPUTE_ERROR("NOT_SUPPORTED!");
75 }
76
77 return os;
78}
79
80inline std::string to_string(const TargetHint &target_hint)
81{
82 std::stringstream str;
83 str << target_hint;
84 return str.str();
85}
Georgios Pinitas6f669f02017-09-26 12:32:57 +010086} // namespace graph
87} // namespace arm_compute
88#endif /* __ARM_COMPUTE_TEST_GRAPH_TYPE_PRINTER_H__ */