blob: 7dc18c8b4f9cba046cfc582fcb3f8e3a472dbf3e [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{
Georgios Pinitasdf310362018-11-14 13:16:56 +000038// Forward declarations
39class IMemory;
40
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010041/** Memory group */
42template <typename TensorType>
43class MemoryGroupBase : public IMemoryGroup
44{
45public:
46 /** Default Constructor */
47 MemoryGroupBase(std::shared_ptr<IMemoryManager> memory_manager = nullptr);
48 /** Default destructor */
49 ~MemoryGroupBase() = default;
Alex Gildayc357c472018-03-21 13:54:09 +000050 /** Prevent instances of this class from being copied (As this class contains pointers) */
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010051 MemoryGroupBase(const MemoryGroupBase &) = delete;
Alex Gildayc357c472018-03-21 13:54:09 +000052 /** Prevent instances of this class from being copy assigned (As this class contains pointers) */
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010053 MemoryGroupBase &operator=(const MemoryGroupBase &) = delete;
54 /** Allow instances of this class to be moved */
55 MemoryGroupBase(MemoryGroupBase &&) = default;
56 /** Allow instances of this class to be moved */
57 MemoryGroupBase &operator=(MemoryGroupBase &&) = default;
58 /** Sets a object to be managed by the given memory group
59 *
60 * @note Manager must not be finalized
61 *
62 * @param[in] obj Object to be managed
63 */
64 void manage(TensorType *obj);
65 /** Finalizes memory for a given object
66 *
67 * @note Manager must not be finalized
68 *
Georgios Pinitasdf310362018-11-14 13:16:56 +000069 * @param[in, out] obj Object to request memory for
70 * @param[in, out] obj_memory Object's memory handling interface which can be used to alter the underlying memory
71 * that is used by the object.
72 * @param[in] size Size of memory to allocate
Georgios Pinitas555f1c22018-12-14 17:11:20 +000073 * @param[in] alignment (Optional) Alignment to use
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010074 */
Georgios Pinitas555f1c22018-12-14 17:11:20 +000075 void finalize_memory(TensorType *obj, IMemory &obj_memory, size_t size, size_t alignment = 0);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010076
77 // Inherited methods overridden:
78 void acquire() override;
79 void release() override;
80 MemoryMappings &mappings() override;
81
82private:
83 void associate_memory_group(TensorType *obj);
84
85private:
86 std::shared_ptr<IMemoryManager> _memory_manager; /**< Memory manager to be used by the group */
87 IMemoryPool *_pool; /**< Memory pool that the group is scheduled with */
88 MemoryMappings _mappings; /**< Memory mappings of the group */
89};
90
91template <typename TensorType>
92inline MemoryGroupBase<TensorType>::MemoryGroupBase(std::shared_ptr<IMemoryManager> memory_manager)
93 : _memory_manager(std::move(memory_manager)), _pool(nullptr), _mappings()
94{
95 if(_memory_manager)
96 {
97 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
98 }
99}
100
101template <typename TensorType>
102inline void MemoryGroupBase<TensorType>::manage(TensorType *obj)
103{
Georgios Pinitasceff0f92018-03-19 19:57:01 +0000104 if(_memory_manager && _mappings.empty())
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100105 {
106 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
107
108 // Defer registration to the first managed object
109 _memory_manager->lifetime_manager()->register_group(this);
110
111 // Associate this memory group with the tensor
112 associate_memory_group(obj);
113
114 // Start object lifetime
115 _memory_manager->lifetime_manager()->start_lifetime(obj);
116 }
117}
118
119template <typename TensorType>
Georgios Pinitas555f1c22018-12-14 17:11:20 +0000120inline void MemoryGroupBase<TensorType>::finalize_memory(TensorType *obj, IMemory &obj_memory, size_t size, size_t alignment)
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100121{
Georgios Pinitasceff0f92018-03-19 19:57:01 +0000122 // TODO (geopin01) : Check size (track size in MemoryMappings)
123 // Check if existing mapping is valid
Georgios Pinitasdf310362018-11-14 13:16:56 +0000124 ARM_COMPUTE_ERROR_ON(!_mappings.empty() && (_mappings.find(&obj_memory) == std::end(_mappings)));
Georgios Pinitasceff0f92018-03-19 19:57:01 +0000125
126 if(_memory_manager && _mappings.empty())
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100127 {
128 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
Georgios Pinitas555f1c22018-12-14 17:11:20 +0000129 _memory_manager->lifetime_manager()->end_lifetime(obj, obj_memory, size, alignment);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100130 }
131}
132
133template <typename TensorType>
134inline void MemoryGroupBase<TensorType>::acquire()
135{
136 if(!_mappings.empty())
137 {
138 ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
139 _pool = _memory_manager->pool_manager()->lock_pool();
140 _pool->acquire(_mappings);
141 }
142}
143
144template <typename TensorType>
145inline void MemoryGroupBase<TensorType>::release()
146{
147 if(_pool != nullptr)
148 {
149 ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
150 ARM_COMPUTE_ERROR_ON(_mappings.empty());
151 _pool->release(_mappings);
152 _memory_manager->pool_manager()->unlock_pool(_pool);
153 _pool = nullptr;
154 }
155}
156
157template <typename TensorType>
158inline MemoryMappings &MemoryGroupBase<TensorType>::mappings()
159{
160 return _mappings;
161}
162
163template <typename TensorType>
164inline void MemoryGroupBase<TensorType>::associate_memory_group(TensorType *)
165{
166 ARM_COMPUTE_ERROR("Must be implemented by child class");
167}
168} // arm_compute
169#endif /*__ARM_COMPUTE_MEMORYGROUPBASE_H__ */