695994761f1a67e256e7d906563d792da3124e3d
[platform/core/ml/nnfw.git] / runtime / onert / core / src / backend / controlflow / TensorBuilder.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_TENSOR_BUILDER_H__
18 #define __ONERT_BACKEND_CONTROLFLOW_TENSOR_BUILDER_H__
19
20 #include <backend/cpu_common/StaticTensorManager.h>
21 #include <backend/cpu_common/TensorRegistry.h>
22 #include <backend/cpu_common/Tensor.h>
23
24 #include <backend/ITensorBuilder.h>
25 #include <ir/OperandIndexMap.h>
26
27 #include <unordered_map>
28
29 #include "DynamicTensorManager.h"
30
31 namespace onert
32 {
33 namespace backend
34 {
35 namespace controlflow
36 {
37
38 class TensorBuilder : public ITensorBuilder
39 {
40 public:
41   TensorBuilder(const std::shared_ptr<TensorRegistry> &tensor_reg);
42
43   /**
44    * @brief     Register tensor information to allocate on CPU backend
45    * @param[in] ind    Operand index
46    * @param[in] info   Operand information
47    * @param[in] layout Operand data layout
48    */
49   void registerTensorInfo(const ir::OperandIndex &ind, const ir::OperandInfo &info,
50                           ir::Layout backend_layout) override;
51
52   void notifyFirstUse(const ir::OperandIndex &) override;
53   void notifyLastUse(const ir::OperandIndex &) override;
54
55   bool isRegistered(const ir::OperandIndex &) const override;
56
57   void prepare(void) override;
58   void allocate() override;
59   void postFunctionPrepare() override { /* DO NOTHING */}
60
61   IDynamicTensorManager *dynamicTensorManager(void) override;
62
63   /**
64    * @brief Get tensor with a specific OperandIndex.
65    * @param ind OperandIndex for the tensor. There must exist a tensor with this ind.
66    *        If not, program will crash with assert or exception.
67    * @return operand::Tensor *
68    */
69   cpu_common::Tensor *nativeOwnTensorAt(const ir::OperandIndex &ind);
70
71 private:
72   const std::shared_ptr<TensorRegistry> _tensor_reg;
73   std::unique_ptr<DynamicTensorManager> _dynamic_tensor_mgr;
74   std::unique_ptr<cpu_common::StaticTensorManager> _static_tensor_mgr;
75   ir::OperandIndexMap<ir::OperandInfo> _tensor_info_map;
76   ir::OperandIndexMap<ir::Layout> _tensor_layout_map;
77 };
78
79 } // namespace controlflow
80 } // namespace backend
81 } // namespace onert
82
83 #endif // __ONERT_BACKEND_CONTROLFLOW_TENSOR_BUILDER_H__