blob: dc640f10a63baceb5020d7e1a73cf6a99548ceec [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{
99 if(_memory_manager)
100 {
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{
117 if(_memory_manager)
118 {
119 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
120 _memory_manager->lifetime_manager()->end_lifetime(obj, handle, size);
121 }
122}
123
124template <typename TensorType>
125inline void MemoryGroupBase<TensorType>::acquire()
126{
127 if(!_mappings.empty())
128 {
129 ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
130 _pool = _memory_manager->pool_manager()->lock_pool();
131 _pool->acquire(_mappings);
132 }
133}
134
135template <typename TensorType>
136inline void MemoryGroupBase<TensorType>::release()
137{
138 if(_pool != nullptr)
139 {
140 ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
141 ARM_COMPUTE_ERROR_ON(_mappings.empty());
142 _pool->release(_mappings);
143 _memory_manager->pool_manager()->unlock_pool(_pool);
144 _pool = nullptr;
145 }
146}
147
148template <typename TensorType>
149inline MemoryMappings &MemoryGroupBase<TensorType>::mappings()
150{
151 return _mappings;
152}
153
154template <typename TensorType>
155inline void MemoryGroupBase<TensorType>::associate_memory_group(TensorType *)
156{
157 ARM_COMPUTE_ERROR("Must be implemented by child class");
158}
159} // arm_compute
160#endif /*__ARM_COMPUTE_MEMORYGROUPBASE_H__ */