blob: 5c719c761a30624151ba0b0aeef9b51c9ca54ec8 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2016, 2017 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#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"
29
30#include <cstddef>
31
32using namespace arm_compute;
33
34namespace
35{
36bool validate_subtensor_shape(const TensorInfo &parent_info, const TensorInfo &child_info, const Coordinates &coords)
37{
38 bool is_valid = true;
39 const TensorShape &parent_shape = parent_info.tensor_shape();
40 const TensorShape &child_shape = child_info.tensor_shape();
41 const size_t parent_dims = parent_info.num_dimensions();
42 const size_t child_dims = child_info.num_dimensions();
43
44 if(child_dims <= parent_dims)
45 {
46 for(size_t num_dimensions = child_dims; num_dimensions > 0; --num_dimensions)
47 {
48 const size_t child_dim_size = coords[num_dimensions - 1] + child_shape[num_dimensions - 1];
49
50 if((coords[num_dimensions - 1] < 0) || (child_dim_size > parent_shape[num_dimensions - 1]))
51 {
52 is_valid = false;
53 break;
54 }
55 }
56 }
57 else
58 {
59 is_valid = false;
60 }
61
62 return is_valid;
63}
64} // namespace
65
66TensorAllocator::TensorAllocator()
67 : _buffer(nullptr)
68{
69}
70
71void TensorAllocator::init(const TensorAllocator &allocator, const Coordinates &coords, TensorInfo sub_info)
72{
73 // Get parent info
74 const TensorInfo parent_info = allocator.info();
75
76 // Check if coordinates and new shape are within the parent tensor
77 ARM_COMPUTE_ERROR_ON(!validate_subtensor_shape(parent_info, sub_info, coords));
78 ARM_COMPUTE_UNUSED(validate_subtensor_shape);
79
80 // Copy pointer to buffer
81 _buffer = allocator._buffer;
82
83 // Init tensor info with new dimensions
84 size_t total_size = parent_info.offset_element_in_bytes(coords) + sub_info.total_size() - sub_info.offset_first_element_in_bytes();
85 sub_info.init(sub_info.tensor_shape(), sub_info.format(), parent_info.strides_in_bytes(), parent_info.offset_element_in_bytes(coords), total_size);
86
87 // Set TensorInfo
88 init(sub_info);
89}
90
91uint8_t *TensorAllocator::data() const
92{
93 return (_buffer != nullptr) ? _buffer.get()->data() : nullptr;
94}
95
96void TensorAllocator::allocate()
97{
98 ARM_COMPUTE_ERROR_ON(_buffer != nullptr);
99
100 _buffer = std::make_shared<std::vector<uint8_t>>(info().total_size());
101 info().set_is_resizable(false);
102}
103
104void TensorAllocator::free()
105{
106 ARM_COMPUTE_ERROR_ON(_buffer == nullptr);
107
108 _buffer.reset();
109 info().set_is_resizable(true);
110}
111
112uint8_t *TensorAllocator::lock()
113{
114 return (_buffer != nullptr) ? _buffer.get()->data() : nullptr;
115}
116
117void TensorAllocator::unlock()
118{
119}