blob: b91e52a65779f1b2c5e9e66f64fee8af1be8ba2a [file] [log] [blame]
Georgios Pinitas358ca202017-12-07 16:47:52 +00001/*
Gian Marco36a0a462018-01-12 10:21:40 +00002 * Copyright (c) 2017-2018 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 */
24#ifndef __ARM_COMPUTE_MISC_SHAPE_CALCULATOR_H__
25#define __ARM_COMPUTE_MISC_SHAPE_CALCULATOR_H__
26
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"
Georgios Pinitas1250a5a2018-01-02 13:27:37 +000029#include "arm_compute/core/Utils.h"
Georgios Pinitas358ca202017-12-07 16:47:52 +000030
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000031#include <cmath>
32
Georgios Pinitas358ca202017-12-07 16:47:52 +000033namespace arm_compute
34{
35namespace misc
36{
37namespace shape_calculator
38{
Pablo Tello00afd112018-01-04 10:34:24 +000039inline TensorShape compute_permutation_output_shape(const ITensorInfo &input, const PermutationVector &perm)
40{
41 TensorShape output_shape = input.tensor_shape();
42 permute(output_shape, perm);
43 return output_shape;
44}
Georgios Pinitas78c00902018-01-09 17:33:11 +000045inline TensorShape compute_weights_reshaped_shape(const ITensorInfo &weights, bool has_bias = false)
46{
47 // Calculate output shape
48 TensorShape weights_reshaped{ weights.tensor_shape() };
49 weights_reshaped.collapse(3);
50 const size_t tmp_dim = weights_reshaped[0];
51 weights_reshaped.set(0, weights_reshaped[1]);
52 weights_reshaped.set(1, tmp_dim + (has_bias ? 1 : 0));
53
54 return weights_reshaped;
55}
Gian Marco36a0a462018-01-12 10:21:40 +000056inline TensorShape compute_interleaved_shape(const ITensorInfo &a, int mult_interleave4x4_height = 1)
Georgios Pinitas358ca202017-12-07 16:47:52 +000057{
Gian Marco36a0a462018-01-12 10:21:40 +000058 // The interleaved output matrix will have the following shape: [ a_height * W, ceil(a_width / W) ] where W = 4 * mult_interleave4x4_height
59 ARM_COMPUTE_ERROR_ON(mult_interleave4x4_height < 1);
60 const int interleave_width = 4 * mult_interleave4x4_height;
Georgios Pinitas358ca202017-12-07 16:47:52 +000061 TensorShape shape_interleaved_a{ a.tensor_shape() };
Gian Marco36a0a462018-01-12 10:21:40 +000062 shape_interleaved_a.set(0, a.dimension(0) * interleave_width);
63 shape_interleaved_a.set(1, std::ceil(a.dimension(1) / static_cast<float>(interleave_width)));
Georgios Pinitas358ca202017-12-07 16:47:52 +000064
65 return shape_interleaved_a;
66}
67inline TensorShape compute_transpose1xW_shape(const ITensorInfo &b)
68{
69 // The transpose1xW output matrix will have the following shape: [ b_height * 16, ceil(b_width / 16.0f) ]
70 TensorShape shape_transposed1xW_b{ b.tensor_shape() };
71 shape_transposed1xW_b.set(0, b.dimension(1) * 16);
72 shape_transposed1xW_b.set(1, std::ceil(b.dimension(0) / 16.f));
73
74 return shape_transposed1xW_b;
75}
Gian Marco36a0a462018-01-12 10:21:40 +000076inline TensorShape compute_transpose1xW_with_element_size_shape(const ITensorInfo &b, int mult_transpose1xW_width = 1)
Georgios Pinitas358ca202017-12-07 16:47:52 +000077{
Gian Marco36a0a462018-01-12 10:21:40 +000078 // Note: mult_transpose1xW_width expresses the number of chunks with size 1x(W) we want to store on the same row
79 // The transpose1xW output matrix will have the following shape:
80 // [ b_height * W, ceil(b_width / W) ] where W = (16 / element size of the tensor) * mult_transpose1xW_width
81 ARM_COMPUTE_ERROR_ON(mult_transpose1xW_width < 1);
Georgios Pinitas358ca202017-12-07 16:47:52 +000082 TensorShape shape_transposed1xW_b{ b.tensor_shape() };
Gian Marco36a0a462018-01-12 10:21:40 +000083 const size_t transpose_width = (16 / b.element_size()) * mult_transpose1xW_width;
Georgios Pinitas358ca202017-12-07 16:47:52 +000084 shape_transposed1xW_b.set(0, b.dimension(1) * transpose_width);
85 shape_transposed1xW_b.set(1, static_cast<size_t>(std::ceil(b.dimension(0) / static_cast<float>(transpose_width))));
86
87 return shape_transposed1xW_b;
88}
89inline TensorShape compute_reductionA_shape(const ITensorInfo &b)
90{
91 TensorShape shape_vector_sum_col{ b.tensor_shape() };
92 if(shape_vector_sum_col.num_dimensions() > 1)
93 {
94 shape_vector_sum_col.remove_dimension(1);
95 }
96
97 return shape_vector_sum_col;
98}
99inline TensorShape compute_reductionB_shape(const ITensorInfo &a)
100{
101 TensorShape shape_vector_sum_row{ a.tensor_shape() };
102 shape_vector_sum_row.set(Window::DimX, a.dimension(1));
103 if(a.num_dimensions() > 1)
104 {
105 shape_vector_sum_row.remove_dimension(1);
106 }
107
108 return shape_vector_sum_row;
109}
Georgios Pinitas78c00902018-01-09 17:33:11 +0000110inline TensorShape compute_col2im_shape(const ITensorInfo &input, std::pair<unsigned int, unsigned int> convolved_dims)
111{
112 TensorShape col2im_shape{ input.tensor_shape() };
113 col2im_shape.set(0, convolved_dims.first);
114 col2im_shape.set(1, convolved_dims.second);
115 col2im_shape.set(2, input.tensor_shape()[0]);
116
117 return col2im_shape;
118}
Georgios Pinitas358ca202017-12-07 16:47:52 +0000119inline TensorShape compute_transposed_shape(const ITensorInfo &input)
120{
121 TensorShape shape_transposed{ input.tensor_shape() };
122
123 shape_transposed.set(0, input.dimension(1));
124 shape_transposed.set(1, input.dimension(0));
125
126 return shape_transposed;
127}
Georgios Pinitas1250a5a2018-01-02 13:27:37 +0000128inline TensorShape compute_depthwise_convolution_shape(const ITensorInfo &input, const ITensorInfo &weights, PadStrideInfo conv_info)
129{
130 const TensorShape input_shape{ input.tensor_shape() };
131 const TensorShape weights_shape{ weights.tensor_shape() };
132
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000133 const DataLayout data_layout = input.data_layout();
134 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
135 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
136
Georgios Pinitas1250a5a2018-01-02 13:27:37 +0000137 unsigned int output_width = 0;
138 unsigned int output_height = 0;
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000139 std::tie(output_width, output_height) = scaled_dimensions(input_shape[width_idx], input_shape[height_idx],
140 weights_shape[width_idx], weights_shape[height_idx],
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000141 conv_info);
Georgios Pinitas1250a5a2018-01-02 13:27:37 +0000142
143 TensorShape output_shape{ input_shape };
Giorgio Arenadfca60b2018-01-31 10:30:59 +0000144 output_shape.set(width_idx, output_width);
145 output_shape.set(height_idx, output_height);
Georgios Pinitas1250a5a2018-01-02 13:27:37 +0000146
147 return output_shape;
148}
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000149inline TensorShape compute_deconvolution_shape(const ITensorInfo &input, unsigned int sx, unsigned int sy, unsigned int inner_border_right, unsigned int inner_border_top, const PadStrideInfo &info)
150{
151 TensorShape scale_out_shape(input.tensor_shape());
152 const unsigned int out_x = input.dimension(0) + (input.dimension(0) - 1) * (sx - 1) + inner_border_right + 2 * info.pad().first;
153 const unsigned int out_y = input.dimension(1) + (input.dimension(1) - 1) * (sy - 1) + inner_border_top + 2 * info.pad().second;
154 scale_out_shape.set(0, out_x);
155 scale_out_shape.set(1, out_y);
156
157 return scale_out_shape;
158}
Giorgio Arena156fcf32018-03-09 15:30:43 +0000159inline TensorShape compute_im2col_conv_shape(const ITensorInfo *input, const Size2D &kernel_dims, const PadStrideInfo &conv_info, bool has_bias, const Size2D &dilation)
160{
161 // The output shape will be the 2D shape used as input for GEMM [ out_channels * kernel_area, num_elems_per_out_channel ]
162
163 TensorShape output_shape{ input->tensor_shape() };
164
165 const DataLayout data_layout = input->data_layout();
166 const int width_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
167 const int height_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
168 const int channel_idx = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
169
170 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);
171 output_shape.set(width_idx, (output_shape[channel_idx] * kernel_dims.area() + (has_bias ? 1 : 0)));
172 output_shape.set(height_idx, (out_dims.first * out_dims.second));
173 output_shape.set(channel_idx, 1);
174
175 return output_shape;
176}
177inline TensorShape compute_im2col_fc_shape(const ITensorInfo *input, const int num_input_dimensions = 3)
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000178{
179 TensorShape output_shape{ input->tensor_shape() };
180
181 output_shape.collapse(num_input_dimensions);
182
183 return output_shape;
184}
Giorgio Arena156fcf32018-03-09 15:30:43 +0000185inline TensorShape compute_im2col_flatten_shape(const ITensorInfo *input)
186{
187 // The output shape will be the flatten version of the input (i.e. [ width * height * channels, 1, 1, ... ] ). Used for FlattenLayer.
188
189 ARM_COMPUTE_ERROR_ON(input->num_dimensions() < 3);
190
191 TensorShape output_shape{ input->tensor_shape() };
192
193 const size_t flatten_shape = input->dimension(0) * input->dimension(1) * input->dimension(2);
194 output_shape.set(0, flatten_shape);
195 output_shape.remove_dimension(1);
196 output_shape.remove_dimension(1);
197
198 return output_shape;
199}
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000200inline TensorShape compute_interleave_custom_shape(const TensorShape &input, const int x_interleave, const int y_interleave)
201{
202 TensorShape output_shape{ input };
203
204 output_shape.set(0, output_shape.x() * x_interleave);
205 output_shape.set(1, std::ceil(output_shape.y() / static_cast<float>(y_interleave)));
206
207 return output_shape;
208}
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000209inline TensorShape compute_fully_connected_reshaped_weights_shape(const ITensorInfo *input, bool transpose_weights, bool is_batched_fc_layer, const int interleave)
210{
211 TensorShape output_shape{ input->tensor_shape() };
212
213 // Transpose weights if the user hasn't done it
214 if(transpose_weights)
215 {
216 output_shape = compute_transposed_shape(*input);
217 }
218
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000219 // If we run multiple batches we need 1xW transpose, too.
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000220 if(is_batched_fc_layer)
221 {
222 output_shape = compute_transposed_shape(input->clone()->set_tensor_shape(output_shape));
223 output_shape = compute_interleave_custom_shape(output_shape, interleave, interleave);
224 }
225
226 return output_shape;
227}
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000228
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000229inline TensorShape compute_winograd_filter_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000230{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000231 TensorShape tensor_shape{ input.tensor_shape() };
232
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000233 const Size2D kernel_size = winograd_info.kernel_size;
234 const Size2D output_tile_size = winograd_info.output_tile_size;
235 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 +0000236
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000237 tensor_shape.remove_dimension(get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH));
238 tensor_shape.set(Window::DimX, input.dimension(3));
239 tensor_shape.set(Window::DimY, input.dimension(get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL)));
240 tensor_shape.set(Window::DimZ, input_tile_size.area());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000241
242 return tensor_shape;
243}
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000244inline TensorShape compute_winograd_input_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000245{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000246 const PadStrideInfo conv_info = winograd_info.convolution_info;
247 const Size2D kernel_size = winograd_info.kernel_size;
248 const Size2D output_tile_size = winograd_info.output_tile_size;
249 const Size2D input_tile_size = Size2D(output_tile_size.width + kernel_size.width - 1, output_tile_size.height + kernel_size.height - 1);
250
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000251 // Compute height
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000252 const unsigned int num_tiles_x = std::ceil((input.tensor_shape().x() - (kernel_size.width - 1) + conv_info.pad_left() + conv_info.pad_right()) / static_cast<float>(output_tile_size.width));
253 const unsigned int num_tiles_y = std::ceil((input.tensor_shape().y() - (kernel_size.height - 1) + conv_info.pad_top() + conv_info.pad_bottom()) / static_cast<float>(output_tile_size.height));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000254
255 const unsigned int width = input.tensor_shape()[get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL)];
256 const unsigned int height = num_tiles_x * num_tiles_y;
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000257 const unsigned int depth = input_tile_size.area();
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000258
259 TensorShape output_shape{ input.tensor_shape() };
260 output_shape.set(0, width);
261 output_shape.set(1, height);
262 output_shape.set(2, depth);
263
264 return output_shape;
265}
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000266inline TensorShape compute_winograd_output_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000267{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000268 const PadStrideInfo conv_info = winograd_info.convolution_info;
269 const Size2D kernel_size = winograd_info.kernel_size;
270 const Size2D input_dimensions = winograd_info.input_dimensions;
271 const DataLayout data_layout = winograd_info.output_data_layout;
272
273 // Compute output shape
274 unsigned int output_width = 0;
275 unsigned int output_height = 0;
276 std::tie(output_width, output_height) = scaled_dimensions(input_dimensions.width, input_dimensions.height,
277 kernel_size.width, kernel_size.height, conv_info);
278
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000279 TensorShape tensor_shape{ input.tensor_shape() };
280
281 // Output dimension
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000282 const unsigned int out_w = output_width;
283 const unsigned int out_h = output_height;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000284 const unsigned int out_c = input.dimension(0);
285
286 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH), out_w);
287 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT), out_h);
288 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL), out_c);
289
290 return tensor_shape;
291}
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000292inline TensorShape compute_deep_convolution_shape(const ITensorInfo &input, const ITensorInfo &weights, PadStrideInfo conv_info)
293{
294 const TensorShape input_shape{ input.tensor_shape() };
295 const TensorShape weights_shape{ weights.tensor_shape() };
296
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000297 const size_t idx_width = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH);
298 const size_t idx_height = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::HEIGHT);
299 const size_t idx_channel = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL);
300
301 const unsigned int input_width = input_shape[idx_width];
302 const unsigned int input_height = input_shape[idx_height];
303 const unsigned int weights_width = weights_shape[idx_width];
304 const unsigned int weights_height = weights_shape[idx_height];
305 const unsigned int weights_channel = weights_shape[idx_channel];
306 unsigned int output_width = 0;
307 unsigned int output_height = 0;
308 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 +0000309
310 TensorShape output_shape{ input_shape };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000311 output_shape.set(idx_width, output_width);
312 output_shape.set(idx_height, output_height);
313 output_shape.set(idx_channel, weights_channel);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000314
315 return output_shape;
316}
Alex Gilday60954c62018-03-05 16:22:48 +0000317inline TensorShape compute_min_max_shape(const ITensorInfo *input)
318{
319 TensorShape output_shape{ input->tensor_shape() };
320 output_shape.set(Window::DimX, 2);
321 output_shape.remove_dimension(1);
322 output_shape.remove_dimension(1);
323
324 return output_shape;
325}
326
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000327inline TensorShape compute_rnn_shape(const ITensorInfo *input, const unsigned int batch_size)
328{
329 TensorShape output_shape{ input->tensor_shape() };
330 output_shape.set(1, batch_size);
331
332 return output_shape;
333}
334
Georgios Pinitas358ca202017-12-07 16:47:52 +0000335} // namespace shape_calculator
336} // namespace misc
337} // namespace arm_compute
338#endif /* __ARM_COMPUTE_MISC_SHAPE_CALCULATOR_H__ */