8f82bd9736b5a7f50c363c2cf5312f92759b6dab
[platform/core/ml/nnfw.git] / runtime / onert / core / src / backend / controlflow / kernel / WhileLayer.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_WHILE_LAYER_H__
18 #define __ONERT_BACKEND_CONTROLFLOW_KERNEL_WHILE_LAYER_H__
19
20 #include <backend/ITensor.h>
21 #include <exec/IExecutor.h>
22 #include <exec/IFunction.h>
23 #include <ir/OperandIndexSequence.h>
24 #include <ir/Graph.h>
25 #include "../ExternalContext.h"
26
27 namespace onert
28 {
29 namespace backend
30 {
31 namespace controlflow
32 {
33 namespace kernel
34 {
35
36 class WhileLayer : public ::onert::exec::IFunction
37 {
38 public:
39   WhileLayer(const std::vector<backend::ITensor *> input_tensors,
40              const std::vector<backend::ITensor *> output_tensors,
41              const ir::OperandIndexSequence &output_indices, const ir::Graph &graph,
42              const ir::SubgraphIndex &cond_subg_index, const ir::SubgraphIndex &body_subg_index,
43              exec::ExecutorMap *executor_map,
44              const std::shared_ptr<ExternalContext> &external_context);
45
46 public:
47   void run() override;
48
49 private:
50   const ir::SubgraphIndex _cond_subg_index;
51   const ir::SubgraphIndex _body_subg_index;
52   const ir::OperandIndexSequence &_output_indices;
53   const ir::Graph &_graph;
54   const std::vector<backend::ITensor *> _input_tensors;
55   const std::vector<backend::ITensor *> _output_tensors;
56   exec::ExecutorMap *_executor_map;
57   const std::shared_ptr<ExternalContext> _external_context;
58 };
59
60 } // namespace kernel
61 } // namespace controlflow
62 } // namespace backend
63 } // namespace onert
64
65 #endif // __ONERT_BACKEND_CONTROLFLOW_KERNEL_WHILE_LAYER_H__