blob: ba1dbc0a28ee6aca6fc3088a46e4fb5759cd9c2a [file] [log] [blame]
Georgios Pinitasbaf174e2017-09-08 19:47:30 +01001/*
Georgios Pinitas26014cf2019-09-09 19:00:57 +01002 * Copyright (c) 2017-2019 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_MEMORYGROUP_H
25#define ARM_COMPUTE_MEMORYGROUP_H
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010026
Georgios Pinitas26014cf2019-09-09 19:00:57 +010027#include "arm_compute/runtime/IMemoryGroup.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010028
Georgios Pinitas26014cf2019-09-09 19:00:57 +010029#include "arm_compute/core/Error.h"
30#include "arm_compute/core/utils/misc/Macros.h"
31#include "arm_compute/runtime/IMemoryManager.h"
32#include "arm_compute/runtime/IMemoryPool.h"
33
34#include <cstddef>
35#include <memory>
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010036
37namespace arm_compute
38{
Georgios Pinitas26014cf2019-09-09 19:00:57 +010039// Forward declarations
40class IMemory;
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010041
Georgios Pinitas26014cf2019-09-09 19:00:57 +010042/** Memory group */
43class MemoryGroup final : public IMemoryGroup
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010044{
Georgios Pinitas26014cf2019-09-09 19:00:57 +010045public:
46 /** Default Constructor */
47 MemoryGroup(IMemoryManager *memory_manager);
48 /** Default Constructor */
49 MemoryGroup(std::shared_ptr<IMemoryManager> = nullptr);
50 /** Default destructor */
51 ~MemoryGroup() = default;
52 /** Prevent instances of this class from being copied (As this class contains pointers) */
53 MemoryGroup(const MemoryGroup &) = delete;
54 /** Prevent instances of this class from being copy assigned (As this class contains pointers) */
55 MemoryGroup &operator=(const MemoryGroup &) = delete;
56 /** Allow instances of this class to be moved */
57 MemoryGroup(MemoryGroup &&) = default;
58 /** Allow instances of this class to be moved */
59 MemoryGroup &operator=(MemoryGroup &&) = default;
60
61 // Inherited methods overridden:
62 void manage(IMemoryManageable *obj) override;
63 void finalize_memory(IMemoryManageable *obj, IMemory &obj_memory, size_t size, size_t alignment) override;
64 void acquire() override;
65 void release() override;
66 MemoryMappings &mappings() override;
67
68private:
69 std::shared_ptr<IMemoryManager> _memory_manager; /**< Memory manager to be used by the group */
70 IMemoryPool *_pool; /**< Memory pool that the group is scheduled with */
71 MemoryMappings _mappings; /**< Memory mappings of the group */
72};
73
74inline MemoryGroup::MemoryGroup(std::shared_ptr<IMemoryManager> memory_manager)
75 : _memory_manager(memory_manager), _pool(nullptr), _mappings()
76{
77}
78
79inline void MemoryGroup::manage(IMemoryManageable *obj)
80{
81 if(_memory_manager && (obj != nullptr))
82 {
83 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
84
85 // Defer registration to the first managed object
86 _memory_manager->lifetime_manager()->register_group(this);
87
88 // Associate this memory group with the tensor
89 obj->associate_memory_group(this);
90
91 // Start object lifetime
92 _memory_manager->lifetime_manager()->start_lifetime(obj);
93 }
94}
95
96inline void MemoryGroup::finalize_memory(IMemoryManageable *obj, IMemory &obj_memory, size_t size, size_t alignment)
97{
98 if(_memory_manager)
99 {
100 ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
101 _memory_manager->lifetime_manager()->end_lifetime(obj, obj_memory, size, alignment);
102 }
103}
104
105inline void MemoryGroup::acquire()
106{
107 if(!_mappings.empty())
108 {
109 ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
110 _pool = _memory_manager->pool_manager()->lock_pool();
111 _pool->acquire(_mappings);
112 }
113}
114
115inline void MemoryGroup::release()
116{
117 if(_pool != nullptr)
118 {
119 ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
120 ARM_COMPUTE_ERROR_ON(_mappings.empty());
121 _pool->release(_mappings);
122 _memory_manager->pool_manager()->unlock_pool(_pool);
123 _pool = nullptr;
124 }
125}
126
127inline MemoryMappings &MemoryGroup::mappings()
128{
129 return _mappings;
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100130}
131} // arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000132#endif /*ARM_COMPUTE_MEMORYGROUP_H */