ONE - On-device Neural Engine
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
DynamicTensorManager.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 __ONERT_BACKEND_BASIC_DYNAMICTENSOR_MANAGER_H__
18#define __ONERT_BACKEND_BASIC_DYNAMICTENSOR_MANAGER_H__
19
20#include "MemoryManager.h"
21#include "TensorRegistry.h"
22
23#include <ir/OperandInfo.h>
24#include <ir/IOperation.h>
25#include <ir/Index.h>
26
27#include <unordered_set>
28
30{
31
32// TODO Find optimized algorithm to manage memory.
33
38{
39public:
40 DynamicTensorManager(const std::shared_ptr<TensorRegistry> &reg);
41
42 virtual ~DynamicTensorManager() = default;
43
44 void buildTensor(const ir::OperandIndex &ind, const ir::OperandInfo &tensor_info);
45
46 std::shared_ptr<DynamicMemoryManager> dynamic_mem_mgr() { return _dynamic_mem_mgr; }
47
48private:
49 const ITensor *getRawITensor(ir::OperandIndex ind);
50
51private:
56 std::shared_ptr<DynamicMemoryManager> _dynamic_mem_mgr;
57 const std::shared_ptr<TensorRegistry> _tensors;
58
59 // contains list of dynamic tensor index, which can be deallocated after running operation
60 // note: this map could contain static tensor index too. Careful use is required.
61 std::unordered_map<ir::OperationIndex, std::unordered_set<backend::ITensor *>>
62 _dealloc_tensor_map;
63};
64
65} // namespace onert::backend::basic
66
67#endif // __ONERT_BACKEND_BASIC_DYNAMICTENSOR_MANAGER_H__
This file contains OperandInfo class.
Class to manage dynamic tensor and its memory.
void buildTensor(const ir::OperandIndex &ind, const ir::OperandInfo &tensor_info)
std::shared_ptr< DynamicMemoryManager > dynamic_mem_mgr()
Class to save tensor's shape and type.
Definition OperandInfo.h:54