Compute Library
 21.02
DotGraphPrinter.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2019 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_GRAPH_DOTGRAPHPRINTER_H
25 #define ARM_COMPUTE_GRAPH_DOTGRAPHPRINTER_H
26 
28 
30 
31 #include <string>
32 
33 namespace arm_compute
34 {
35 namespace graph
36 {
37 /** Graph printer visitor. */
38 class DotGraphVisitor final : public DefaultNodeVisitor
39 {
40 public:
41  /** Default Constructor **/
42  DotGraphVisitor() = default;
43  /** Returns the output information of the last visited node
44  *
45  * @return Information of the last visited node
46  */
47  const std::string &info() const;
48 
49  // Reveal parent method
51 
52  // Inherited methods overridden
53  void visit(ActivationLayerNode &n) override;
54  void visit(BatchNormalizationLayerNode &n) override;
55  void visit(ConcatenateLayerNode &n) override;
56  void visit(ConvolutionLayerNode &n) override;
57  void visit(DepthwiseConvolutionLayerNode &n) override;
58  void visit(EltwiseLayerNode &n) override;
61  void visit(NormalizationLayerNode &n) override;
62  void visit(PoolingLayerNode &n) override;
63  void default_visit() override;
64 
65 private:
66  std::string _info{};
67 };
68 
69 /** Graph printer interface */
70 class DotGraphPrinter final : public IGraphPrinter
71 {
72 public:
73  // Inherited methods overridden
74  void print(const Graph &g, std::ostream &os) override;
75 
76 private:
77  /** Print dot graph header
78  *
79  * @param[in] g Graph
80  * @param[out] os Output stream to use
81  */
82  void print_header(const Graph &g, std::ostream &os);
83  /** Print dot graph footer
84  *
85  * @param[in] g Graph
86  * @param[out] os Output stream to use
87  */
88  void print_footer(const Graph &g, std::ostream &os);
89  /** Prints nodes in dot format
90  *
91  * @param[in] g Graph
92  * @param[out] os Output stream to use
93  */
94  void print_nodes(const Graph &g, std::ostream &os);
95  /** Prints edges in dot format
96  *
97  * @param[in] g Graph
98  * @param[out] os Output stream to use
99  */
100  void print_edges(const Graph &g, std::ostream &os);
101 
102 private:
103  DotGraphVisitor _dot_node_visitor = {};
104 };
105 } // namespace graph
106 } // namespace arm_compute
107 #endif /* ARM_COMPUTE_GRAPH_DOTGRAPHPRINTER_H */
Default visitor implementation.
Definition: INodeVisitor.h:186
Graph printer interface.
Definition: IGraphPrinter.h:37
DotGraphVisitor()=default
Default Constructor.
const std::string & info() const
Returns the output information of the last visited node.
Copyright (c) 2017-2021 Arm Limited.
Graph printer interface.
virtual void visit(INode &n)=0
Visit INode.
void visit(ActivationLayerNode &n) override
Visit ActivationLayerNode.
Graph class.
Definition: Graph.h:53
void default_visit() override
Function to be overloaded by the client and implement default behavior for the non-overloaded visitor...