blob: 916da1bd9d895bd30b2b9e8302f9ef177b9e9993 [file] [log] [blame]
Georgios Pinitas358ca202017-12-07 16:47:52 +00001/*
Viet-Hoa Do37c989a2023-02-24 15:52:21 +00002 * Copyright (c) 2017-2023 Arm Limited.
Georgios Pinitas358ca202017-12-07 16:47:52 +00003 *
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 */
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +000024#ifndef ACL_ARM_COMPUTE_CORE_UTILS_MISC_SHAPECALCULATOR
25#define ACL_ARM_COMPUTE_CORE_UTILS_MISC_SHAPECALCULATOR
Georgios Pinitas358ca202017-12-07 16:47:52 +000026
Georgios Pinitas9be0c5a2018-02-19 12:46:29 +000027#include "arm_compute/core/Helpers.h"
Georgios Pinitas358ca202017-12-07 16:47:52 +000028#include "arm_compute/core/ITensorInfo.h"
Gian Marco Iodice7026b302019-06-26 17:18:11 +010029#include "arm_compute/core/KernelDescriptors.h"
Georgios Pinitas1250a5a2018-01-02 13:27:37 +000030#include "arm_compute/core/Utils.h"
Adnan AlSinane4563a02021-09-01 15:32:03 +010031#include "arm_compute/runtime/FunctionDescriptors.h"
Georgios Pinitas358ca202017-12-07 16:47:52 +000032
Georgios Pinitas77589b52018-08-21 14:41:35 +010033#include "arm_compute/core/utils/helpers/tensor_transform.h"
34
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000035#include <cmath>
36
Georgios Pinitas358ca202017-12-07 16:47:52 +000037namespace arm_compute
38{
39namespace misc
40{
41namespace shape_calculator
42{
Pablo Telloa0a4ba12019-12-11 13:04:34 +000043/** Calculate the output tensor shape for the reduce mean operation
44 *
45 * @param[in] input Input tensor shape
46 * @param[in] reduction_axis Reduction axis
47 * @param[in] keep_dims Flag to indicate if dimensions are kept
48 *
49 * @return the calculated shape
50 */
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010051inline TensorShape calculate_reduce_mean_shape(ITensorInfo *input, const Coordinates &reduction_axis, bool keep_dims)
Pablo Telloa0a4ba12019-12-11 13:04:34 +000052{
53 const int reduction_ops = reduction_axis.num_dimensions();
54 Coordinates axis_local = reduction_axis;
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010055 const int input_dims = input->num_dimensions();
Pablo Telloa0a4ba12019-12-11 13:04:34 +000056 convert_negative_axis(axis_local, input_dims);
Manuel Bottinic58f0ad2020-08-07 16:49:15 +010057 TensorShape out_shape = input->tensor_shape();
Pablo Telloa0a4ba12019-12-11 13:04:34 +000058 // Configure reshape layer if we want to drop the dimensions
59 if(!keep_dims)
60 {
61 // We have to sort the reduction axis vectors in order for remove_dimension
62 // to work properly
63 std::sort(axis_local.begin(), axis_local.begin() + reduction_ops);
64 for(int i = 0; i < reduction_ops; ++i)
65 {
66 out_shape.remove_dimension(axis_local[i] - i);
67 }
68 return out_shape;
69 }
70 else
71 {
72 for(int i = 0; i < reduction_ops; ++i)
73 {
74 out_shape.set(axis_local[i], 1);
75 }
76 return out_shape;
77 }
78}
Michalis Spyroud33fe342019-01-04 17:10:25 +000079/** Calculate the output tensor shape of a vector input given the convolution dimensions
80 *
81 * @param[in] input Input tensor shape
82 * @param[in] conv_w Convolution width
83 * @param[in] conv_h Convolution height
84 * @param[in] data_layout Data layout
85 *
86 * @return the calculated shape
87 */
Abe Mbise7784c832018-05-31 16:48:41 +010088inline TensorShape compute_vector_to_tensor_output_shape(const TensorShape &input, size_t conv_w, size_t conv_h, const DataLayout &data_layout)
89{
90 const size_t idx_w = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
91 const size_t idx_h = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
92 const size_t idx_c = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
93
94 TensorShape output_shape(input);
95 output_shape.set(idx_w, conv_w);
96 output_shape.set(idx_h, conv_h);
97 output_shape.set(idx_c, input.x() / (conv_w * conv_h));
98
99 return output_shape;
100}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100101
Michalis Spyroud33fe342019-01-04 17:10:25 +0000102/** Calculate the permuted shape of an input given a permutation vector
103 *
104 * @param[in] input Input tensor info
105 * @param[in] perm Permutation vector
106 *
107 * @return the calculated shape
108 */
Pablo Tello00afd112018-01-04 10:34:24 +0000109inline TensorShape compute_permutation_output_shape(const ITensorInfo &input, const PermutationVector &perm)
110{
111 TensorShape output_shape = input.tensor_shape();
112 permute(output_shape, perm);
113 return output_shape;
114}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100115
Michalis Spyroud33fe342019-01-04 17:10:25 +0000116/** Calculate the output shape of the reorg layer given a stride
117 *
118 * @param[in] input Input tensor info
119 * @param[in] stride Stride
120 *
121 * @return the calculated shape
122 */
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100123inline TensorShape compute_reorg_output_shape(const ITensorInfo &input, int32_t stride)
124{
Gian Marco Iodice477531c2018-08-21 17:53:38 +0100125 const size_t idx_width = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH);
126 const size_t idx_height = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::HEIGHT);
127 const size_t idx_channel = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL);
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100128
Gian Marco Iodice477531c2018-08-21 17:53:38 +0100129 ARM_COMPUTE_ERROR_ON(stride <= 0);
130 ARM_COMPUTE_ERROR_ON_MSG((input.tensor_shape()[idx_width] % stride != 0), "The width of the input tensor must be a multiple of stride");
131 ARM_COMPUTE_ERROR_ON_MSG((input.tensor_shape()[idx_height] % stride != 0), "The height of the input tensor must be a multiple of stride");
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100132
133 TensorShape output_shape{ input.tensor_shape() };
Gian Marco Iodice477531c2018-08-21 17:53:38 +0100134
135 output_shape.set(idx_width, output_shape[idx_width] / stride);
136 output_shape.set(idx_height, output_shape[idx_height] / stride);
137 output_shape.set(idx_channel, output_shape[idx_channel] * stride * stride);
Georgios Pinitasaa6a04a2018-08-29 12:53:41 +0100138
139 return output_shape;
140}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100141
Michalis Spyroud33fe342019-01-04 17:10:25 +0000142/** Calculate the reshaped shape of the weights
143 *
144 * @param[in] weights Weights tensor info
145 * @param[in] has_bias (Optional) Set to true if there is bias
146 * @param[in] num_groups (Optional) Number of groups
147 *
148 * @return the calculated shape of the reshaped weights
149 */
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100150inline TensorShape compute_weights_reshaped_shape(const ITensorInfo &weights, bool has_bias = false, unsigned int num_groups = 1)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000151{
Giorgio Arena088c2b02018-08-07 16:59:05 +0100152 // Number of groups greater than one are only supported for NCHW data layout, and the number of weights must be a multiple of it.
Giorgio Arenac6aa49b2018-08-07 11:53:30 +0100153 ARM_COMPUTE_ERROR_ON(num_groups == 0);
Giorgio Arenac6aa49b2018-08-07 11:53:30 +0100154 ARM_COMPUTE_ERROR_ON(weights.data_layout() == DataLayout::NHWC && num_groups > 1);
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100155 ARM_COMPUTE_ERROR_ON((weights.dimension(3) % num_groups) != 0);
Giorgio Arenac6aa49b2018-08-07 11:53:30 +0100156
Georgios Pinitas78c00902018-01-09 17:33:11 +0000157 // Calculate output shape
158 TensorShape weights_reshaped{ weights.tensor_shape() };
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100159 weights_reshaped.set(3, weights_reshaped[3] / num_groups);
160
Georgios Pinitas78c00902018-01-09 17:33:11 +0000161 weights_reshaped.collapse(3);
162 const size_t tmp_dim = weights_reshaped[0];
Gian Marco Iodice916d1bc2018-08-13 11:20:41 +0100163 weights_reshaped.set(0, weights_reshaped[1]);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000164 weights_reshaped.set(1, tmp_dim + (has_bias ? 1 : 0));
Giorgio Arenac6aa49b2018-08-07 11:53:30 +0100165 if(weights.num_dimensions() < 5)
166 {
167 weights_reshaped.set(2, num_groups);
168 }
Georgios Pinitas78c00902018-01-09 17:33:11 +0000169
170 return weights_reshaped;
171}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100172
Michalis Spyroud33fe342019-01-04 17:10:25 +0000173/** Calculate the Left Hand Side matrix reshaped shape
174 *
175 * @param[in] a Input tensor info
176 * @param[in] lhs_info Left Hand Side matrix information
177 * @param[in] reinterpret_input_as_3d (Optional) Set to true if the input need to be interpreted as 3d
178 *
179 * @return the calculated shape
180 */
Gian Marco Iodice5ba5e092018-12-06 17:13:09 +0000181inline TensorShape compute_lhs_reshaped_shape(const ITensorInfo &a, const GEMMLHSMatrixInfo &lhs_info, bool reinterpret_input_as_3d = false)
182{
183 ARM_COMPUTE_ERROR_ON(lhs_info.m0 == 0);
184 ARM_COMPUTE_ERROR_ON(lhs_info.k0 == 0);
185 ARM_COMPUTE_ERROR_ON(lhs_info.v0 == 0);
186
187 // Input width/height
188 const unsigned int input_width = a.dimension(0);
189 const unsigned int input_height = reinterpret_input_as_3d ? a.dimension(1) * a.dimension(2) : a.dimension(1);
190
191 // Number of horizontal/vertical blocks in the input tensor
192 const unsigned int num_horiz_blocks = std::ceil(input_width / static_cast<float>(lhs_info.k0));
193 const unsigned int num_vert_blocks = std::ceil(input_height / static_cast<float>(lhs_info.m0));
194
195 // Block size
196 const unsigned int block_size = lhs_info.m0 * lhs_info.k0;
197
198 // Output width/height
199 const unsigned int output_width = block_size * num_horiz_blocks * lhs_info.v0;
200 const unsigned int output_height = std::ceil(num_vert_blocks / static_cast<float>(lhs_info.v0));
201
202 TensorShape lhs_shape{ a.tensor_shape() };
203 lhs_shape.set(0, output_width);
204 lhs_shape.set(1, output_height);
205
206 if((reinterpret_input_as_3d) && (lhs_shape.num_dimensions() > 2))
207 {
208 // When the data format is NHWC and the shapes are Nx1x1
209 // the tensor shape num_dimensions is automatically set to 1 instead of 3.
210 // To avoid failures by removing a dimension that doesn't exist
211 // check if the number of dimensions is greater than 2.
212 lhs_shape.remove_dimension(2);
213 }
214
215 return lhs_shape;
216}
217
Michalis Spyroud33fe342019-01-04 17:10:25 +0000218/** Calculate the Right Hand Side matrix reshaped shape
219 *
220 * @param[in] a Input tensor info
221 * @param[in] rhs_info Right Hand Side matrix information
222 *
223 * @return the calculated shape
224 */
Gian Marco Iodice3b0a2652018-12-07 11:18:09 +0000225inline TensorShape compute_rhs_reshaped_shape(const ITensorInfo &a, const GEMMRHSMatrixInfo &rhs_info)
226{
227 ARM_COMPUTE_ERROR_ON(rhs_info.n0 == 0);
228 ARM_COMPUTE_ERROR_ON(rhs_info.k0 == 0);
229 ARM_COMPUTE_ERROR_ON(rhs_info.h0 == 0);
230
231 // Input width/height
232 const unsigned int input_width = a.dimension(0);
233 const unsigned int input_height = a.dimension(1);
234
235 // Number of horizontal/vertical blocks in the input tensor
236 const unsigned int num_horiz_blocks = std::ceil(input_width / static_cast<float>(rhs_info.n0));
237 const unsigned int num_vert_blocks = std::ceil(input_height / static_cast<float>(rhs_info.k0));
238
239 // Block size
240 const unsigned int block_size = rhs_info.n0 * rhs_info.k0;
241
242 // Output width/height
243 const unsigned int output_width = block_size * num_vert_blocks * rhs_info.h0;
244 const unsigned int output_height = std::ceil(num_horiz_blocks / static_cast<float>(rhs_info.h0));
245
246 TensorShape rhs_shape{ a.tensor_shape() };
247 rhs_shape.set(0, output_width);
248 rhs_shape.set(1, output_height);
249
250 return rhs_shape;
251}
252
Michalis Spyroud33fe342019-01-04 17:10:25 +0000253/** Calculate the interleaved shape of an input tensor
254 *
255 * @param[in] a Input tensor info
256 * @param[in] mult_interleave4x4_height (Optional) Interleave4x4 height
257 * @param[in] reinterpret_input_as_3d (Optional) Set to true if the input need to be interpreted as 3d
258 *
259 * @return the calculated shape
260 */
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100261inline TensorShape compute_interleaved_shape(const ITensorInfo &a, int mult_interleave4x4_height = 1, bool reinterpret_input_as_3d = false)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000262{
Gian Marco36a0a462018-01-12 10:21:40 +0000263 // The interleaved output matrix will have the following shape: [ a_height * W, ceil(a_width / W) ] where W = 4 * mult_interleave4x4_height
264 ARM_COMPUTE_ERROR_ON(mult_interleave4x4_height < 1);
265 const int interleave_width = 4 * mult_interleave4x4_height;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000266 TensorShape shape_interleaved_a{ a.tensor_shape() };
Gian Marco36a0a462018-01-12 10:21:40 +0000267 shape_interleaved_a.set(0, a.dimension(0) * interleave_width);
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100268 if(reinterpret_input_as_3d)
269 {
270 const int M = a.dimension(1) * a.dimension(2);
271 const int height = std::ceil(M / static_cast<float>(interleave_width));
272 shape_interleaved_a.set(1, height);
Isabella Gottardi089695f2018-10-17 18:04:15 +0100273
274 // When the data format is NHWC and the shapes are Nx1x1
275 // the tensor shape num_dimensions is automatically set to 1 instead of 3.
276 // To avoid failures by removing a dimension that doesn't exist
277 // check if the number of dimensions is greater than 2.
278 if(shape_interleaved_a.num_dimensions() > 2)
279 {
280 shape_interleaved_a.remove_dimension(2);
281 }
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100282 }
283 else
284 {
285 shape_interleaved_a.set(1, std::ceil(a.dimension(1) / static_cast<float>(interleave_width)));
286 }
Georgios Pinitas358ca202017-12-07 16:47:52 +0000287
288 return shape_interleaved_a;
289}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100290
Michalis Spyroud33fe342019-01-04 17:10:25 +0000291/** Calculate the transposed 1xW shape
292 *
293 * @param[in] b Input tensor info
294 *
295 * @return the calculated shape
296 */
Georgios Pinitas358ca202017-12-07 16:47:52 +0000297inline TensorShape compute_transpose1xW_shape(const ITensorInfo &b)
298{
299 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
300 TensorShape shape_transposed1xW_b{ b.tensor_shape() };
301 shape_transposed1xW_b.set(0, b.dimension(1) * 16);
302 shape_transposed1xW_b.set(1, std::ceil(b.dimension(0) / 16.f));
303
304 return shape_transposed1xW_b;
305}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100306
Michalis Spyroud33fe342019-01-04 17:10:25 +0000307/** Calculate the transposed 1xW width element shape
308 *
309 * @param[in] b Input tensor info
310 * @param[in] mult_transpose1xW_width (Optional) Transpose1xW width
311 *
312 * @return the calculated shape
313 */
Gian Marco36a0a462018-01-12 10:21:40 +0000314inline TensorShape compute_transpose1xW_with_element_size_shape(const ITensorInfo &b, int mult_transpose1xW_width = 1)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000315{
Gian Marco36a0a462018-01-12 10:21:40 +0000316 // Note: mult_transpose1xW_width expresses the number of chunks with size 1x(W) we want to store on the same row
317 // The transpose1xW output matrix will have the following shape:
318 // [ b_height * W, ceil(b_width / W) ] where W = (16 / element size of the tensor) * mult_transpose1xW_width
319 ARM_COMPUTE_ERROR_ON(mult_transpose1xW_width < 1);
Georgios Pinitas358ca202017-12-07 16:47:52 +0000320 TensorShape shape_transposed1xW_b{ b.tensor_shape() };
Gian Marco36a0a462018-01-12 10:21:40 +0000321 const size_t transpose_width = (16 / b.element_size()) * mult_transpose1xW_width;
Georgios Pinitas358ca202017-12-07 16:47:52 +0000322 shape_transposed1xW_b.set(0, b.dimension(1) * transpose_width);
323 shape_transposed1xW_b.set(1, static_cast<size_t>(std::ceil(b.dimension(0) / static_cast<float>(transpose_width))));
324
325 return shape_transposed1xW_b;
326}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100327
Michalis Spyroud33fe342019-01-04 17:10:25 +0000328/** Calculate the reductionA shape used in GEMMLowp
329 *
330 * @param[in] b Input tensor info
331 *
332 * @return the calculated shape
333 */
Georgios Pinitas358ca202017-12-07 16:47:52 +0000334inline TensorShape compute_reductionA_shape(const ITensorInfo &b)
335{
336 TensorShape shape_vector_sum_col{ b.tensor_shape() };
337 if(shape_vector_sum_col.num_dimensions() > 1)
338 {
339 shape_vector_sum_col.remove_dimension(1);
340 }
341
342 return shape_vector_sum_col;
343}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100344
Michalis Spyroud33fe342019-01-04 17:10:25 +0000345/** Calculate the reductionB shape used in GEMMLowp
346 *
347 * @param[in] a Input tensor info
348 *
349 * @return the calculated shape
350 */
Georgios Pinitas358ca202017-12-07 16:47:52 +0000351inline TensorShape compute_reductionB_shape(const ITensorInfo &a)
352{
353 TensorShape shape_vector_sum_row{ a.tensor_shape() };
354 shape_vector_sum_row.set(Window::DimX, a.dimension(1));
Georgios Pinitas932491f2018-09-21 16:33:15 +0100355 if(shape_vector_sum_row.num_dimensions() > 1)
Georgios Pinitas358ca202017-12-07 16:47:52 +0000356 {
357 shape_vector_sum_row.remove_dimension(1);
358 }
359
360 return shape_vector_sum_row;
361}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100362
Michalis Spyroud33fe342019-01-04 17:10:25 +0000363/** Calculate the Col2Im shape
364 *
365 * @param[in] input Input tensor info
366 * @param[in] convolved_dims Convolved dimensions
367 * @param[in] batch_size_on_z True if batch size is on z axis
368 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution
369 *
370 * @return the calculated shape
371 */
Giorgio Arena226e4b92018-08-23 12:00:02 +0100372inline TensorShape compute_col2im_shape(const ITensorInfo &input, const Size2D &convolved_dims, bool batch_size_on_z, unsigned int num_groups = 1)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000373{
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100374 ARM_COMPUTE_ERROR_ON(num_groups == 0);
Giorgio Arena226e4b92018-08-23 12:00:02 +0100375 ARM_COMPUTE_ERROR_ON(input.tensor_shape()[1] != (convolved_dims.area()));
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100376 ARM_COMPUTE_ERROR_ON((num_groups > 1) && input.tensor_shape()[2] != num_groups);
377
Georgios Pinitase55b40a2018-09-13 17:20:04 +0100378 const DataLayout data_layout = input.data_layout();
379 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
380 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
381 const int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100382
Georgios Pinitase55b40a2018-09-13 17:20:04 +0100383 TensorShape col2im_shape{ input.tensor_shape() };
384 // If batches start on 3rd dimension shift dimensions right by 1 to retain upper tensor shape,
385 // as first three will be override by H,W,C data
386 if(batch_size_on_z && num_groups == 1)
387 {
388 col2im_shape.shift_right(1);
389 }
390 col2im_shape.set(width_idx, convolved_dims.width);
391 col2im_shape.set(height_idx, convolved_dims.height);
392 col2im_shape.set(channel_idx, input.tensor_shape()[0] * num_groups);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000393
394 return col2im_shape;
395}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100396
Michalis Spyroud33fe342019-01-04 17:10:25 +0000397/** Calculate the transposed shape of a tensor
398 *
399 * @param[in] input Input tensor info
400 *
401 * @return the calculated shape
402 */
Georgios Pinitas358ca202017-12-07 16:47:52 +0000403inline TensorShape compute_transposed_shape(const ITensorInfo &input)
404{
405 TensorShape shape_transposed{ input.tensor_shape() };
406
407 shape_transposed.set(0, input.dimension(1));
408 shape_transposed.set(1, input.dimension(0));
409
410 return shape_transposed;
411}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100412
Michalis Spyroud33fe342019-01-04 17:10:25 +0000413/** Calculate the depthwise convolution output shape of a tensor
414 *
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100415 * @param[in] input Input tensor info
416 * @param[in] weights Weights tensor info
417 * @param[in] info Convolution info
Michalis Spyroud33fe342019-01-04 17:10:25 +0000418 *
419 * @return the calculated shape
420 */
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100421inline TensorShape compute_depthwise_convolution_shape(const ITensorInfo &input, const ITensorInfo &weights, const ConvolutionInfo &info)
Georgios Pinitas1250a5a2018-01-02 13:27:37 +0000422{
423 const TensorShape input_shape{ input.tensor_shape() };
424 const TensorShape weights_shape{ weights.tensor_shape() };
425
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000426 const DataLayout data_layout = input.data_layout();
427 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
428 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Giorgio Arena76572242018-04-04 17:44:26 +0100429 const int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000430
Usama Arife73686a2019-04-08 17:30:48 +0100431 const DataLayout weights_data_layout = weights.data_layout();
432 const int weights_width_idx = get_data_layout_dimension_index(weights_data_layout, DataLayoutDimension::WIDTH);
433 const int weights_height_idx = get_data_layout_dimension_index(weights_data_layout, DataLayoutDimension::HEIGHT);
giuros016d109962019-01-07 17:47:19 +0000434
435 unsigned int output_width = 0;
436 unsigned int output_height = 0;
437 std::tie(output_width, output_height) = scaled_dimensions(input_shape[width_idx], input_shape[height_idx],
Usama Arife73686a2019-04-08 17:30:48 +0100438 weights_shape[weights_width_idx], weights_shape[weights_height_idx],
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100439 info.pad_stride_info, info.dilation);
giuros016d109962019-01-07 17:47:19 +0000440
441 TensorShape output_shape{ input_shape };
442 output_shape.set(width_idx, output_width);
443 output_shape.set(height_idx, output_height);
Michalis Spyrou60c3b0e2021-04-08 12:02:58 +0100444 output_shape.set(channel_idx, input_shape[channel_idx] * info.depth_multiplier);
giuros016d109962019-01-07 17:47:19 +0000445
446 return output_shape;
447}
448
Michalis Spyroud33fe342019-01-04 17:10:25 +0000449/** Calculate the upsampled output shape used for deconvolution
450 *
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100451 * @param[in] input Input tensor info
452 * @param[in] weights Weights tensor shape
453 * @param[in] sx Stride on x axis
454 * @param[in] sy Stride on y axis
455 * @param[in] out_dims Output shape dimensions
456 * @param[in] padx Padding on x axis
457 * @param[in] pady Padding on y axis
Michalis Spyroud33fe342019-01-04 17:10:25 +0000458 *
459 * @return the calculated shape
460 */
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100461inline TensorShape compute_deconvolution_upsampled_shape(const ITensorInfo &input, const ITensorInfo &weights, unsigned int sx, unsigned int sy,
Manuel Bottini6e10aa32020-04-30 13:28:23 +0100462 std::pair<unsigned int, unsigned int> &out_dims, uint32_t &padx, uint32_t &pady)
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000463{
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100464 const DataLayout data_layout = input.data_layout();
465 const size_t idx_w = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
466 const size_t idx_h = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
467
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100468 // Find the upsampled dimensions
Manuel Bottinic1b76fa2019-06-17 12:04:40 +0100469 unsigned int out_x = (input.dimension(idx_w) - 1) * sx + 1;
470 unsigned int out_y = (input.dimension(idx_h) - 1) * sy + 1;
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100471
472 // Find the padding needed for the convolution with stride 1 in order to match output shape
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100473 padx = out_dims.first - (out_x - weights.dimension(idx_w) + 1);
474 pady = out_dims.second - (out_y - weights.dimension(idx_h) + 1);
Michalis Spyrouafbc5ff2018-10-03 14:18:19 +0100475 out_x += padx;
476 out_y += pady;
477
478 TensorShape scale_out_shape(input.tensor_shape());
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100479 scale_out_shape.set(idx_w, out_x);
480 scale_out_shape.set(idx_h, out_y);
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000481
482 return scale_out_shape;
483}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100484
Michalis Spyroud33fe342019-01-04 17:10:25 +0000485/** Calculate the output shape of the deconvolution layer
486 *
487 * @param[in] out_dims Output x and y shape dimensions
488 * @param[in] input Input tensor info
489 * @param[in] weights Weights tensor shape
490 *
491 * @return the calculated shape
492 */
Michele Di Giorgioed5a4922018-09-13 16:22:01 +0100493inline TensorShape compute_deconvolution_output_shape(const std::pair<unsigned int, unsigned int> &out_dims, const ITensorInfo &input, const ITensorInfo &weights)
494{
495 const TensorShape input_shape{ input.tensor_shape() };
496 const TensorShape weights_shape{ weights.tensor_shape() };
497
498 const DataLayout data_layout = input.data_layout();
499 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
500 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
501 const int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
502 const int batch_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
503
504 TensorShape out_shape{ input_shape };
505 out_shape.set(width_idx, out_dims.first);
506 out_shape.set(height_idx, out_dims.second);
507 out_shape.set(channel_idx, weights_shape[batch_idx]);
508 return out_shape;
509}
510
Michalis Spyroud33fe342019-01-04 17:10:25 +0000511/** Calculate the im2col output shape of a tensor
512 *
513 * @param[in] input Input tensor info
514 * @param[in] kernel_dims The kernel dimensions (width and height).
515 * @param[in] conv_info Contains padding and stride information
516 * @param[in] has_bias In case biases are provided expands the matrix with 1
517 * @param[in] dilation Dilation, in elements, across x and y
518 * @param[in] batch_size_on_z True if batch size is on z axis
519 * @param[in] num_groups (Optional) Number of groups when performing a grouped convolution
520 *
521 * @return the calculated shape
522 */
Giorgio Arena0f170392018-07-18 16:13:12 +0100523inline TensorShape compute_im2col_conv_shape(const ITensorInfo *input, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation, bool batch_size_on_z,
524 unsigned int num_groups = 1)
Giorgio Arena156fcf32018-03-09 15:30:43 +0000525{
Giorgio Arena0f170392018-07-18 16:13:12 +0100526 // The output shape will be the 3D shape [ out_channels * kernel_area, num_elems_per_out_channel, batches ] if batch_size_on_z == true
527 // or the 4D shape [ out_channels * kernel_area / num_groups, num_elems_per_out_channel, num_groups, batches ] if batch_size_on_z == false
528
529 ARM_COMPUTE_ERROR_ON(num_groups == 0);
530 ARM_COMPUTE_ERROR_ON(num_groups > 1 && input->data_layout() != DataLayout::NCHW);
531 ARM_COMPUTE_ERROR_ON(num_groups > 1 && batch_size_on_z);
Giorgio Arena156fcf32018-03-09 15:30:43 +0000532
533 TensorShape output_shape{ input->tensor_shape() };
534
535 const DataLayout data_layout = input->data_layout();
536 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
537 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
538 const int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
539
540 std::pair<unsigned int, unsigned int> out_dims = scaled_dimensions(output_shape[width_idx], output_shape[height_idx], kernel_dims.width, kernel_dims.height, conv_info, dilation);
Giorgio Arena0f170392018-07-18 16:13:12 +0100541 output_shape.set(0, (output_shape[channel_idx] / num_groups * kernel_dims.area() + (has_bias ? 1 : 0))); // NOLINT
Giorgio Arenaf485a102018-04-20 16:06:21 +0100542 output_shape.set(1, (out_dims.first * out_dims.second));
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100543 if(batch_size_on_z && output_shape.num_dimensions() >= 3)
544 {
545 output_shape.remove_dimension(2);
546 }
547 else
548 {
Giorgio Arena0f170392018-07-18 16:13:12 +0100549 output_shape.set(2, num_groups);
Gian Marco Iodice597a8562018-08-01 15:06:06 +0100550 }
Giorgio Arena156fcf32018-03-09 15:30:43 +0000551
552 return output_shape;
553}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100554
Michalis Spyroud33fe342019-01-04 17:10:25 +0000555/** Calculate the flattened output shape of a tensor
556 *
557 * @param[in] input Input tensor info
558 *
559 * @return the calculated shape
560 */
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100561inline TensorShape compute_flatten_shape(const ITensorInfo *input)
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000562{
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100563 // The output shape will be the flatten version of the input (i.e. [ width * height * channels, num_batches, ... ] ). Used for FlattenLayer and FullyConnectedLayer.
564
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000565 TensorShape output_shape{ input->tensor_shape() };
566
Gian Marco Iodice215b4ea2018-06-28 16:29:29 +0100567 output_shape.collapse(3);
Giorgio Arena156fcf32018-03-09 15:30:43 +0000568
569 return output_shape;
570}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100571
Michalis Spyroud33fe342019-01-04 17:10:25 +0000572/** Calculate the softmax output shape of a tensor
573 *
574 * @param[in] input Input tensor info
575 * @param[in] axis (Optional) Softmax axis
576 *
577 * @return the calculated shape
578 */
giuros01efbf6c82018-09-03 09:53:53 +0100579inline TensorShape compute_softmax_shape(const ITensorInfo *input, size_t axis = 1)
580{
581 // The output shape will be a 2D version of the input. For instance:
582 // - [x,y,z] and axis 1 will return [x, y*z]
583 // - [x,y,z,w] and axis 2 will return [x*y, w*z]
584 // - [x,y,z,w] and axis 3 will return [x*y*z, w]
585 TensorShape shape2D = input->tensor_shape();
586
587 if(axis < input->num_dimensions())
588 {
589 // Collapse from axis onward (this changes the shape)
590 shape2D.collapse_from(axis);
591
592 // Collapse the rest (collapse is inclusive)
593 shape2D.collapse(shape2D.num_dimensions() - 1);
594 }
595 else
596 {
597 // Collapse everything
598 shape2D.collapse(shape2D.num_dimensions());
599 }
600
601 if(axis == 0)
602 {
603 // If axis is zero the first dim should be one. Since
604 // collapse is an inclusive operation we need to shift
605 shape2D.shift_right(1);
606 }
607
608 return shape2D;
609}
610
Michalis Spyroud33fe342019-01-04 17:10:25 +0000611/** Calculate the winograd filter transform shape
612 *
613 * @param[in] input Input tensor info
614 * @param[in] winograd_info Winograd information
615 *
616 * @return the calculated shape
617 */
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000618inline TensorShape compute_winograd_filter_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000619{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000620 TensorShape tensor_shape{ input.tensor_shape() };
621
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000622 const Size2D kernel_size = winograd_info.kernel_size;
623 const Size2D output_tile_size = winograd_info.output_tile_size;
624 const Size2D input_tile_size = Size2D(output_tile_size.width + kernel_size.width - 1, output_tile_size.height + kernel_size.height - 1);
Giorgio Arena2d9de0a2018-03-15 17:58:20 +0000625
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000626 tensor_shape.remove_dimension(get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH));
627 tensor_shape.set(Window::DimX, input.dimension(3));
628 tensor_shape.set(Window::DimY, input.dimension(get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL)));
629 tensor_shape.set(Window::DimZ, input_tile_size.area());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000630
631 return tensor_shape;
632}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100633
Michalis Spyroud33fe342019-01-04 17:10:25 +0000634/** Calculate the winograd input transform shape
635 *
636 * @param[in] input Input tensor info
637 * @param[in] winograd_info Winograd information
638 *
639 * @return the calculated shape
640 */
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000641inline TensorShape compute_winograd_input_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000642{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000643 const PadStrideInfo conv_info = winograd_info.convolution_info;
644 const Size2D kernel_size = winograd_info.kernel_size;
645 const Size2D output_tile_size = winograd_info.output_tile_size;
646 const Size2D input_tile_size = Size2D(output_tile_size.width + kernel_size.width - 1, output_tile_size.height + kernel_size.height - 1);
647
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100648 const size_t idx_w = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH);
649 const size_t idx_h = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::HEIGHT);
650 const size_t idx_c = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000651
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100652 // Compute the number of output tiles along the x and y direction of size "output_tile_size"
653 const Size2D num_tiles = compute_winograd_convolution_tiles(Size2D(input.tensor_shape()[idx_w], input.tensor_shape()[idx_h]),
654 kernel_size,
655 output_tile_size,
656 conv_info);
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100657
658 const unsigned int width = input.tensor_shape()[idx_c];
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100659 const unsigned int height = num_tiles.area();
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000660 const unsigned int depth = input_tile_size.area();
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000661
662 TensorShape output_shape{ input.tensor_shape() };
663 output_shape.set(0, width);
664 output_shape.set(1, height);
665 output_shape.set(2, depth);
666
667 return output_shape;
668}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100669
Michalis Spyroud33fe342019-01-04 17:10:25 +0000670/** Calculate the winograd output transform shape
671 *
672 * @param[in] input Input tensor info
673 * @param[in] winograd_info Winograd information
674 *
675 * @return the calculated shape
676 */
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000677inline TensorShape compute_winograd_output_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000678{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000679 const PadStrideInfo conv_info = winograd_info.convolution_info;
680 const Size2D kernel_size = winograd_info.kernel_size;
681 const Size2D input_dimensions = winograd_info.input_dimensions;
682 const DataLayout data_layout = winograd_info.output_data_layout;
683
684 // Compute output shape
685 unsigned int output_width = 0;
686 unsigned int output_height = 0;
687 std::tie(output_width, output_height) = scaled_dimensions(input_dimensions.width, input_dimensions.height,
688 kernel_size.width, kernel_size.height, conv_info);
689
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000690 TensorShape tensor_shape{ input.tensor_shape() };
691
692 // Output dimension
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000693 const unsigned int out_w = output_width;
694 const unsigned int out_h = output_height;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000695 const unsigned int out_c = input.dimension(0);
696
697 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH), out_w);
698 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT), out_h);
699 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL), out_c);
700
701 return tensor_shape;
702}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100703
Michalis Spyroud33fe342019-01-04 17:10:25 +0000704/** Calculate the deep convolution shape output shape of a tensor
705 *
SiCongLid9287352021-11-03 19:01:22 +0000706 * @param[in] input_shape Input tensor shape
707 * @param[in] input_data_layout Input data layout
708 * @param[in] weights_shape Weights tensor shape
709 * @param[in] conv_info Contains padding and stride information
Michalis Spyroud33fe342019-01-04 17:10:25 +0000710 *
711 * @return the calculated shape
712 */
SiCongLid9287352021-11-03 19:01:22 +0000713inline TensorShape compute_deep_convolution_shape(const TensorShape &input_shape, DataLayout input_data_layout, const TensorShape &weights_shape, const PadStrideInfo &conv_info)
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000714{
SiCongLid9287352021-11-03 19:01:22 +0000715 const size_t idx_width = get_data_layout_dimension_index(input_data_layout, DataLayoutDimension::WIDTH);
716 const size_t idx_height = get_data_layout_dimension_index(input_data_layout, DataLayoutDimension::HEIGHT);
717 const size_t idx_channel = get_data_layout_dimension_index(input_data_layout, DataLayoutDimension::CHANNEL);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000718
Giorgio Arenac0f54432018-03-16 14:02:34 +0000719 const unsigned int input_width = input_shape[idx_width];
720 const unsigned int input_height = input_shape[idx_height];
721 const unsigned int weights_width = weights_shape[idx_width];
722 const unsigned int weights_height = weights_shape[idx_height];
723 const unsigned int weights_out_channel = weights_shape[3];
724 unsigned int output_width = 0;
725 unsigned int output_height = 0;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000726 std::tie(output_width, output_height) = scaled_dimensions(input_width, input_height, weights_width, weights_height, conv_info);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000727
728 TensorShape output_shape{ input_shape };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000729 output_shape.set(idx_width, output_width);
730 output_shape.set(idx_height, output_height);
Giorgio Arenac0f54432018-03-16 14:02:34 +0000731 output_shape.set(idx_channel, weights_out_channel);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000732
733 return output_shape;
734}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100735
SiCongLid9287352021-11-03 19:01:22 +0000736/** Calculate the deep convolution shape output shape of a tensor
737 *
738 * @param[in] input Input tensor info
739 * @param[in] weights Weights tensor info
740 * @param[in] conv_info Contains padding and stride information
741 *
742 * @return the calculated shape
743 */
744inline TensorShape compute_deep_convolution_shape(const ITensorInfo &input, const ITensorInfo &weights, const PadStrideInfo &conv_info)
745{
746 return compute_deep_convolution_shape(input.tensor_shape(), input.data_layout(), weights.tensor_shape(), conv_info);
747}
748
Gian Marco Iodice5d016812022-11-17 11:03:39 +0000749/** Calculate the indirect buffer output shape used by the indirect convolution function
750 *
751 * @param[in] input_shape Input tensor shape
752 * @param[in] input_data_layout Input data layout
753 * @param[in] weights_shape Weights tensor shape
754 * @param[in] conv_info Contains padding and stride information
755 * @param[in] desc Contains the direct/indirect convolution compute arguments, such as the tiling dimensions
756 *
757 * @return the calculated shape
758 */
759inline TensorShape compute_indirect_buffer_shape(const TensorShape &input_shape, DataLayout input_data_layout, const TensorShape &weights_shape, const PadStrideInfo &conv_info,
760 const DirectConvComputeKernelInfo &desc)
761{
762 ARM_COMPUTE_ERROR_ON_MSG(input_data_layout != DataLayout::NHWC, "The data layout can only be NHWC");
763 ARM_COMPUTE_ERROR_ON_MSG(desc.m0 <= 0 || desc.m0 > 8, "M0 can only be greater than 0 and less than or equal to 8");
764
765 const unsigned int m0 = desc.m0;
766 const unsigned int kw = weights_shape[1];
767 const unsigned int kh = weights_shape[2];
768
769 TensorShape output_conv2d_shape = compute_deep_convolution_shape(input_shape, input_data_layout, weights_shape, conv_info);
770
771 const unsigned int output_w = m0 * kw * kh;
772 const unsigned int output_h = DIV_CEIL(output_conv2d_shape[1] * output_conv2d_shape[2], m0);
773 const unsigned int output_b = output_conv2d_shape[3];
774
775 return TensorShape(output_w, output_h, output_b);
776}
777
Michalis Spyroud33fe342019-01-04 17:10:25 +0000778/** Calculate the min/max shape output shape of a tensor
779 *
780 * @param[in] input Input tensor info
781 *
782 * @return the calculated shape
783 */
Alex Gilday60954c62018-03-05 16:22:48 +0000784inline TensorShape compute_min_max_shape(const ITensorInfo *input)
785{
786 TensorShape output_shape{ input->tensor_shape() };
787 output_shape.set(Window::DimX, 2);
788 output_shape.remove_dimension(1);
789 output_shape.remove_dimension(1);
790
791 return output_shape;
792}
793
Michalis Spyroud33fe342019-01-04 17:10:25 +0000794/** Calculate the output pool shape of a tensor
795 *
796 * @param[in] input Input tensor info
797 * @param[in] pool_info Pooling layer info
798 *
799 * @return the calculated shape
800 */
Michalis Spyroue74b2012018-04-18 09:49:16 +0100801inline TensorShape compute_pool_shape(const ITensorInfo &input, PoolingLayerInfo pool_info)
802{
Freddie Liardetafcbb8f2021-05-04 12:41:16 +0100803 int pooled_w = 0;
804 int pooled_h = 0;
Michalis Spyroue74b2012018-04-18 09:49:16 +0100805
Giorgio Arena3c520c52018-05-01 11:47:24 +0100806 TensorShape output_shape{ input.tensor_shape() };
Michalis Spyroue74b2012018-04-18 09:49:16 +0100807
Freddie Liardetafcbb8f2021-05-04 12:41:16 +0100808 const bool is_global_pooling = pool_info.is_global_pooling;
809 const int idx_width = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH);
810 const int idx_height = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::HEIGHT);
811 const int input_width = input.tensor_shape()[idx_width];
812 const int input_height = input.tensor_shape()[idx_height];
813 const int pool_size_x = is_global_pooling ? output_shape[idx_width] : pool_info.pool_size.width;
814 const int pool_size_y = is_global_pooling ? output_shape[idx_height] : pool_info.pool_size.height;
Giorgio Arena3c520c52018-05-01 11:47:24 +0100815
Freddie Liardetafcbb8f2021-05-04 12:41:16 +0100816 std::tie(pooled_w, pooled_h) = scaled_dimensions_signed(input_width, input_height,
817 pool_size_x, pool_size_y,
818 pool_info.pad_stride_info);
Michalis Spyroue74b2012018-04-18 09:49:16 +0100819
Freddie Liardetafcbb8f2021-05-04 12:41:16 +0100820 ARM_COMPUTE_ERROR_ON_MSG((pooled_w < 1 || pooled_h < 1), "Calculated output dimension size is invalid");
821
822 output_shape.set(idx_width, static_cast<size_t>(pooled_w));
823 output_shape.set(idx_height, static_cast<size_t>(pooled_h));
Michalis Spyroue74b2012018-04-18 09:49:16 +0100824
825 return output_shape;
826}
827
morgolock37722d92020-04-09 14:17:48 +0100828/** Calculate the output unpool shape of a tensor
829 *
830 * @param[in] input Input tensor info
831 * @param[in] pool_info Pooling layer info
832 *
833 * @return the calculated shape
834 */
835inline TensorShape compute_unpool_shape(const ITensorInfo &input, PoolingLayerInfo pool_info)
836{
837 const unsigned int idx_width = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH);
838 const unsigned int idx_height = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::HEIGHT);
839 const TensorShape input_shape = input.tensor_shape();
840 ARM_COMPUTE_ERROR_ON(input_shape[idx_height] <= 1 || input_shape[idx_width] <= 1);
841 const PadStrideInfo pad_stride_info = pool_info.pad_stride_info;
842 const unsigned int stride_x = pad_stride_info.stride().first;
843 const unsigned int stride_y = pad_stride_info.stride().second;
844
845 const int pad_left = pad_stride_info.pad_left();
846 const int pad_top = pad_stride_info.pad_top();
847 const int pad_right = pad_stride_info.pad_right();
848 const int pad_bottom = pad_stride_info.pad_bottom();
849
850 TensorShape output_shape = input_shape;
851 const unsigned int out_width = (input_shape[idx_width] - 1) * stride_x - pad_left - pad_right + pool_info.pool_size.width;
852 const unsigned int out_height = (input_shape[idx_height] - 1) * stride_y - pad_top - pad_bottom + pool_info.pool_size.height;
853
854 output_shape.set(idx_width, out_width);
855 output_shape.set(idx_height, out_height);
856 return output_shape;
857}
858
George Wort44b4e972019-01-08 11:41:54 +0000859/** Calculate the output roi align shape of a tensor
860 *
861 * @param[in] input Input tensor info
862 * @param[in] rois Rois tensor info
863 * @param[in] pool_info Pooling layer info
864 *
865 * @return the calculated shape
866 */
867inline TensorShape compute_roi_align_shape(const ITensorInfo &input, const ITensorInfo &rois, ROIPoolingLayerInfo pool_info)
868{
869 TensorShape output_shape{ input.tensor_shape() };
870
871 const unsigned int idx_width = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH);
872 const unsigned int idx_height = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::HEIGHT);
873
874 output_shape.set(idx_width, pool_info.pooled_width());
875 output_shape.set(idx_height, pool_info.pooled_height());
876 output_shape.set(3, rois.dimension(1));
877
878 return output_shape;
879}
880
Michalis Spyroud33fe342019-01-04 17:10:25 +0000881/** Calculate the RNN shape of a tensor
882 *
883 * @param[in] input Input tensor info
884 * @param[in] batch_size Batch size
885 *
886 * @return the calculated shape
887 */
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000888inline TensorShape compute_rnn_shape(const ITensorInfo *input, const unsigned int batch_size)
889{
890 TensorShape output_shape{ input->tensor_shape() };
891 output_shape.set(1, batch_size);
892
893 return output_shape;
894}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100895
Michalis Spyroud33fe342019-01-04 17:10:25 +0000896/** Calculate the matrix multiplication output shape of two tensors
897 *
898 * @param[in] input0 First input tensor info
899 * @param[in] input1 Second input tensor info
900 * @param[in] is_interleaved_transposed True if the input is interleaved transposed
901 * @param[in] reshape_info GEMM reshape info
902 *
903 * @return the calculated shape
904 */
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100905inline TensorShape compute_mm_shape(const ITensorInfo &input0, const ITensorInfo &input1, bool is_interleaved_transposed, const GEMMReshapeInfo &reshape_info)
906{
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000907 ARM_COMPUTE_ERROR_ON_MSG(input0.num_dimensions() > 4, "The number of dimensions for the matrix A must be <= 4");
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100908 ARM_COMPUTE_ERROR_ON_MSG(is_interleaved_transposed && reshape_info.reinterpret_input_as_3d(), "The first input tensor cannot be reinterpreted as 3D if is_interleaved_transposed is true");
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100909
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100910 const bool reinterpret_input_as_3d = reshape_info.reinterpret_input_as_3d();
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000911 const bool reinterpret_output_as_3d = reshape_info.depth_output_gemm3d() != 0;
912 const int depth_output_gemm3d = reinterpret_output_as_3d ? reshape_info.depth_output_gemm3d() : 1;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100913 const int m = reshape_info.reinterpret_input_as_3d() ? input0.dimension(1) * input0.dimension(2) : input0.dimension(1);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000914
915 // If the output of GEMM has to be reinterpreted as 3D, the number of input0 rows (M) is obtained collapsing the second and third
916 // dimension of the output tensor
917 const int dim0 = is_interleaved_transposed ? reshape_info.n() : input1.dimension(0);
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000918 const int dim1 = is_interleaved_transposed ? reshape_info.m() / depth_output_gemm3d : m / depth_output_gemm3d;
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100919 const int dim2 = reinterpret_input_as_3d ? input0.tensor_shape()[3] : input0.tensor_shape()[2];
920 const int dim3 = reinterpret_input_as_3d ? 1 : input0.tensor_shape()[3];
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000921
922 TensorShape output_shape{ input0.tensor_shape() };
923
924 output_shape.set(0, dim0);
925 output_shape.set(1, dim1);
Gian Marco Iodice3139f032018-11-05 14:26:32 +0000926 output_shape.set(2, reinterpret_output_as_3d ? depth_output_gemm3d : dim2);
Gian Marco Iodice68a3f562018-07-26 11:44:03 +0100927 output_shape.set(3, reinterpret_output_as_3d ? dim2 : dim3);
928 output_shape.set(4, reinterpret_output_as_3d ? dim3 : 1);
Isabella Gottardi8e74f442018-03-01 16:42:00 +0000929
930 return output_shape;
Gian Marco Iodice750641d2018-05-08 12:01:57 +0100931}
Georgios Pinitase1a352c2018-09-03 12:42:19 +0100932
Michalis Spyroud33fe342019-01-04 17:10:25 +0000933/** Calculate the matrix multiplication output shape of two tensors
934 *
935 * @param[in] input0 First input tensor info
936 * @param[in] input1 Second input tensor info
937 * @param[in] gemm_info GEMM reshape info
938 *
939 * @return the calculated shape
940 */
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000941inline TensorShape compute_mm_shape(const ITensorInfo &input0, const ITensorInfo &input1, const GEMMReshapeInfo &gemm_info)
942{
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100943 ARM_COMPUTE_UNUSED(input1);
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000944 ARM_COMPUTE_ERROR_ON_MSG(input0.num_dimensions() > 4, "The number of dimensions for the matrix A must be <= 4");
945
Gian Marco Iodice926afe12019-03-19 11:44:13 +0000946 const bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d();
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000947 const bool reinterpret_output_as_3d = gemm_info.depth_output_gemm3d() != 0;
948 const int depth_output_gemm3d = reinterpret_output_as_3d ? gemm_info.depth_output_gemm3d() : 1;
949
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000950 TensorShape output_shape{ input0.tensor_shape() };
951
Vidhya Sudhan Loganathanae1a89e2019-05-03 09:13:55 +0100952 if(!reinterpret_input_as_3d && !reinterpret_output_as_3d)
953 {
954 output_shape.set(0, gemm_info.n());
955 output_shape.set(1, gemm_info.m());
956 }
957 else
958 {
959 // If the output of GEMM has to be reinterpreted as 3D, the number of input0 rows (M) is obtained collapsing the second and third
960 // dimension of the output tensor
961 const int batch_size = reinterpret_input_as_3d ? input0.tensor_shape()[3] : input0.tensor_shape()[2];
962 output_shape.set(0, gemm_info.n());
963 output_shape.set(1, gemm_info.m() / depth_output_gemm3d);
964 output_shape.set(2, reinterpret_output_as_3d ? depth_output_gemm3d : batch_size);
965 output_shape.set(3, reinterpret_output_as_3d ? batch_size : 1);
966 }
Gian Marco Iodicebf9731e2018-12-12 10:18:04 +0000967
968 return output_shape;
969}
970
Michalis Spyroud33fe342019-01-04 17:10:25 +0000971/** Calculate the matrix multiplication output shape of two tensors
972 *
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100973 * @param[in] input0 First input tensor info
974 * @param[in] input1 Second input tensor info
975 * @param[in] gemm_info GEMM kernel info used to retrieve the original dimensions of the input matrices
976 *
977 * @return the calculated shape
978 */
979inline TensorShape compute_mm_shape(const ITensorInfo &input0, const ITensorInfo &input1, const GEMMKernelInfo &gemm_info)
980{
Michalis Spyrou6bff1952019-10-02 17:22:11 +0100981 ARM_COMPUTE_UNUSED(input1);
Gian Marco Iodice7026b302019-06-26 17:18:11 +0100982 ARM_COMPUTE_ERROR_ON_MSG(input0.num_dimensions() > 4, "The number of dimensions for the matrix A must be <= 4");
983
984 const bool reinterpret_input_as_3d = gemm_info.reinterpret_input_as_3d;
985 const bool reinterpret_output_as_3d = gemm_info.depth_output_gemm3d != 0;
986 const unsigned int depth_output_gemm3d = reinterpret_output_as_3d ? gemm_info.depth_output_gemm3d : 1;
987
988 TensorShape output_shape{ input0.tensor_shape() };
989
990 if(!reinterpret_input_as_3d && !reinterpret_output_as_3d)
991 {
992 output_shape.set(0, gemm_info.n);
993 output_shape.set(1, gemm_info.m);
994 }
995 else
996 {
997 // If the output of GEMM has to be reinterpreted as 3D, the number of input0 rows (M) is obtained collapsing the second and third
998 // dimension of the output tensor
999 const unsigned int batch_size = reinterpret_input_as_3d ? input0.tensor_shape()[3] : input0.tensor_shape()[2];
1000 output_shape.set(0, gemm_info.n);
1001 output_shape.set(1, gemm_info.m / depth_output_gemm3d);
1002 output_shape.set(2, reinterpret_output_as_3d ? depth_output_gemm3d : batch_size);
1003 output_shape.set(3, reinterpret_output_as_3d ? batch_size : 1);
1004 }
1005
1006 return output_shape;
1007}
1008
1009/** Calculate the matrix multiplication output shape of two tensors
1010 *
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +00001011 * @param[in] input0 First input tensor info
1012 * @param[in] input1 Second input tensor info
1013 * @param[in] matmul_info Batch MatMul Kernel info to know which matrix is transposed
1014 *
1015 * @return the calculated shape
1016 */
Gunes Bayir8918b232023-03-17 13:52:21 +00001017inline TensorShape compute_matmul_shape(const TensorShape &input0, const TensorShape &input1, const MatMulKernelInfo &matmul_info)
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +00001018{
1019 TensorShape output_shape{ input0 };
1020
1021 if(matmul_info.adj_lhs)
1022 {
1023 output_shape.set(1, input0[0]); // The vertical (M) dimension
1024 }
1025
1026 if(matmul_info.adj_rhs)
1027 {
1028 output_shape.set(0, input1[1]); // The horizontal (N) dimension
1029 }
1030 else
1031 {
1032 output_shape.set(0, input1[0]); // The horizontal (N) dimension
1033 }
1034
1035 return output_shape;
1036}
1037/** Calculate the matrix multiplication output shape of two tensors
1038 *
Michalis Spyroud33fe342019-01-04 17:10:25 +00001039 * @param[in] input Input tensor info
1040 * @param[in] gemm_3d_depth (Optional) GEMM 3d depth
1041 * @param[in] batch_size_on_z (Optional) True if batch size is on z axis
1042 *
1043 * @return the calculated shape
1044 */
Georgios Pinitas932491f2018-09-21 16:33:15 +01001045inline TensorShape compute_output_stage_shape(const ITensorInfo &input, unsigned int gemm_3d_depth = 1, bool batch_size_on_z = false)
Georgios Pinitas041f36d2018-09-18 18:38:37 +01001046{
1047 ARM_COMPUTE_ERROR_ON(input.data_layout() != DataLayout::NHWC && gemm_3d_depth > 1);
1048
1049 TensorShape output_shape = input.tensor_shape();
1050 if(gemm_3d_depth > 1)
1051 {
Georgios Pinitas932491f2018-09-21 16:33:15 +01001052 if(batch_size_on_z)
1053 {
1054 output_shape.shift_right(1);
1055 }
Georgios Pinitas041f36d2018-09-18 18:38:37 +01001056 output_shape.set(0, input.tensor_shape().x());
1057 output_shape.set(1, input.tensor_shape().y() / gemm_3d_depth);
1058 output_shape.set(2, gemm_3d_depth);
1059 }
1060
1061 return output_shape;
1062}
1063
Michalis Spyroud33fe342019-01-04 17:10:25 +00001064/** Calculate the strided slice output shape of a tensor
1065 *
1066 * @param[in] input Input tensor info
1067 * @param[in] starts The starts of the dimensions of the input tensor to be sliced
1068 * @param[in] ends The ends of the dimensions of the input tensor to be sliced
1069 * @param[in] strides The strides of the dimensions of the input tensor to be sliced
1070 * @param[in] begin_mask If the ith bit of begin_mask is set, starts[i] is ignored and the fullest possible range in that dimension is used instead.
1071 * @param[in] end_mask If the ith bit of end_mask is set, ends[i] is ignored and the fullest possible range in that dimension is used instead.
1072 * @param[in] shrink_axis_mask If the ith bit of shrink_axis_mask is set, it implies that the ith specification shrinks the dimensionality by 1
1073 *
1074 * @return the calculated shape
1075 */
Georgios Pinitas77589b52018-08-21 14:41:35 +01001076inline TensorShape compute_strided_slice_shape(const ITensorInfo &input,
1077 const Coordinates &starts, const Coordinates &ends, const Coordinates &strides,
1078 int32_t begin_mask, int32_t end_mask, int32_t shrink_axis_mask)
1079{
1080 using namespace arm_compute::helpers::tensor_transform;
Georgios Pinitasb4af2c62018-12-10 18:45:35 +00001081 return compute_strided_slice_output_shape(input.tensor_shape(), starts, ends, strides, begin_mask, end_mask, shrink_axis_mask);
1082}
Georgios Pinitas77589b52018-08-21 14:41:35 +01001083
Michalis Spyroud33fe342019-01-04 17:10:25 +00001084/** Calculate the slice output shape of a tensor
1085 *
1086 * @param[in] input_shape Input tensor info
1087 * @param[in] starts The starts of the dimensions of the input tensor to be sliced
1088 * @param[in] ends The ends of the dimensions of the input tensor to be sliced
1089 *
1090 * @return the calculated shape
1091 */
Georgios Pinitasb4af2c62018-12-10 18:45:35 +00001092inline TensorShape compute_slice_shape(const TensorShape &input_shape, const Coordinates &starts, const Coordinates &ends)
1093{
1094 using namespace arm_compute::helpers::tensor_transform;
Georgios Pinitas77589b52018-08-21 14:41:35 +01001095
Georgios Pinitasb4af2c62018-12-10 18:45:35 +00001096 return compute_strided_slice_output_shape(input_shape,
1097 starts, ends, BiStrides(),
1098 0, construct_slice_end_mask(ends), 0);
Georgios Pinitas77589b52018-08-21 14:41:35 +01001099}
Georgios Pinitase1a352c2018-09-03 12:42:19 +01001100
Michalis Spyroud33fe342019-01-04 17:10:25 +00001101/** Calculate the batch to space output shape of a tensor
1102 *
SiCong Li5a7d1572023-03-21 12:00:15 +00001103 * @param[in] data_layout Data layout
1104 * @param[in] input Input tensor shape
1105 * @param[in] block_x Block shape x value
1106 * @param[in] block_y Block shape y value
1107 * @param[in] crop_info Information about how the output shape is cropped after batch to space is performed
Michalis Spyroud33fe342019-01-04 17:10:25 +00001108 *
1109 * @return the calculated shape
1110 */
SiCong Li5a7d1572023-03-21 12:00:15 +00001111inline TensorShape compute_batch_to_space_shape(DataLayout data_layout, const TensorShape &input, int block_x, int block_y, const CropInfo &crop_info = CropInfo{})
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +01001112{
SiCong Li5a7d1572023-03-21 12:00:15 +00001113 ARM_COMPUTE_ERROR_ON(block_x < 1 || block_y < 1);
Michalis Spyrouf1addb62018-09-11 11:16:47 +01001114
SiCong Li5a7d1572023-03-21 12:00:15 +00001115 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
1116 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
1117 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
Michalis Spyrouf1addb62018-09-11 11:16:47 +01001118
SiCong Li5a7d1572023-03-21 12:00:15 +00001119 TensorShape output_shape{ input };
SiCong Li4ceb4532023-03-13 15:02:23 +00001120
SiCong Li5a7d1572023-03-21 12:00:15 +00001121 unsigned int new_width = input[idx_width] * static_cast<unsigned int>(block_x);
1122 unsigned int new_height = input[idx_height] * static_cast<unsigned int>(block_y);
1123 const unsigned int width_crop = crop_info.left + crop_info.right;
1124 const unsigned int height_crop = crop_info.top + crop_info.bottom;
SiCong Li4ceb4532023-03-13 15:02:23 +00001125 ARM_COMPUTE_ERROR_ON(new_width <= width_crop);
1126 ARM_COMPUTE_ERROR_ON(new_height <= height_crop);
1127 new_width -= width_crop;
1128 new_height -= height_crop;
1129
1130 output_shape.set(idx_width, new_width);
1131 output_shape.set(idx_height, new_height);
SiCong Li5a7d1572023-03-21 12:00:15 +00001132 output_shape.set(idx_batch, input[idx_batch] / (block_x * block_y));
Michalis Spyrou6a8d3b62018-08-31 10:07:09 +01001133
1134 return output_shape;
1135}
Georgios Pinitas77589b52018-08-21 14:41:35 +01001136
Michalis Spyrou22f917c2019-05-21 13:30:10 +01001137/** Calculate the depth to space output shape of a tensor
1138 *
Georgios Pinitas8a14b2c2020-09-04 20:20:56 +01001139 * @param[in] input_shape Input tensor shape
1140 * @param[in] data_layout Operation data layout
1141 * @param[in] block Block shape value
Michalis Spyrou22f917c2019-05-21 13:30:10 +01001142 *
1143 * @return the calculated shape
1144 */
Georgios Pinitas8a14b2c2020-09-04 20:20:56 +01001145inline TensorShape compute_depth_to_space_shape(const TensorShape &input_shape, DataLayout data_layout, int block)
Michalis Spyrou22f917c2019-05-21 13:30:10 +01001146{
1147 ARM_COMPUTE_ERROR_ON(block < 2);
1148
Georgios Pinitas8a14b2c2020-09-04 20:20:56 +01001149 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
1150 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
1151 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
Michalis Spyrou22f917c2019-05-21 13:30:10 +01001152
Georgios Pinitas8a14b2c2020-09-04 20:20:56 +01001153 TensorShape output_shape{ input_shape };
1154 output_shape.set(idx_width, input_shape[idx_width] * block);
1155 output_shape.set(idx_height, input_shape[idx_height] * block);
1156 output_shape.set(idx_channel, input_shape[idx_channel] / (block * block));
Michalis Spyrou22f917c2019-05-21 13:30:10 +01001157
1158 return output_shape;
1159}
1160
Michalis Spyroud33fe342019-01-04 17:10:25 +00001161/** Calculate the split output shape of a tensor
1162 *
1163 * @param[in] input Input tensor info
1164 * @param[in] axis Axis on which to split the input
1165 * @param[in] num_splits Number of splits
1166 *
1167 * @return the calculated shape
1168 */
Georgios Pinitase1a352c2018-09-03 12:42:19 +01001169inline TensorShape compute_split_shape(const ITensorInfo *input, unsigned int axis, unsigned int num_splits)
1170{
1171 TensorShape empty_shape;
1172 empty_shape.set(0, 0);
1173
1174 TensorShape out_shape{ input->tensor_shape() };
1175
1176 // Return empty shape if axis is invalid
1177 if(axis > input->tensor_shape().num_dimensions())
1178 {
1179 return empty_shape;
1180 }
1181
1182 size_t axis_size = out_shape[axis];
1183
1184 // Return empty shape if num_split is not valid
1185 if(axis_size % num_splits)
1186 {
1187 return empty_shape;
1188 }
1189
1190 out_shape[axis] = axis_size / num_splits;
1191 return out_shape;
1192}
1193
Michalis Spyroud33fe342019-01-04 17:10:25 +00001194/** Calculate the space to batch output shape of a tensor
1195 *
1196 * @param[in] input Input tensor info
1197 * @param[in] block_x Block shape x value
1198 * @param[in] block_y Block shape y value
1199 * @param[in] padding_left Left padding values
1200 * @param[in] padding_right Right padding values
1201 *
1202 * @return the calculated shape
1203 */
Michalis Spyrou16934a52018-08-21 18:03:58 +01001204inline TensorShape compute_space_to_batch_shape(const ITensorInfo *input, const int block_x, const int block_y, const Size2D &padding_left, const Size2D &padding_right)
1205{
1206 TensorShape output_shape{ input->tensor_shape() };
Michalis Spyrou13a51e12018-09-18 13:09:30 +01001207
1208 const DataLayout data_layout = input->data_layout();
1209 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
1210 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
1211 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
1212
SiCong Li18bdfae2020-11-08 21:58:01 +00001213 ARM_COMPUTE_ERROR_ON((input->tensor_shape()[idx_width] + padding_left.x() + padding_right.x()) % block_x != 0);
1214 ARM_COMPUTE_ERROR_ON((input->tensor_shape()[idx_height] + padding_left.y() + padding_right.y()) % block_y != 0);
1215
1216 output_shape.set(idx_width, (input->tensor_shape()[idx_width] + padding_left.x() + padding_right.x()) / block_x);
1217 output_shape.set(idx_height, (input->tensor_shape()[idx_height] + padding_left.y() + padding_right.y()) / block_y);
1218 output_shape.set(idx_batch, input->tensor_shape()[idx_batch] * block_x * block_y);
Michalis Spyrou16934a52018-08-21 18:03:58 +01001219
1220 return output_shape;
1221}
Pablo Tello32521432018-11-15 14:43:10 +00001222
Manuel Bottini5b7d5372019-05-17 14:04:22 +01001223/** Calculate the space to batch output shape of a tensor
1224 *
1225 * @param[in] input Input tensor info
1226 * @param[in] block_shape Block shape value
1227 *
1228 * @return the calculated shape
1229 */
1230inline TensorShape compute_space_to_depth_shape(const ITensorInfo *input, int32_t block_shape)
1231{
1232 TensorShape output_shape{ input->tensor_shape() };
1233
1234 const DataLayout data_layout = input->data_layout();
1235 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
1236 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
1237 const int idx_depth = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
1238
Ramy Elgammalca1a52d2022-11-18 16:03:21 +00001239 output_shape.set(idx_width, input->tensor_shape()[idx_width] / block_shape);
1240 output_shape.set(idx_height, input->tensor_shape()[idx_height] / block_shape);
1241 output_shape.set(idx_depth, input->tensor_shape()[idx_depth] * (block_shape * block_shape));
Manuel Bottini5b7d5372019-05-17 14:04:22 +01001242
1243 return output_shape;
1244}
1245
Michalis Spyroud33fe342019-01-04 17:10:25 +00001246/** Calculate the prior box output shape of a tensor
1247 *
1248 * @param[in] input Input tensor info
1249 * @param[in] info PriorBoxLayer info
1250 *
1251 * @return the calculated shape
1252 */
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +01001253inline TensorShape compute_prior_box_shape(const ITensorInfo &input, const PriorBoxLayerInfo &info)
1254{
1255 DataLayout data_layout = input.data_layout();
1256 const size_t idx_w = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
1257 const size_t idx_h = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
Pablo Tello32521432018-11-15 14:43:10 +00001258 const int num_priors = info.aspect_ratios().size() * info.min_sizes().size() + info.max_sizes().size();
Michalis Spyrou6c7c38e2018-08-29 16:28:11 +01001259
1260 TensorShape output_shape{};
1261 output_shape.set(0, input.dimension(idx_w) * input.dimension(idx_h) * num_priors * 4);
1262 output_shape.set(1, 2);
1263
1264 return output_shape;
1265}
Michalis Spyrou16934a52018-08-21 18:03:58 +01001266
Michalis Spyroud33fe342019-01-04 17:10:25 +00001267/** Calculate the padded shape of a tensor
1268 *
1269 * @param[in] input_shape Input tensor shape
1270 * @param[in] padding Paddings list
1271 *
1272 * @return the calculated shape
1273 */
Giuseppe Rossinid7647d42018-07-17 18:13:13 +01001274inline TensorShape compute_padded_shape(const TensorShape &input_shape, const PaddingList &padding)
1275{
1276 TensorShape padded_shape = input_shape;
1277 for(size_t dim = 0; dim < padding.size(); ++dim)
1278 {
Georgios Pinitasdea2d2d2018-12-19 16:23:17 +00001279 const auto &padding_pair = padding[dim];
1280 const uint32_t shape_on_index = (padded_shape.num_dimensions() <= dim) ? 1 : input_shape[dim];
1281 padded_shape.set(dim, padding_pair.first + shape_on_index + padding_pair.second);
Giuseppe Rossinid7647d42018-07-17 18:13:13 +01001282 }
1283 return padded_shape;
1284}
1285
Michalis Spyroud33fe342019-01-04 17:10:25 +00001286/** Calculate the tiled shape of a tensor
1287 *
1288 * @param[in] input_shape Input tensor shape
1289 * @param[in] multiples Paddings list
1290 *
1291 * @return the calculated shape
1292 */
giuros013175fcf2018-11-21 09:59:17 +00001293inline TensorShape compute_tiled_shape(const TensorShape &input_shape, const Multiples &multiples)
1294{
1295 TensorShape tiled_shape = input_shape;
1296 for(size_t dim = 0; dim < multiples.size(); ++dim)
1297 {
1298 tiled_shape.set(dim, input_shape[dim] * multiples[dim]);
1299 }
1300 return tiled_shape;
1301}
1302
Michalis Spyrouaea14c62019-01-03 11:10:25 +00001303/** Calculate the reduced shape of a tensor given an axis
1304 *
Sang-Hoon Park2697fd82019-10-15 16:49:24 +01001305 * @param[in] input Input tensor info
1306 * @param[in] axis Axis on which to perform reduction
1307 * @param[in] keep_dims (Optional) Whether to keep the dimension after reduction operation. Defaults to true.
Michalis Spyrouaea14c62019-01-03 11:10:25 +00001308 *
1309 * @return the calculated shape
1310 */
Sang-Hoon Park2697fd82019-10-15 16:49:24 +01001311inline TensorShape compute_reduced_shape(const TensorShape &input, unsigned int axis, bool keep_dims = true)
Michalis Spyrouaea14c62019-01-03 11:10:25 +00001312{
1313 TensorShape output_shape{ input };
Sang-Hoon Park2697fd82019-10-15 16:49:24 +01001314
1315 if(!keep_dims)
1316 {
1317 output_shape.remove_dimension(axis);
1318 }
1319 else
1320 {
1321 output_shape.set(axis, 1);
1322 }
Michalis Spyrouaea14c62019-01-03 11:10:25 +00001323
1324 return output_shape;
1325}
1326
Michalis Spyroud33fe342019-01-04 17:10:25 +00001327/** Calculate the upsampled shape of a tensor
1328 *
1329 * @param[in] input Input tensor info
1330 * @param[in] info Contains stride information (x and y)
1331 *
1332 * @return the calculated shape
1333 */
Michalis Spyrouceb889e2018-09-17 18:24:41 +01001334inline TensorShape compute_upsample_shape(const ITensorInfo &input, const Size2D &info)
1335{
1336 const DataLayout data_layout = input.data_layout();
1337 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
1338 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
1339
1340 TensorShape scale_out_shape(input.tensor_shape());
1341 const unsigned int out_x = input.dimension(idx_width) * info.x();
1342 const unsigned int out_y = input.dimension(idx_height) * info.y();
1343 scale_out_shape.set(idx_width, out_x);
1344 scale_out_shape.set(idx_height, out_y);
1345
1346 return scale_out_shape;
1347}
1348
Michalis Spyroud33fe342019-01-04 17:10:25 +00001349/** Get the tensor shape
1350 *
1351 * @param[in] data Input data
1352 *
1353 * @return the extracted tensor shape
1354 */
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001355template <typename T>
Georgios Pinitase2220552018-07-20 13:23:44 +01001356inline TensorShape extract_shape(T *data)
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001357{
Georgios Pinitase2220552018-07-20 13:23:44 +01001358 return data->info()->tensor_shape();
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001359}
1360
John Kesapidescafec8f2019-02-19 15:53:59 +00001361inline TensorShape extract_shape(ITensorInfo *data)
John Kesapides917959c2019-02-04 12:37:29 +00001362{
1363 return data->tensor_shape();
1364}
John Kesapidescafec8f2019-02-19 15:53:59 +00001365inline TensorShape extract_shape(const ITensorInfo *data)
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001366{
Georgios Pinitase2220552018-07-20 13:23:44 +01001367 return data->tensor_shape();
1368}
1369
1370inline TensorShape extract_shape(const TensorShape *data)
1371{
1372 return *data;
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001373}
1374
Michalis Spyroua9c44722019-04-05 17:18:36 +01001375inline TensorShape extract_shape(TensorShape *data)
1376{
1377 return *data;
1378}
1379
Michalis Spyroud33fe342019-01-04 17:10:25 +00001380/** Calculate the unstack shape of a tensor
1381 *
1382 * @param[in] input_shape Input tensor shape
1383 * @param[in] axis Axis on which to perform the unstack operation
1384 *
1385 * @return the calculated shape
1386 */
Pablo Tello54303692018-11-22 16:14:36 +00001387inline TensorShape calculate_unstack_shape(TensorShape input_shape, unsigned int axis)
1388{
1389 ARM_COMPUTE_ERROR_ON(axis > input_shape.num_dimensions());
1390 input_shape.remove_dimension(axis);
1391 return input_shape;
1392}
1393
Pablo Tello3dd5b682019-03-04 14:14:02 +00001394/** Calculate the concatenate output shape of the concatenate operation along a single axis
Michalis Spyroud33fe342019-01-04 17:10:25 +00001395 *
Pablo Tello3dd5b682019-03-04 14:14:02 +00001396 * @param[in] input Vector containing the shapes of the inputs
1397 * @param[in] axis Axis along which to concatenate the input tensors
Michalis Spyroud33fe342019-01-04 17:10:25 +00001398 *
1399 * @return the calculated shape
1400 */
Georgios Pinitase29acf12018-07-16 14:40:09 +01001401template <typename T>
Pablo Tello3dd5b682019-03-04 14:14:02 +00001402inline TensorShape calculate_concatenate_shape(const std::vector<T *> &input, size_t axis)
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001403{
Pablo Tello3dd5b682019-03-04 14:14:02 +00001404 TensorShape out_shape = extract_shape(input[0]);
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001405
Georgios Pinitasdcd949d2019-04-17 11:04:28 +01001406#if defined(ARM_COMPUTE_ASSERTS_ENABLED)
Michalis Spyroua9c44722019-04-05 17:18:36 +01001407 // All dimensions must match except the axis one
1408 for(unsigned int i = 0; i < MAX_DIMS; ++i)
1409 {
1410 if(i == axis)
1411 {
1412 continue;
1413 }
1414
1415 for(const auto &tensor : input)
1416 {
1417 ARM_COMPUTE_ERROR_ON(tensor == nullptr);
1418 const TensorShape shape = extract_shape(tensor);
1419 ARM_COMPUTE_ERROR_ON(out_shape[i] != shape[i]);
1420 }
1421 }
Georgios Pinitasdcd949d2019-04-17 11:04:28 +01001422#endif // defined(ARM_COMPUTE_ASSERTS_ENABLED)
Michalis Spyroua9c44722019-04-05 17:18:36 +01001423
1424 // Calculate output shape
Pablo Tello3dd5b682019-03-04 14:14:02 +00001425 size_t new_size = 0;
1426 for(const auto &tensor : input)
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001427 {
Georgios Pinitase2220552018-07-20 13:23:44 +01001428 const TensorShape shape = extract_shape(tensor);
Pablo Tello3dd5b682019-03-04 14:14:02 +00001429 new_size += shape[axis];
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001430 }
1431
Pablo Tello3dd5b682019-03-04 14:14:02 +00001432 out_shape.set(axis, new_size);
Michalis Spyrou55b3d122018-05-09 09:59:23 +01001433
1434 return out_shape;
1435}
Michalis Spyroud33fe342019-01-04 17:10:25 +00001436/** Calculate the stack output shape of a tensor
1437 *
1438 * @param[in] a Input tensor info
1439 * @param[in] axis Axis on which to perform the stack operation
1440 * @param[in] num_tensors Number of tensors to stack
1441 *
1442 * @return the calculated shape
1443 */
Gian Marco Iodice8aa985e2018-11-27 15:58:08 +00001444inline TensorShape compute_stack_shape(const ITensorInfo &a, unsigned int axis, unsigned int num_tensors)
1445{
1446 ARM_COMPUTE_ERROR_ON(axis > a.num_dimensions());
1447 ARM_COMPUTE_ERROR_ON(a.num_dimensions() > 4);
1448
1449 TensorShape shape_out{ a.tensor_shape() };
1450 shape_out.set(axis, num_tensors);
1451
1452 unsigned int i_shift = 0;
1453
1454 for(unsigned int i = 0; i < a.num_dimensions(); ++i)
1455 {
1456 if(i == axis)
1457 {
1458 i_shift++;
1459 }
1460
1461 shape_out.set(i + i_shift, a.tensor_shape()[i]);
1462 }
1463 return shape_out;
1464}
Manuel Bottini8529bd62018-11-21 11:53:04 +00001465
Adnan AlSinane4563a02021-09-01 15:32:03 +01001466/** Calculate the output shape of 3d Convolution
1467 *
1468 * @param[in] src Input tensor shape
1469 * @param[in] weights Weights tensor shape
1470 * @param[in] conv3d_info 3d Convolution Parameters object
1471 *
1472 * @return the calculated shape
1473 */
1474inline TensorShape compute_conv3d_shape(const TensorShape &src, const TensorShape &weights, const Conv3dInfo &conv3d_info)
1475{
1476 // Weight tensor shape indices (D H W Cin Cout)
1477 constexpr unsigned int weights_depth_dim = 4u;
1478 constexpr unsigned int weights_height_dim = 3u;
1479 constexpr unsigned int weights_width_dim = 2u;
1480 constexpr unsigned int weights_CHout_dim = 0u;
1481
1482 // Source/Destination Tensor shape indices (N D H W C)
1483 constexpr unsigned int batch_dim = 4u;
1484 constexpr unsigned int depth_dim = 3u;
1485 constexpr unsigned int height_dim = 2u;
1486 constexpr unsigned int width_dim = 1u;
1487 constexpr unsigned int channel_dim = 0u;
1488
1489 TensorShape output_shape{ src };
1490 const size_t pad_left = conv3d_info.padding.left;
1491 const size_t pad_right = conv3d_info.padding.right;
1492 const size_t pad_top = conv3d_info.padding.top;
1493 const size_t pad_bottom = conv3d_info.padding.bottom;
1494 const size_t pad_front = conv3d_info.padding.front;
1495 const size_t pad_back = conv3d_info.padding.back;
1496 const size_t dilation_x = conv3d_info.dilation.width;
1497 const size_t dilation_y = conv3d_info.dilation.height;
1498 const size_t dilation_z = conv3d_info.dilation.depth;
1499 const size_t stride_x = conv3d_info.stride.x();
1500 const size_t stride_y = conv3d_info.stride.y();
1501 const size_t stride_z = conv3d_info.stride.z();
1502
1503 int output_width_size = 0;
1504 int output_height_size = 0;
1505 int output_depth_size = 0;
1506
1507 switch(conv3d_info.round_type)
1508 {
1509 case DimensionRoundingType::FLOOR:
1510 output_width_size = static_cast<int>(std::floor((static_cast<float>(src[width_dim] + pad_left + pad_right - (dilation_x * (weights[weights_width_dim] - 1) + 1)) / stride_x) + 1));
1511 output_height_size = static_cast<int>(std::floor((static_cast<float>(src[height_dim] + pad_top + pad_bottom - (dilation_y * (weights[weights_height_dim] - 1) + 1)) / stride_y) + 1));
1512 output_depth_size = static_cast<int>(std::floor((static_cast<float>(src[depth_dim] + pad_front + pad_back - (dilation_z * (weights[weights_depth_dim] - 1) + 1)) / stride_z) + 1));
1513 break;
1514 case DimensionRoundingType::CEIL:
1515 output_width_size = static_cast<int>(std::ceil((static_cast<float>(src[width_dim] + pad_left + pad_right - (dilation_x * (weights[weights_width_dim] - 1) + 1)) / stride_x) + 1));
1516 output_height_size = static_cast<int>(std::ceil((static_cast<float>(src[height_dim] + pad_top + pad_bottom - (dilation_y * (weights[weights_height_dim] - 1) + 1)) / stride_y) + 1));
1517 output_depth_size = static_cast<int>(std::ceil((static_cast<float>(src[depth_dim] + pad_front + pad_back - (dilation_z * (weights[weights_depth_dim] - 1) + 1)) / stride_z) + 1));
1518 break;
1519 default:
1520 ARM_COMPUTE_ERROR("Unsupported rounding type");
1521 }
1522
1523 output_shape.set(batch_dim, src[batch_dim]);
1524 output_shape.set(width_dim, output_width_size);
1525 output_shape.set(height_dim, output_height_size);
1526 output_shape.set(depth_dim, output_depth_size);
1527 output_shape.set(channel_dim, weights[weights_CHout_dim]);
1528 return output_shape;
1529}
1530
Gunes Bayir918a9fb2022-02-15 11:40:13 +00001531/** Calculate the output pool3d shape of a tensor
1532 *
1533 * @param[in] src Input tensor info
1534 * @param[in] pool3d_info Pooling layer info
1535 *
1536 * @return the calculated shape
1537 */
ramelg0137515692022-02-26 22:06:20 +00001538inline TensorShape compute_pool3d_shape(const TensorShape &src, Pooling3dLayerInfo pool3d_info)
Gunes Bayir918a9fb2022-02-15 11:40:13 +00001539{
1540 TensorShape output_shape{ src };
1541
ramelg0137515692022-02-26 22:06:20 +00001542 const auto data_layout = DataLayout::NDHWC;
1543 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
1544 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
1545 const int idx_depth = get_data_layout_dimension_index(data_layout, DataLayoutDimension::DEPTH);
1546 const int pool_size_width = pool3d_info.is_global_pooling ? src[idx_width] : pool3d_info.pool_size.width;
1547 const int pool_size_height = pool3d_info.is_global_pooling ? src[idx_height] : pool3d_info.pool_size.height;
1548 const int pool_size_depth = pool3d_info.is_global_pooling ? src[idx_depth] : pool3d_info.pool_size.depth;
1549 int output_width = 0;
1550 int output_height = 0;
1551 int output_depth = 0;
Gunes Bayir918a9fb2022-02-15 11:40:13 +00001552
ramelg0137515692022-02-26 22:06:20 +00001553 std::tie(output_width, output_height, output_depth) = scaled_3d_dimensions_signed(src[idx_width], src[idx_height], src[idx_depth], pool_size_width, pool_size_height,
1554 pool_size_depth, pool3d_info);
Gunes Bayir918a9fb2022-02-15 11:40:13 +00001555
ramelg0137515692022-02-26 22:06:20 +00001556 ARM_COMPUTE_ERROR_ON_MSG((output_width < 1 || output_height < 1 || output_depth < 1), "Calculated output dimension size is invalid");
Gunes Bayir918a9fb2022-02-15 11:40:13 +00001557
ramelg0137515692022-02-26 22:06:20 +00001558 output_shape.set(idx_width, static_cast<size_t>(output_width));
1559 output_shape.set(idx_height, static_cast<size_t>(output_height));
1560 output_shape.set(idx_depth, static_cast<size_t>(output_depth));
Gunes Bayir918a9fb2022-02-15 11:40:13 +00001561
1562 return output_shape;
1563}
1564
Pablo Marquez Tello894659a2022-05-13 12:20:16 +01001565/** Calculate the gather output shape of a tensor
1566 *
1567 * @param[in] input_shape Input tensor shape
1568 * @param[in] indices_shape Indices tensor shape. Only supports for 2d and 3d indices
1569 * @param[in] actual_axis Axis to be used in the computation
1570 *
1571 * @note Let input_shape be (X,Y,Z) and indices shape (W,O,P) and axis 1
1572 * the new shape is computed by replacing the axis in the input shape with
1573 * the indice shape so the output shape will be (X,W,O,P,Z)
1574 *
1575 * @return the calculated shape
1576 */
Manuel Bottini8529bd62018-11-21 11:53:04 +00001577inline TensorShape compute_gather_shape(const TensorShape &input_shape, const TensorShape &indices_shape, uint32_t actual_axis)
1578{
SiCong Li4ceb4532023-03-13 15:02:23 +00001579 const auto input_num_dims = input_shape.num_dimensions();
Viet-Hoa Do37c989a2023-02-24 15:52:21 +00001580 const auto indices_num_dims = indices_shape.num_dimensions();
1581
1582 ARM_COMPUTE_ERROR_ON(actual_axis >= input_num_dims);
1583 ARM_COMPUTE_ERROR_ON(input_num_dims + indices_num_dims - 1 > Coordinates::num_max_dimensions);
1584
1585 TensorShape output_shape;
SiCong Li4ceb4532023-03-13 15:02:23 +00001586 size_t dim_no = 0;
Viet-Hoa Do37c989a2023-02-24 15:52:21 +00001587
1588 for(; dim_no < actual_axis; ++dim_no)
Pablo Marquez Tello894659a2022-05-13 12:20:16 +01001589 {
Viet-Hoa Do37c989a2023-02-24 15:52:21 +00001590 output_shape.set(dim_no, input_shape[dim_no]);
Pablo Marquez Tello894659a2022-05-13 12:20:16 +01001591 }
Viet-Hoa Do37c989a2023-02-24 15:52:21 +00001592
1593 for(; dim_no < actual_axis + indices_num_dims; ++dim_no)
Pablo Marquez Tello894659a2022-05-13 12:20:16 +01001594 {
Viet-Hoa Do37c989a2023-02-24 15:52:21 +00001595 output_shape.set(dim_no, indices_shape[dim_no - actual_axis]);
Pablo Marquez Tello894659a2022-05-13 12:20:16 +01001596 }
Viet-Hoa Do37c989a2023-02-24 15:52:21 +00001597
1598 for(; dim_no < input_num_dims + indices_num_dims - 1; ++dim_no)
1599 {
1600 output_shape.set(dim_no, input_shape[dim_no + 1 - indices_num_dims]);
1601 }
1602
1603 ARM_COMPUTE_ERROR_ON(input_shape.total_size() * indices_shape.total_size() != output_shape.total_size() * input_shape[actual_axis]);
1604
Manuel Bottini8529bd62018-11-21 11:53:04 +00001605 return output_shape;
1606}
Georgios Pinitas358ca202017-12-07 16:47:52 +00001607} // namespace shape_calculator
1608} // namespace misc
1609} // namespace arm_compute
Ramy Elgammal2b6ebfe2023-03-09 21:15:37 +00001610#endif /* ACL_ARM_COMPUTE_CORE_UTILS_MISC_SHAPECALCULATOR */