blob: 6654ccf00af22c4c99451a26c17202987fbc64d6 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +01002 * Copyright (c) 2017-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 */
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;
101 ITensorInfo &set_quantization_info(const QuantizationInfo &quantization_info) override
Georgios Pinitas283c1792017-11-10 18:14:06 +0000102 {
103 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
104 _parent->set_quantization_info(quantization_info);
105 return *this;
106 }
Georgios Pinitas30902ed2017-11-14 15:32:57 +0000107 ITensorInfo &reset_padding() override
108 {
109 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
110 _parent->reset_padding();
111 return *this;
112 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100113 bool auto_padding() override
114 {
115 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
116 return _parent->auto_padding();
117 };
118 bool extend_padding(const PaddingSize &padding) override;
119 size_t dimension(size_t index) const override
120 {
121 return _tensor_shape[index];
122 }
Isabella Gottardid56e7702018-02-28 14:29:36 +0000123 size_t dimension(DataLayoutDimension dimension) const override
124 {
125 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
126 return get_data_layout_dimension_index(_parent->data_layout(), dimension);
127 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100128 const Strides &strides_in_bytes() const override
129 {
130 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
131 return _parent->strides_in_bytes();
132 }
133 size_t offset_first_element_in_bytes() const override
134 {
135 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
136 return _parent->offset_element_in_bytes(_coords);
137 }
Michalis Spyrou7c60c992019-10-10 14:33:47 +0100138 int32_t offset_element_in_bytes(const Coordinates &pos) const override;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100139 size_t element_size() const override
140 {
141 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
142 return _parent->element_size();
143 }
144 size_t num_dimensions() const override
145 {
146 return _tensor_shape.num_dimensions();
147 }
148 size_t num_channels() const override
149 {
150 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
151 return _parent->num_channels();
152 }
153 const TensorShape &tensor_shape() const override
154 {
155 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
156 return _tensor_shape;
157 }
158 DataType data_type() const override
159 {
160 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
161 return _parent->data_type();
162 }
163 Format format() const override
164 {
165 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
166 return _parent->format();
167 }
168 size_t total_size() const override
169 {
170 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
171 return _parent->total_size();
172 }
173 PaddingSize padding() const override
174 {
175 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
176 return _parent->padding();
177 }
178 bool has_padding() const override
179 {
180 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
181 return _parent->has_padding();
182 }
183 bool is_resizable() const override
184 {
185 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
186 return _parent->is_resizable();
187 }
Georgios Pinitas49be2e32019-09-02 13:18:55 +0100188 bool is_dynamic() const override
189 {
190 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
191 return _parent->is_dynamic();
192 }
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000193 ITensorInfo &set_is_resizable(bool is_resizable) override
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100194 {
195 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
196 _parent->set_is_resizable(is_resizable);
Georgios Pinitasa3b1b462017-11-16 19:24:39 +0000197 return *this;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100198 }
Georgios Pinitas49be2e32019-09-02 13:18:55 +0100199 ITensorInfo &set_is_dynamic(bool is_dynamic) override
200 {
201 ARM_COMPUTE_ERROR_ON(_parent == nullptr);
202 _parent->set_is_dynamic(is_dynamic);
203 return *this;
204 }
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100205 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:
231 ITensorInfo *_parent;
232 TensorShape _tensor_shape;
233 Coordinates _coords;
234 ValidRegion _valid_region;
Georgios Pinitas652bde52018-01-10 15:33:28 +0000235 bool _extend_parent;
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100236};
Georgios Pinitas49be2e32019-09-02 13:18:55 +0100237} // namespace arm_compute
Michalis Spyrouf4643372019-11-29 16:17:13 +0000238#endif /*ARM_COMPUTE_SUBTENSORINFO_H */