Compute Library
 23.11
MemoryGroup.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017-2020 Arm Limited.
3  *
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_MEMORYGROUP_H
25 #define ARM_COMPUTE_MEMORYGROUP_H
26 
27 #include "arm_compute/core/Error.h"
32 
33 #include <cstddef>
34 #include <memory>
35 
36 namespace arm_compute
37 {
38 // Forward declarations
39 class IMemory;
40 
41 /** Memory group */
42 class MemoryGroup final : public IMemoryGroup
43 {
44 public:
45  /** Default Constructor */
46  MemoryGroup(std::shared_ptr<IMemoryManager> = nullptr) noexcept;
47  /** Default destructor */
48  ~MemoryGroup() = default;
49  /** Prevent instances of this class from being copied (As this class contains pointers) */
50  MemoryGroup(const MemoryGroup &) = delete;
51  /** Prevent instances of this class from being copy assigned (As this class contains pointers) */
52  MemoryGroup &operator=(const MemoryGroup &) = delete;
53  /** Allow instances of this class to be moved */
54  MemoryGroup(MemoryGroup &&) = default;
55  /** Allow instances of this class to be moved */
56  MemoryGroup &operator=(MemoryGroup &&) = default;
57 
58  // Inherited methods overridden:
59  void manage(IMemoryManageable *obj) override;
60  void finalize_memory(IMemoryManageable *obj, IMemory &obj_memory, size_t size, size_t alignment) override;
61  void acquire() override;
62  void release() override;
63  MemoryMappings &mappings() override;
64 
65 private:
66  std::shared_ptr<IMemoryManager> _memory_manager; /**< Memory manager to be used by the group */
67  IMemoryPool *_pool; /**< Memory pool that the group is scheduled with */
68  MemoryMappings _mappings; /**< Memory mappings of the group */
69 };
70 
71 inline MemoryGroup::MemoryGroup(std::shared_ptr<IMemoryManager> memory_manager) noexcept
72  : _memory_manager(memory_manager), _pool(nullptr), _mappings()
73 {
74 }
75 
77 {
78  if (_memory_manager && (obj != nullptr))
79  {
80  ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
81 
82  // Defer registration to the first managed object
83  _memory_manager->lifetime_manager()->register_group(this);
84 
85  // Associate this memory group with the tensor
86  obj->associate_memory_group(this);
87 
88  // Start object lifetime
89  _memory_manager->lifetime_manager()->start_lifetime(obj);
90  }
91 }
92 
93 inline void MemoryGroup::finalize_memory(IMemoryManageable *obj, IMemory &obj_memory, size_t size, size_t alignment)
94 {
95  if (_memory_manager)
96  {
97  ARM_COMPUTE_ERROR_ON(!_memory_manager->lifetime_manager());
98  _memory_manager->lifetime_manager()->end_lifetime(obj, obj_memory, size, alignment);
99  }
100 }
101 
102 inline void MemoryGroup::acquire()
103 {
104  if (!_mappings.empty())
105  {
106  ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
107  _pool = _memory_manager->pool_manager()->lock_pool();
108  _pool->acquire(_mappings);
109  }
110 }
111 
112 inline void MemoryGroup::release()
113 {
114  if (_pool != nullptr)
115  {
116  ARM_COMPUTE_ERROR_ON(!_memory_manager->pool_manager());
117  ARM_COMPUTE_ERROR_ON(_mappings.empty());
118  _pool->release(_mappings);
119  _memory_manager->pool_manager()->unlock_pool(_pool);
120  _pool = nullptr;
121  }
122 }
123 
125 {
126  return _mappings;
127 }
128 } // namespace arm_compute
129 #endif /*ARM_COMPUTE_MEMORYGROUP_H */
arm_compute::IMemoryManageable::associate_memory_group
virtual void associate_memory_group(IMemoryGroup *memory_group)=0
Associates a memory managable object with the memory group that manages it.
arm_compute::MemoryGroup::manage
void manage(IMemoryManageable *obj) override
Sets a object to be managed by the given memory group.
Definition: MemoryGroup.h:76
IMemoryPool.h
arm_compute::IMemoryManageable
Interface of an object than can be memory managed.
Definition: IMemoryGroup.h:69
arm_compute::MemoryGroup::finalize_memory
void finalize_memory(IMemoryManageable *obj, IMemory &obj_memory, size_t size, size_t alignment) override
Finalizes memory for a given object.
Definition: MemoryGroup.h:93
arm_compute::MemoryGroup::~MemoryGroup
~MemoryGroup()=default
Default destructor.
arm_compute::IMemoryGroup
Memory group interface.
Definition: IMemoryGroup.h:37
Error.h
arm_compute::MemoryGroup::acquire
void acquire() override
Acquires backing memory for the whole group.
Definition: MemoryGroup.h:102
arm_compute::MemoryGroup::MemoryGroup
MemoryGroup(std::shared_ptr< IMemoryManager >=nullptr) noexcept
Default Constructor.
Definition: MemoryGroup.h:71
arm_compute::MemoryGroup::release
void release() override
Releases backing memory of the whole group.
Definition: MemoryGroup.h:112
arm_compute::MemoryGroup::mappings
MemoryMappings & mappings() override
Gets the memory mapping of the group.
Definition: MemoryGroup.h:124
ARM_COMPUTE_ERROR_ON
#define ARM_COMPUTE_ERROR_ON(cond)
If the condition is true then an error message is printed and an exception thrown.
Definition: Error.h:466
IMemoryManager.h
arm_compute::MemoryGroup::operator=
MemoryGroup & operator=(const MemoryGroup &)=delete
Prevent instances of this class from being copy assigned (As this class contains pointers)
arm_compute::IMemoryPool::release
virtual void release(MemoryMappings &handles)=0
Releases a memory block.
arm_compute::IMemory
Memory interface.
Definition: IMemory.h:32
arm_compute::IMemoryPool::acquire
virtual void acquire(MemoryMappings &handles)=0
Sets occupant to the memory pool.
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24
arm_compute::MemoryMappings
std::map< IMemory *, size_t > MemoryMappings
A map of (handle, index/offset), where handle is the memory handle of the object to provide the memor...
Definition: Types.h:45
Macros.h
arm_compute::IMemoryPool
Memory Pool Inteface.
Definition: IMemoryPool.h:37
arm_compute::MemoryGroup
Memory group.
Definition: MemoryGroup.h:42
IMemoryGroup.h