c2c1243399dad7dca745bb44c2be2bb6836c6a32
[platform/core/ml/nnfw.git] / runtime / onert / core / src / backend / controlflow / KernelGenerator.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_BACKEND_CONTROLFLOW_KERNEL_GENERATOR_H__
18 #define __ONERT_BACKEND_CONTROLFLOW_KERNEL_GENERATOR_H__
19
20 #include <backend/IKernelGenerator.h>
21 #include <backend/ITensorBuilder.h>
22 #include <exec/IExecutor.h>
23 #include "ExternalContext.h"
24 #include <ir/Graph.h>
25 #include "TensorBuilder.h"
26 #include "compiler/TensorRegistries.h"
27 #include "TensorRegistry.h"
28
29 namespace onert
30 {
31 namespace backend
32 {
33 namespace controlflow
34 {
35
36 class KernelGenerator : public IKernelGenerator
37 {
38 public:
39   KernelGenerator(const ir::Graph &graph, IDynamicTensorManager *dyn_tensor_manager,
40                   const std::shared_ptr<TensorRegistry> &tensor_reg,
41                   const std::shared_ptr<ExternalContext> &external_context);
42
43   void setTensorRegistries(const compiler::TensorRegistries &tensor_registries)
44   {
45     _tensor_registries = tensor_registries;
46   }
47   void setExecutorMap(const std::shared_ptr<exec::ExecutorMap> &executor_map)
48   {
49     // FIXME Using shared_ptr's raw pointer!
50     _executor_map = executor_map.get();
51   }
52
53   using IKernelGenerator::visit;
54
55   void visit(const ir::OpSequence &) override;
56   void visit(const ir::operation::If &) override;
57   void visit(const ir::operation::Permute &) override;
58   void visit(const ir::operation::While &) override;
59
60 private:
61   backend::ITensor *getTensor(const ir::OperandIndex &index);
62
63 private:
64   const ir::Graph &_graph;
65   IDynamicTensorManager *_dyn_tensor_manager;
66   std::shared_ptr<TensorRegistry> _tensor_reg;
67   compiler::TensorRegistries _tensor_registries;
68   exec::ExecutorMap *_executor_map;
69   const std::shared_ptr<ExternalContext> _external_context;
70 };
71
72 } // namespace controlflow
73 } // namespace backend
74 } // namespace onert
75
76 #endif // __ONERT_BACKEND_CONTROLFLOW_KERNEL_GENERATOR_H__