blob: 372852bfead3f220dca8a41880b6281e02e1003d [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2016-2020 Arm Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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#include "arm_compute/runtime/TensorAllocator.h"
25
26#include "arm_compute/core/Coordinates.h"
27#include "arm_compute/core/Error.h"
28#include "arm_compute/core/TensorInfo.h"
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010029#include "arm_compute/runtime/MemoryGroup.h"
Georgios Pinitas99d40952018-04-23 16:26:46 +010030#include "arm_compute/runtime/MemoryRegion.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031
32#include <cstddef>
33
34using namespace arm_compute;
35
36namespace
37{
38bool validate_subtensor_shape(const TensorInfo &parent_info, const TensorInfo &child_info, const Coordinates &coords)
39{
40 bool is_valid = true;
41 const TensorShape &parent_shape = parent_info.tensor_shape();
42 const TensorShape &child_shape = child_info.tensor_shape();
43 const size_t parent_dims = parent_info.num_dimensions();
44 const size_t child_dims = child_info.num_dimensions();
45
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010046 if (child_dims <= parent_dims)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010047 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010048 for (size_t num_dimensions = child_dims; num_dimensions > 0; --num_dimensions)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049 {
50 const size_t child_dim_size = coords[num_dimensions - 1] + child_shape[num_dimensions - 1];
51
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010052 if ((coords[num_dimensions - 1] < 0) || (child_dim_size > parent_shape[num_dimensions - 1]))
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 {
54 is_valid = false;
55 break;
56 }
57 }
58 }
59 else
60 {
61 is_valid = false;
62 }
63
64 return is_valid;
65}
66} // namespace
67
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010068TensorAllocator::TensorAllocator(IMemoryManageable *owner) : _owner(owner), _associated_memory_group(nullptr), _memory()
Anthony Barbier6ff3b192017-09-04 18:44:23 +010069{
70}
71
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010072TensorAllocator::~TensorAllocator()
73{
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000074 info().set_is_resizable(true);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010075}
76
77TensorAllocator::TensorAllocator(TensorAllocator &&o) noexcept
78 : ITensorAllocator(std::move(o)),
Georgios Pinitas26014cf2019-09-09 19:00:57 +010079 _owner(o._owner),
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010080 _associated_memory_group(o._associated_memory_group),
Georgios Pinitas26014cf2019-09-09 19:00:57 +010081 _memory(std::move(o._memory))
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010082{
Georgios Pinitas26014cf2019-09-09 19:00:57 +010083 o._owner = nullptr;
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010084 o._associated_memory_group = nullptr;
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000085 o._memory = Memory();
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010086}
87
88TensorAllocator &TensorAllocator::operator=(TensorAllocator &&o) noexcept
89{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010090 if (&o != this)
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010091 {
Georgios Pinitas26014cf2019-09-09 19:00:57 +010092 _owner = o._owner;
93 o._owner = nullptr;
94
Georgios Pinitasbaf174e2017-09-08 19:47:30 +010095 _associated_memory_group = o._associated_memory_group;
96 o._associated_memory_group = nullptr;
97
Georgios Pinitas84b51ad2017-11-07 13:24:57 +000098 _memory = std::move(o._memory);
99 o._memory = Memory();
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100100
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100101 ITensorAllocator::operator=(std::move(o));
102 }
103 return *this;
104}
105
Michalis Spyrou53860dd2019-07-01 14:20:56 +0100106void TensorAllocator::init(const TensorAllocator &allocator, const Coordinates &coords, TensorInfo &sub_info)
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100107{
108 // Get parent info
109 const TensorInfo parent_info = allocator.info();
110
111 // Check if coordinates and new shape are within the parent tensor
112 ARM_COMPUTE_ERROR_ON(!validate_subtensor_shape(parent_info, sub_info, coords));
113 ARM_COMPUTE_UNUSED(validate_subtensor_shape);
114
115 // Copy pointer to buffer
Georgios Pinitas99d40952018-04-23 16:26:46 +0100116 _memory = Memory(allocator._memory.region());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100117
118 // Init tensor info with new dimensions
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100119 size_t total_size =
120 parent_info.offset_element_in_bytes(coords) + sub_info.total_size() - sub_info.offset_first_element_in_bytes();
121 sub_info.init(sub_info.tensor_shape(), sub_info.format(), parent_info.strides_in_bytes(),
122 parent_info.offset_element_in_bytes(coords), total_size);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100123
124 // Set TensorInfo
125 init(sub_info);
126}
127
128uint8_t *TensorAllocator::data() const
129{
Georgios Pinitasdf310362018-11-14 13:16:56 +0000130 return (_memory.region() == nullptr) ? nullptr : reinterpret_cast<uint8_t *>(_memory.region()->buffer());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100131}
132
133void TensorAllocator::allocate()
134{
Georgios Pinitas646d4e42019-11-25 19:15:56 +0000135 // Align to 64-byte boundaries by default if alignment is not specified
136 const size_t alignment_to_use = (alignment() != 0) ? alignment() : 64;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100137 if (_associated_memory_group == nullptr)
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100138 {
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000139 _memory.set_owned_region(std::make_unique<MemoryRegion>(info().total_size(), alignment_to_use));
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100140 }
141 else
142 {
Georgios Pinitas646d4e42019-11-25 19:15:56 +0000143 _associated_memory_group->finalize_memory(_owner, _memory, info().total_size(), alignment_to_use);
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100144 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100145 info().set_is_resizable(false);
146}
147
148void TensorAllocator::free()
149{
Georgios Pinitasdf310362018-11-14 13:16:56 +0000150 _memory.set_region(nullptr);
Georgios Pinitas84b51ad2017-11-07 13:24:57 +0000151 info().set_is_resizable(true);
152}
153
Georgios Pinitas4d0351c2019-04-03 15:11:16 +0100154Status TensorAllocator::import_memory(void *memory)
Georgios Pinitas84b51ad2017-11-07 13:24:57 +0000155{
Georgios Pinitasdf310362018-11-14 13:16:56 +0000156 ARM_COMPUTE_RETURN_ERROR_ON(memory == nullptr);
Georgios Pinitas84b51ad2017-11-07 13:24:57 +0000157 ARM_COMPUTE_RETURN_ERROR_ON(_associated_memory_group != nullptr);
Georgios Pinitas4d0351c2019-04-03 15:11:16 +0100158 ARM_COMPUTE_RETURN_ERROR_ON(alignment() != 0 && !arm_compute::utility::check_aligned(memory, alignment()));
Georgios Pinitasdf310362018-11-14 13:16:56 +0000159
Georgios Pinitas40f51a62020-11-21 03:04:18 +0000160 _memory.set_owned_region(std::make_unique<MemoryRegion>(memory, info().total_size()));
Georgios Pinitas84b51ad2017-11-07 13:24:57 +0000161 info().set_is_resizable(false);
162
Georgios Pinitas631c41a2017-12-06 11:53:03 +0000163 return Status{};
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100164}
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100165
Georgios Pinitas26014cf2019-09-09 19:00:57 +0100166void TensorAllocator::set_associated_memory_group(IMemoryGroup *associated_memory_group)
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100167{
168 ARM_COMPUTE_ERROR_ON(associated_memory_group == nullptr);
Michalis Spyroucaa7dee2019-09-09 19:23:39 +0100169 ARM_COMPUTE_ERROR_ON(_associated_memory_group != nullptr && _associated_memory_group != associated_memory_group);
Georgios Pinitasdf310362018-11-14 13:16:56 +0000170 ARM_COMPUTE_ERROR_ON(_memory.region() != nullptr && _memory.region()->buffer() != nullptr);
171
Georgios Pinitasbaf174e2017-09-08 19:47:30 +0100172 _associated_memory_group = associated_memory_group;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100173}
174
175uint8_t *TensorAllocator::lock()
176{
Georgios Pinitas99d40952018-04-23 16:26:46 +0100177 ARM_COMPUTE_ERROR_ON(_memory.region() == nullptr);
178 return reinterpret_cast<uint8_t *>(_memory.region()->buffer());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100179}
180
181void TensorAllocator::unlock()
182{
183}