Imported Upstream version 1.25.0
[platform/core/ml/nnfw.git] / onert-micro / luci-interpreter / src / core / RuntimeModule.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 LUCI_INTERPRETER_CORE_RUNTIMEMODULE_H
18 #define LUCI_INTERPRETER_CORE_RUNTIMEMODULE_H
19
20 #include "core/RuntimeGraph.h"
21 #include "luci_interpreter/core/reader/CircleMicroReader.h"
22
23 #include <memory>
24 #include <vector>
25
26 namespace luci_interpreter
27 {
28
29 #ifdef USE_STATIC_ALLOC
30 using BaseRuntimeGraph = StaticRuntimeGraph;
31 using MemoryManager = StaticMemoryManager;
32 #else
33 using BaseRuntimeGraph = RuntimeGraph;
34 using MemoryManager = SimpleMemoryManager;
35 #endif // USE_STATIC_ALLOC
36
37 class RuntimeModule
38 {
39 public:
40   RuntimeModule() = default;
41
42   void addGraph(MemoryManager *memory_manager)
43   {
44     _graphs.emplace_back(memory_manager, &_circle_reader, this,
45                          _circle_reader.get_current_subgraph_index());
46   }
47
48   BaseRuntimeGraph *getRuntimeGraphAt(uint32_t pos) { return &_graphs.at(pos); }
49
50   void execute() { getMainGraph()->execute(); }
51
52   CircleReader &getCircleReader() { return _circle_reader; }
53
54   BaseRuntimeGraph *getMainGraph() const { return const_cast<BaseRuntimeGraph *>(&_graphs[0]); }
55
56   void selectSubgraph(uint32_t index) { _circle_reader.select_subgraph(index); }
57
58 private:
59   std::vector<BaseRuntimeGraph> _graphs;
60
61   CircleReader _circle_reader;
62 };
63
64 } // namespace luci_interpreter
65
66 #endif // LUCI_INTERPRETER_CORE_RUNTIMEMODULE_H