blob: 08f7f25ee5a89577476aaef293b7e93f94299c9f [file] [log] [blame]
Georgios Pinitasd8734b52017-12-22 15:27:52 +00001/*
Freddie Liardetdd23f2a2021-06-17 13:30:11 +01002 * 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 */
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010024#include "arm_compute/graph/printers/DotGraphPrinter.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000025
26#include "arm_compute/core/Error.h"
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010027#include "arm_compute/graph/Graph.h"
28#include "arm_compute/graph/Tensor.h"
29#include "arm_compute/graph/TypePrinter.h"
30#include "arm_compute/graph/nodes/Nodes.h"
Georgios Pinitasd8734b52017-12-22 15:27:52 +000031
32namespace arm_compute
33{
Georgios Pinitasd9eb2752018-04-03 13:44:29 +010034namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +000035{
36void DotGraphVisitor::visit(ActivationLayerNode &n)
37{
38 std::stringstream ss;
39 ss << n.activation_info().activation();
40 _info = ss.str();
41}
42
43void DotGraphVisitor::visit(BatchNormalizationLayerNode &n)
44{
45 std::stringstream ss;
46 ss << (n.fused_activation().enabled() ? to_string(n.fused_activation().activation()) : "");
47 _info = ss.str();
48}
49
Georgios Pinitase2220552018-07-20 13:23:44 +010050void DotGraphVisitor::visit(ConcatenateLayerNode &n)
51{
52 std::stringstream ss;
53 ss << "Enabled: " << n.is_enabled();
54 ss << R"( \n )";
55 ss << "Axis: " << n.concatenation_axis();
56 _info = ss.str();
57}
58
Georgios Pinitasd8734b52017-12-22 15:27:52 +000059void DotGraphVisitor::visit(ConvolutionLayerNode &n)
60{
61 std::stringstream ss;
62 ss << n.convolution_method();
63 _info = ss.str();
64}
65
Georgios Pinitasd8734b52017-12-22 15:27:52 +000066void DotGraphVisitor::visit(DepthwiseConvolutionLayerNode &n)
67{
68 std::stringstream ss;
69 ss << n.depthwise_convolution_method();
70 _info = ss.str();
71}
72
73void DotGraphVisitor::visit(EltwiseLayerNode &n)
74{
75 std::stringstream ss;
76 ss << n.eltwise_operation();
77 _info = ss.str();
78}
79
giuros01acce5042019-02-21 17:32:34 +000080void DotGraphVisitor::visit(FusedConvolutionBatchNormalizationNode &n)
81{
82 ARM_COMPUTE_UNUSED(n);
83 std::stringstream ss;
84 ss << "FusedConvolutionBatchNormalizationNode";
85 _info = ss.str();
86}
87
Manuel Bottinibffb41e2019-06-20 16:00:27 +010088void DotGraphVisitor::visit(FusedDepthwiseConvolutionBatchNormalizationNode &n)
89{
90 ARM_COMPUTE_UNUSED(n);
91 std::stringstream ss;
92 ss << "FusedDepthwiseConvolutionBatchNormalizationNode";
93 _info = ss.str();
94}
95
Georgios Pinitasd8734b52017-12-22 15:27:52 +000096void DotGraphVisitor::visit(NormalizationLayerNode &n)
97{
98 std::stringstream ss;
99 ss << n.normalization_info().type();
100 _info = ss.str();
101}
102
103void DotGraphVisitor::visit(PoolingLayerNode &n)
104{
105 std::stringstream ss;
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000106 ss << n.pooling_info().pool_type;
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000107 ss << R"( \n )";
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000108 ss << n.pooling_info().pool_size;
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000109 ss << R"( \n )";
Sang-Hoon Park0cb3da62020-01-15 12:39:56 +0000110 ss << n.pooling_info().pad_stride_info;
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000111 _info = ss.str();
112}
113
Freddie Liardetdd23f2a2021-06-17 13:30:11 +0100114void DotGraphVisitor::default_visit(INode &n)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000115{
Freddie Liardetdd23f2a2021-06-17 13:30:11 +0100116 ARM_COMPUTE_UNUSED(n);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000117 _info.clear();
118}
119
120const std::string &DotGraphVisitor::info() const
121{
122 return _info;
123}
124
125void DotGraphPrinter::print(const Graph &g, std::ostream &os)
126{
127 // Print header
128 print_header(g, os);
129
130 // Print nodes
131 print_nodes(g, os);
132
133 // Print edges
134 print_edges(g, os);
135
136 // Print footer
137 print_footer(g, os);
138}
139
140void DotGraphPrinter::print_header(const Graph &g, std::ostream &os)
141{
142 // Print graph name
143 std::string graph_name = (g.name().empty()) ? "Graph" : g.name();
144 os << "digraph " << graph_name << "{\n";
145}
146
147void DotGraphPrinter::print_footer(const Graph &g, std::ostream &os)
148{
149 ARM_COMPUTE_UNUSED(g);
150 os << "}\n";
151}
152
153void DotGraphPrinter::print_nodes(const Graph &g, std::ostream &os)
154{
155 for(const auto &n : g.nodes())
156 {
157 if(n)
158 {
159 // Output node id
160 std::string node_id = std::string("n") + support::cpp11::to_string(n->id());
161 os << node_id << " ";
162
163 // Output label
164 n->accept(_dot_node_visitor);
165
166 std::string name = n->name().empty() ? node_id : n->name();
167 auto node_description = _dot_node_visitor.info();
168
169 os << R"([label = ")" << name << R"( \n )" << n->assigned_target() << R"( \n )" << node_description << R"("])";
170 os << ";\n";
171 }
172 }
173}
174
175void DotGraphPrinter::print_edges(const Graph &g, std::ostream &os)
176{
177 for(const auto &e : g.edges())
178 {
179 if(e)
180 {
181 std::string source_node_id = std::string("n") + support::cpp11::to_string(e->producer_id());
182 std::string sink_node_id = std::string("n") + support::cpp11::to_string(e->consumer_id());
183 os << source_node_id << " -> " << sink_node_id << " ";
184 const Tensor *t = e->tensor();
185 ARM_COMPUTE_ERROR_ON(t == nullptr);
Georgios Pinitascac13b12018-04-27 19:07:19 +0100186 os << R"([label = ")" << t->desc().shape << R"( \n )" << t->desc().data_type << R"( \n )" << t->desc().layout << R"("])";
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000187 os << ";\n";
188 }
189 }
190}
Georgios Pinitasd9eb2752018-04-03 13:44:29 +0100191} // namespace graph
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000192} // namespace arm_compute