Imported Upstream version 1.7.0
[platform/core/ml/nnfw.git] / runtime / onert / core / src / dumper / dot / DotBuilder.h
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __ONERT_DUMPER_DOT_DOT_BUILDER_H__
18 #define __ONERT_DUMPER_DOT_DOT_BUILDER_H__
19
20 #include <sstream>
21
22 #include "ir/Index.h"
23 #include "ir/Operation.h"
24 #include "ir/Operand.h"
25
26 #include "OperationNode.h"
27 #include "OperandNode.h"
28 #include "DotSubgraphInfo.h"
29
30 using Operation = onert::ir::Operation;
31 using Object = onert::ir::Operand;
32
33 namespace onert
34 {
35 namespace dumper
36 {
37 namespace dot
38 {
39
40 class DotBuilder
41 {
42 public:
43   DotBuilder();
44
45 public:
46   void update(const Node &dotinfo);
47   void addOpSequence(const DotSubgraphInfo &subgraph_info);
48
49   void writeDot(std::ostream &os);
50
51 private:
52   void add(const Node &dotinfo);
53   void addEdge(const Node &dotinfo1, const Node &dotinfo2);
54
55   std::stringstream _dot;
56 };
57
58 } // namespace dot
59 } // namespace dumper
60 } // namespace onert
61
62 #endif // __ONERT_DUMPER_DOT_DOT_BUILDER_H__