ONE - On-device Neural Engine
Loading...
Searching...
No Matches
RuntimeGraph.h
Go to the documentation of this file.
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_RUNTIMEGRAPH_H
18#define LUCI_INTERPRETER_CORE_RUNTIMEGRAPH_H
19
20#include "luci_interpreter/core/Tensor.h"
22#include "core/Kernel.h"
23
24#include <memory>
25#include <vector>
26
27namespace luci_interpreter
28{
29
30class RuntimeModule;
31
33{
34private:
35 class TensorAllocPlan;
36 friend class TensorAllocPlan;
37
38public:
39 explicit RuntimeGraph(RuntimeModule *owning_module, IMemoryManager *memory_manager);
41
42 Tensor *addTensor(std::unique_ptr<Tensor> &&tensor);
43
44 void setInputTensors(const std::vector<Tensor *> &input_tensors);
45 void setOutputTensors(const std::vector<Tensor *> &output_tensors);
46
47 void configureAllocations(Tensor *tensor);
48
49 const std::vector<Tensor *> &getInputTensors() const { return _input_tensors; }
50 const std::vector<Tensor *> &getOutputTensors() const { return _output_tensors; }
51
52 void addKernel(std::unique_ptr<Kernel> &&kernel);
53
54 void execute() const;
55
56private:
57 RuntimeModule *_owning_module;
58 IMemoryManager *_memory_manager;
59 std::vector<std::unique_ptr<Tensor>> _tensors;
60 std::vector<Tensor *> _input_tensors;
61 std::vector<Tensor *> _output_tensors;
62
63 // Kernels in execution order.
64 std::vector<std::unique_ptr<Kernel>> _kernels;
65 // Tensors that are not used anymore after given op
66 std::unique_ptr<TensorAllocPlan> _tensor_alloc_plan;
67};
68
69} // namespace luci_interpreter
70
71#endif // LUCI_INTERPRETER_CORE_RUNTIMEGRAPH_H
void addKernel(std::unique_ptr< Kernel > &&kernel)
Tensor * addTensor(std::unique_ptr< Tensor > &&tensor)
void configureAllocations(Tensor *tensor)
const std::vector< Tensor * > & getOutputTensors() const
void setOutputTensors(const std::vector< Tensor * > &output_tensors)
const std::vector< Tensor * > & getInputTensors() const
void setInputTensors(const std::vector< Tensor * > &input_tensors)