blob: 06e4321410d661902a429bdb32c4ba77ed413499 [file] [log] [blame]
Georgios Pinitasbaf174e2017-09-08 19:47:30 +01001/*
Alex Gildayc357c472018-03-21 13:54:09 +00002 * Copyright (c) 2017-2018 ARM Limited.
Georgios Pinitasbaf174e2017-09-08 19:47:30 +01003 *
4 * SPDX-License-Identifier: MIT
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to
8 * deal in the Software without restriction, including without limitation the
9 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
10 * sell copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24#ifndef __ARM_COMPUTE_MEMORYGROUPBASE_H__
25#define __ARM_COMPUTE_MEMORYGROUPBASE_H__
26
27#include "arm_compute/runtime/IMemoryGroup.h"
28
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000029#include "arm_compute/core/Error.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010030#include "arm_compute/runtime/IMemoryManager.h"
31#include "arm_compute/runtime/IMemoryPool.h"
32
33#include <cstddef>
34#include <memory>
35
36namespace arm_compute
37{
38/** Memory group */
39template <typename TensorType>
40class MemoryGroupBase : public IMemoryGroup
41{
42public:
43 /** Default Constructor */
44 MemoryGroupBase(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
45 /** Default destructor */
46 ~MemoryGroupBase() = default;
Alex Gildayc357c472018-03-21 13:54:09 +000047 /** Prevent instances of this class from being copied (As this class contains pointers) */
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010048 MemoryGroupBase(const MemoryGroupBase &) = delete;
Alex Gildayc357c472018-03-21 13:54:09 +000049 /** Prevent instances of this class from being copy assigned (As this class contains pointers) */
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010050 MemoryGroupBase &operator=(const MemoryGroupBase &) = delete;
51 /** Allow instances of this class to be moved */
52 MemoryGroupBase(MemoryGroupBase &&) = default;
53 /** Allow instances of this class to be moved */
54 MemoryGroupBase &operator=(MemoryGroupBase &&) = default;
55 /** Sets a object to be managed by the given memory group
56 *
57 * @note Manager must not be finalized
58 *
59 * @param[in] obj Object to be managed
60 */
61 void manage(TensorType *obj);
62 /** Finalizes memory for a given object
63 *
64 * @note Manager must not be finalized
65 *
66 * @param[in] obj Object to request memory for
67 * @param[in] handle Handle to store the memory
68 * @param[in] size Size of memory to allocate
69 */
70 void finalize_memory(TensorType *obj, void **handle, size_t size);
71
72 // Inherited methods overridden:
73 void acquire() override;
74 void release() override;
75 MemoryMappings &mappings() override;
76
77private:
78 void associate_memory_group(TensorType *obj);
79
80private:
81 std::shared_ptr<IMemoryManager> _memory_manager; /**< Memory manager to be used by the group */
82 IMemoryPool *_pool; /**< Memory pool that the group is scheduled with */
83 MemoryMappings _mappings; /**< Memory mappings of the group */
84};
85
86template <typename TensorType>
87inline MemoryGroupBase<TensorType>::MemoryGroupBase(std::shared_ptr<IMemoryManager> memory_manager)
88 : _memory_manager(std::move(memory_manager)), _pool(nullptr), _mappings()
89{
90 if(_memory_manager)
91 {
92 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
93 }
94}
95
96template <typename TensorType>
97inline void MemoryGroupBase<TensorType>::manage(TensorType *obj)
98{
Georgios Pinitasceff0f92018-03-19 19:57:01 +000099 if(_memory_manager && _mappings.empty())
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100100 {
101 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
102
103 // Defer registration to the first managed object
104 _memory_manager->lifetime_manager()->register_group(this);
105
106 // Associate this memory group with the tensor
107 associate_memory_group(obj);
108
109 // Start object lifetime
110 _memory_manager->lifetime_manager()->start_lifetime(obj);
111 }
112}
113
114template <typename TensorType>
115inline void MemoryGroupBase<TensorType>::finalize_memory(TensorType *obj, void **handle, size_t size)
116{
Georgios Pinitasceff0f92018-03-19 19:57:01 +0000117 // TODO (geopin01) : Check size (track size in MemoryMappings)
118 // Check if existing mapping is valid
119 ARM_COMPUTE_ERROR_ON(!_mappings.empty() && (_mappings.find(handle) == std::end(_mappings)));
120
121 if(_memory_manager && _mappings.empty())
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100122 {
123 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
124 _memory_manager->lifetime_manager()->end_lifetime(obj, handle, size);
125 }
126}
127
128template <typename TensorType>
129inline void MemoryGroupBase<TensorType>::acquire()
130{
131 if(!_mappings.empty())
132 {
133 ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
134 _pool = _memory_manager->pool_manager()->lock_pool();
135 _pool->acquire(_mappings);
136 }
137}
138
139template <typename TensorType>
140inline void MemoryGroupBase<TensorType>::release()
141{
142 if(_pool != nullptr)
143 {
144 ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
145 ARM_COMPUTE_ERROR_ON(_mappings.empty());
146 _pool->release(_mappings);
147 _memory_manager->pool_manager()->unlock_pool(_pool);
148 _pool = nullptr;
149 }
150}
151
152template <typename TensorType>
153inline MemoryMappings &MemoryGroupBase<TensorType>::mappings()
154{
155 return _mappings;
156}
157
158template <typename TensorType>
159inline void MemoryGroupBase<TensorType>::associate_memory_group(TensorType *)
160{
161 ARM_COMPUTE_ERROR("Must be implemented by child class");
162}
163} // arm_compute
164#endif /*__ARM_COMPUTE_MEMORYGROUPBASE_H__ */