a7e034a91de0e4d61603692fd0605ebbb743983d
[platform/core/ml/nnfw.git] / runtime / onert / core / include / backend / cpu_common / StaticTensorManager.h
1 /*
2  * Copyright (c) 2019 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_CPU_COMMON_STATICTENSOR_MANAGER_H__
18 #define __ONERT_BACKEND_CPU_COMMON_STATICTENSOR_MANAGER_H__
19
20 #include "MemoryManager.h"
21
22 #include "backend/IStaticTensorManager.h"
23 #include "ir/OperandIndexMap.h"
24 #include "ir/OperandInfo.h"
25 #include "TensorRegistry.h"
26
27 namespace onert
28 {
29 namespace backend
30 {
31 namespace cpu_common
32 {
33
34 class StaticTensorManager : public backend::IStaticTensorManager
35 {
36 public:
37   StaticTensorManager(const std::shared_ptr<TensorRegistry> &reg);
38   virtual ~StaticTensorManager() = default;
39
40   void allocateConsts(void);
41   void allocateNonconsts(void);
42   void deallocateConsts(void);
43   void deallocateNonconsts(void);
44
45   void buildTensor(const ir::OperandIndex &ind, const ir::OperandInfo &tensor_info,
46                    ir::Layout backend_layout, bool as_const);
47
48   void claimPlan(const ir::OperandIndex &ind, uint32_t size);
49   void releasePlan(const ir::OperandIndex &ind);
50
51   void iterate(const std::function<void(const ir::OperandIndex &)> &fn);
52
53 private:
54   std::unique_ptr<DynamicMemoryManager> _const_mgr;
55   std::unique_ptr<MemoryManager> _nonconst_mgr;
56   const std::shared_ptr<TensorRegistry> _tensors;
57   ir::OperandIndexMap<bool> _as_constants;
58 };
59
60 } // namespace cpu_common
61 } // namespace backend
62 } // namespace onert
63
64 #endif // __ONERT_BACKEND_CPU_COMMON_STATICTENSOR_MANAGER_H__