5dbe5a9675dec6fcc0f0a45fb51ff5bbf370298b
[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);
45   }
46
47   BaseRuntimeGraph *getRuntimeGraphAt(uint32_t pos) { return &_graphs.at(pos); }
48
49   void execute() { getMainGraph()->execute(); }
50
51   CircleReader &getCircleReader() { return _circle_reader; }
52
53   BaseRuntimeGraph *getMainGraph() const { return const_cast<BaseRuntimeGraph *>(&_graphs[0]); }
54
55 private:
56   std::vector<BaseRuntimeGraph> _graphs;
57
58   CircleReader _circle_reader;
59 };
60
61 } // namespace luci_interpreter
62
63 #endif // LUCI_INTERPRETER_CORE_RUNTIMEMODULE_H