Imported Upstream version 1.21.0
[platform/core/ml/nnfw.git] / runtime / onert / core / include / compiler / LoweredGraph.h
1 /*
2  * Copyright (c) 2020 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_COMPILER_LOWERED_GRAPH_H__
18 #define __ONERT_COMPILER_LOWERED_GRAPH_H__
19
20 #include "ir/Graph.h"
21 #include "compiler/GraphLowerInfo.h"
22 #include "compiler/BackendResolver.h"
23 #include "compiler/Compiler.h"
24
25 namespace onert
26 {
27 namespace compiler
28 {
29
30 /**
31  * @brief Class that contains lowering information on graph.
32  *        In addition, after lowering, operands in graph will be set to "dynamic"
33  *        if the shape of output of an operation cannot be decided at compilation time.
34  */
35 class LoweredGraph
36 {
37 public:
38   LoweredGraph(const ir::Graph &graph, const compiler::CompilerOptions &options);
39   LoweredGraph(const ir::Graph &parent_graph, const ir::Graph &graph,
40                const compiler::CompilerOptions &options);
41
42   ir::Graph &graph() { return _graph; }
43   const ir::Graph &graph() const { return _graph; }
44   ir::Graph &parent_graph() { return _parent_graph; }
45   const ir::Graph &parent_graph() const { return _parent_graph; }
46   const compiler::GraphLowerInfo &lower_info() const { return _lower_info_map; }
47   compiler::GraphLowerInfo &lower_info() { return _lower_info_map; }
48   std::shared_ptr<ir::OperationIndexMap<int64_t>> indexed_ranks() { return _indexed_ranks; }
49
50   void setHasDynamicTensor(ir::OperationIndex ind, bool val)
51   {
52     _has_dynamic_tensor_map.emplace(ind, val);
53   }
54   bool getHasDynamicTensor(ir::OperationIndex ind) const
55   {
56     auto itr = _has_dynamic_tensor_map.find(ind);
57     return (itr == _has_dynamic_tensor_map.end()) ? false : itr->second;
58   }
59
60 private:
61   void makeLowerInfo(const compiler::BackendResolver &backend_resolver);
62   void dumpLowerInfo();
63   void lowerGraph(const compiler::CompilerOptions &options);
64
65 private:
66   /**
67    *  @brief  Copy of target graph for lowering
68    *  @note   It uses copy of graph, not reference.
69    *          It allows the original graph can be compiled multiple times.
70    */
71   ir::Graph _graph;
72   ir::Graph _parent_graph;
73   std::shared_ptr<ir::OperationIndexMap<int64_t>> _indexed_ranks;
74   compiler::GraphLowerInfo _lower_info_map;
75   ir::OperationIndexMap<bool> _has_dynamic_tensor_map;
76 };
77
78 } // namespace compiler
79 } // namespace onert
80
81 #endif // __ONERT_COMPILER_LOWERED_GRAPH_H__