blob: 1b2278d99b13c2d2e4e1339d38f826d1c7771371 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Georgios Pinitasb14a0f02021-01-08 03:14:31 +00002 * Copyright (c) 2017-2021 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 */
Michalis Spyrouf4643372019-11-29 16:17:13 +000024#ifndef ARM_COMPUTE_SUBTENSORINFO_H
25#define ARM_COMPUTE_SUBTENSORINFO_H
Anthony Barbier6ff3b192017-09-04 18:44:23 +010026
27#include "arm_compute/core/ITensorInfo.h"
28
29#include "arm_compute/core/Coordinates.h"
Georgios Pinitas6f669f02017-09-26 12:32:57 +010030#include "arm_compute/core/Helpers.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010031#include "arm_compute/core/Strides.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/TensorShape.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010034
35#include <cstddef>
Georgios Pinitas283c1792017-11-10 18:14:06 +000036#include <memory>
Anthony Barbier6ff3b192017-09-04 18:44:23 +010037
38namespace arm_compute
39{
40/** Store the sub tensor's metadata */
41class SubTensorInfo final : public ITensorInfo
42{
43public:
44 /** Default constructor */
45 SubTensorInfo();
46 /** Default constructor
47 *
Georgios Pinitas652bde52018-01-10 15:33:28 +000048 * @param[in] parent Metadata of parent tensor.
49 * @param[in] tensor_shape Tensor shape. Shape must fit inside parent's shape.
50 * X and Y dimensions must match the parent's ones.
51 * @param[in] coords Coordinates of starting element inside parent tensor.
52 * @param[in] extend_parent (Optional) Extend parent with subtensor shape if subtensor indexes out of bounds
Anthony Barbier6ff3b192017-09-04 18:44:23 +010053 */
Georgios Pinitas652bde52018-01-10 15:33:28 +000054 SubTensorInfo(ITensorInfo *parent, TensorShape tensor_shape, Coordinates coords, bool extend_parent = false);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010055 /** Default destructor */
56 ~SubTensorInfo() = default;
57 /** Allow instances of this class to be copy constructed */
58 SubTensorInfo(const SubTensorInfo &) = default;
59 /** Allow instances of this class to be copied */
60 SubTensorInfo &operator=(const SubTensorInfo &) = default;
61 /** Allow instances of this class to be move constructed */
62 SubTensorInfo(SubTensorInfo &&) = default;
63 /** Allow instances of this class to be moved */
64 SubTensorInfo &operator=(SubTensorInfo &&) = default;
Georgios Pinitase2c82fe2017-10-02 18:51:47 +010065 /** Returns the coordinates of the sub-tensor inside the parent tensor
66 *
67 * @return Sub-tensor coordinates
68 */
69 Coordinates coords() const
70 {
71 return _coords;
72 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +010073
74 // Inherited methods overridden:
Georgios Pinitas283c1792017-11-10 18:14:06 +000075 std::unique_ptr<ITensorInfo> clone() const override;
76 ITensorInfo &set_data_type(DataType data_type) override
Anthony Barbier6ff3b192017-09-04 18:44:23 +010077 {
78 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
79 _parent->set_data_type(data_type);
Georgios Pinitas283c1792017-11-10 18:14:06 +000080 return *this;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010081 };
Isabella Gottardid17a6772018-02-27 17:41:55 +000082 ITensorInfo &set_data_layout(const DataLayout &data_layout) override
83 {
84 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
85 _parent->set_data_layout(data_layout);
86 return *this;
87 };
Georgios Pinitas283c1792017-11-10 18:14:06 +000088 ITensorInfo &set_num_channels(int num_channels) override
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089 {
90 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
91 _parent->set_num_channels(num_channels);
Georgios Pinitas283c1792017-11-10 18:14:06 +000092 return *this;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093 };
Georgios Pinitas283c1792017-11-10 18:14:06 +000094 ITensorInfo &set_format(Format format) override
Anthony Barbier6ff3b192017-09-04 18:44:23 +010095 {
96 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
97 _parent->set_format(format);
Georgios Pinitas283c1792017-11-10 18:14:06 +000098 return *this;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010099 };
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000100 ITensorInfo &set_tensor_shape(const TensorShape &shape) override;
Georgios Pinitasb14a0f02021-01-08 03:14:31 +0000101 ITensorInfo &set_tensor_dims_state(const TensorDimsState &state) override;
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000102 ITensorInfo &set_quantization_info(const QuantizationInfo &quantization_info) override
Georgios Pinitas283c1792017-11-10 18:14:06 +0000103 {
104 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
105 _parent->set_quantization_info(quantization_info);
106 return *this;
107 }
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000108 ITensorInfo &reset_padding() override
109 {
110 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
111 _parent->reset_padding();
112 return *this;
113 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100114 bool auto_padding() override
115 {
116 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
117 return _parent->auto_padding();
118 };
119 bool extend_padding(const PaddingSize &padding) override;
120 size_t dimension(size_t index) const override
121 {
122 return _tensor_shape[index];
123 }
Isabella Gottardid56e7702018-02-28 14:29:36 +0000124 size_t dimension(DataLayoutDimension dimension) const override
125 {
126 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
127 return get_data_layout_dimension_index(_parent->data_layout(), dimension);
128 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100129 const Strides &strides_in_bytes() const override
130 {
131 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
132 return _parent->strides_in_bytes();
133 }
134 size_t offset_first_element_in_bytes() const override
135 {
136 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
137 return _parent->offset_element_in_bytes(_coords);
138 }
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100139 int32_t offset_element_in_bytes(const Coordinates &pos) const override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140 size_t element_size() const override
141 {
142 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
143 return _parent->element_size();
144 }
145 size_t num_dimensions() const override
146 {
147 return _tensor_shape.num_dimensions();
148 }
149 size_t num_channels() const override
150 {
151 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
152 return _parent->num_channels();
153 }
154 const TensorShape &tensor_shape() const override
155 {
156 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
157 return _tensor_shape;
158 }
Georgios Pinitasb14a0f02021-01-08 03:14:31 +0000159 const TensorDimsState &tensor_dims_state() const override
160 {
161 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
162 return _dims_state;
163 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100164 DataType data_type() const override
165 {
166 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
167 return _parent->data_type();
168 }
169 Format format() const override
170 {
171 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
172 return _parent->format();
173 }
174 size_t total_size() const override
175 {
176 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
177 return _parent->total_size();
178 }
179 PaddingSize padding() const override
180 {
181 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
182 return _parent->padding();
183 }
184 bool has_padding() const override
185 {
186 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
187 return _parent->has_padding();
188 }
189 bool is_resizable() const override
190 {
191 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
192 return _parent->is_resizable();
193 }
Georgios Pinitas49be2e32019-09-02 13:18:55 +0100194 bool is_dynamic() const override
195 {
196 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
197 return _parent->is_dynamic();
198 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000199 ITensorInfo &set_is_resizable(bool is_resizable) override
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100200 {
201 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
202 _parent->set_is_resizable(is_resizable);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000203 return *this;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100204 }
205 ValidRegion valid_region() const override
206 {
207 return _valid_region;
208 }
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000209 void set_valid_region(const ValidRegion &valid_region) override
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100210 {
211 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
Georgios Pinitase2c82fe2017-10-02 18:51:47 +0100212 // Check if subtensor is valid if parent is configured
213 if(_parent->tensor_shape().total_size() != 0)
214 {
215 ARM_COMPUTE_ERROR_ON_INVALID_SUBTENSOR_VALID_REGION(_parent->valid_region(), valid_region);
216 }
Diego Lopez Recas35ceeb22017-12-04 18:56:10 +0000217 _valid_region = valid_region;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100218 }
Michel Iwaniec00633802017-10-12 14:14:15 +0100219 QuantizationInfo quantization_info() const override
220 {
221 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
222 return _parent->quantization_info();
223 }
Isabella Gottardid17a6772018-02-27 17:41:55 +0000224 DataLayout data_layout() const override
225 {
226 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
227 return _parent->data_layout();
228 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100229
230private:
Georgios Pinitasb14a0f02021-01-08 03:14:31 +0000231 ITensorInfo *_parent;
232 TensorShape _tensor_shape;
233 TensorDimsState _dims_state;
234 Coordinates _coords;
235 ValidRegion _valid_region;
236 bool _extend_parent;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100237};
Georgios Pinitas49be2e32019-09-02 13:18:55 +0100238} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000239#endif /*ARM_COMPUTE_SUBTENSORINFO_H */