blob: c3d5b64a922177ec80bcfd66012ccb74a99256d0 [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}
110inline TensorShape compute_im2col_shape(const ITensorInfo &input)
111{
112 TensorShape shape_im2col{ input.tensor_shape() };
113 shape_im2col.collapse(3);
114
115 return shape_im2col;
116}
Georgios Pinitas78c00902018-01-09 17:33:11 +0000117inline TensorShape compute_col2im_shape(const ITensorInfo &input, std::pair<unsigned int, unsigned int> convolved_dims)
118{
119 TensorShape col2im_shape{ input.tensor_shape() };
120 col2im_shape.set(0, convolved_dims.first);
121 col2im_shape.set(1, convolved_dims.second);
122 col2im_shape.set(2, input.tensor_shape()[0]);
123
124 return col2im_shape;
125}
Georgios Pinitas358ca202017-12-07 16:47:52 +0000126inline TensorShape compute_transposed_shape(const ITensorInfo &input)
127{
128 TensorShape shape_transposed{ input.tensor_shape() };
129
130 shape_transposed.set(0, input.dimension(1));
131 shape_transposed.set(1, input.dimension(0));
132
133 return shape_transposed;
134}
Georgios Pinitas1250a5a2018-01-02 13:27:37 +0000135inline TensorShape compute_depthwise_convolution_shape(const ITensorInfo &input, const ITensorInfo &weights, PadStrideInfo conv_info)
136{
137 const TensorShape input_shape{ input.tensor_shape() };
138 const TensorShape weights_shape{ weights.tensor_shape() };
139
140 unsigned int output_width = 0;
141 unsigned int output_height = 0;
Georgios Pinitasd05dce42018-01-22 16:29:17 +0000142 std::tie(output_width, output_height) = scaled_dimensions(input_shape.x(), input_shape.y(),
143 weights_shape.x(), weights_shape.y(),
144 conv_info);
Georgios Pinitas1250a5a2018-01-02 13:27:37 +0000145
146 TensorShape output_shape{ input_shape };
147 output_shape.set(0, output_width);
148 output_shape.set(1, output_height);
149
150 return output_shape;
151}
Michalis Spyrou780db4e2017-11-23 09:49:51 +0000152inline 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)
153{
154 TensorShape scale_out_shape(input.tensor_shape());
155 const unsigned int out_x = input.dimension(0) + (input.dimension(0) - 1) * (sx - 1) + inner_border_right + 2 * info.pad().first;
156 const unsigned int out_y = input.dimension(1) + (input.dimension(1) - 1) * (sy - 1) + inner_border_top + 2 * info.pad().second;
157 scale_out_shape.set(0, out_x);
158 scale_out_shape.set(1, out_y);
159
160 return scale_out_shape;
161}
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000162inline TensorShape compute_im2col_shape(const ITensorInfo *input, const int num_input_dimensions = 3)
163{
164 TensorShape output_shape{ input->tensor_shape() };
165
166 output_shape.collapse(num_input_dimensions);
167
168 return output_shape;
169}
170inline TensorShape compute_interleave_custom_shape(const TensorShape &input, const int x_interleave, const int y_interleave)
171{
172 TensorShape output_shape{ input };
173
174 output_shape.set(0, output_shape.x() * x_interleave);
175 output_shape.set(1, std::ceil(output_shape.y() / static_cast<float>(y_interleave)));
176
177 return output_shape;
178}
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000179inline TensorShape compute_fully_connected_reshaped_weights_shape(const ITensorInfo *input, bool transpose_weights, bool is_batched_fc_layer, const int interleave)
180{
181 TensorShape output_shape{ input->tensor_shape() };
182
183 // Transpose weights if the user hasn't done it
184 if(transpose_weights)
185 {
186 output_shape = compute_transposed_shape(*input);
187 }
188
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000189 // If we run multiple batches we need 1xW transpose, too.
Ioan-Cristian Szabob4e3e1c2017-11-30 17:17:17 +0000190 if(is_batched_fc_layer)
191 {
192 output_shape = compute_transposed_shape(input->clone()->set_tensor_shape(output_shape));
193 output_shape = compute_interleave_custom_shape(output_shape, interleave, interleave);
194 }
195
196 return output_shape;
197}
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000198
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000199inline TensorShape compute_winograd_filter_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000200{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000201 TensorShape tensor_shape{ input.tensor_shape() };
202
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000203 const Size2D kernel_size = winograd_info.kernel_size;
204 const Size2D output_tile_size = winograd_info.output_tile_size;
205 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 +0000206
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000207 tensor_shape.remove_dimension(get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH));
208 tensor_shape.set(Window::DimX, input.dimension(3));
209 tensor_shape.set(Window::DimY, input.dimension(get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL)));
210 tensor_shape.set(Window::DimZ, input_tile_size.area());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000211
212 return tensor_shape;
213}
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000214inline TensorShape compute_winograd_input_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000215{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000216 const PadStrideInfo conv_info = winograd_info.convolution_info;
217 const Size2D kernel_size = winograd_info.kernel_size;
218 const Size2D output_tile_size = winograd_info.output_tile_size;
219 const Size2D input_tile_size = Size2D(output_tile_size.width + kernel_size.width - 1, output_tile_size.height + kernel_size.height - 1);
220
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000221 // Compute height
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000222 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));
223 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 +0000224
225 const unsigned int width = input.tensor_shape()[get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL)];
226 const unsigned int height = num_tiles_x * num_tiles_y;
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000227 const unsigned int depth = input_tile_size.area();
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000228
229 TensorShape output_shape{ input.tensor_shape() };
230 output_shape.set(0, width);
231 output_shape.set(1, height);
232 output_shape.set(2, depth);
233
234 return output_shape;
235}
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000236inline TensorShape compute_winograd_output_transform_shape(const ITensorInfo &input, const WinogradInfo &winograd_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000237{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000238 const PadStrideInfo conv_info = winograd_info.convolution_info;
239 const Size2D kernel_size = winograd_info.kernel_size;
240 const Size2D input_dimensions = winograd_info.input_dimensions;
241 const DataLayout data_layout = winograd_info.output_data_layout;
242
243 // Compute output shape
244 unsigned int output_width = 0;
245 unsigned int output_height = 0;
246 std::tie(output_width, output_height) = scaled_dimensions(input_dimensions.width, input_dimensions.height,
247 kernel_size.width, kernel_size.height, conv_info);
248
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000249 TensorShape tensor_shape{ input.tensor_shape() };
250
251 // Output dimension
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000252 const unsigned int out_w = output_width;
253 const unsigned int out_h = output_height;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000254 const unsigned int out_c = input.dimension(0);
255
256 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH), out_w);
257 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT), out_h);
258 tensor_shape.set(get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL), out_c);
259
260 return tensor_shape;
261}
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000262inline TensorShape compute_deep_convolution_shape(const ITensorInfo &input, const ITensorInfo &weights, PadStrideInfo conv_info)
263{
264 const TensorShape input_shape{ input.tensor_shape() };
265 const TensorShape weights_shape{ weights.tensor_shape() };
266
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000267 const size_t idx_width = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::WIDTH);
268 const size_t idx_height = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::HEIGHT);
269 const size_t idx_channel = get_data_layout_dimension_index(input.data_layout(), DataLayoutDimension::CHANNEL);
270
271 const unsigned int input_width = input_shape[idx_width];
272 const unsigned int input_height = input_shape[idx_height];
273 const unsigned int weights_width = weights_shape[idx_width];
274 const unsigned int weights_height = weights_shape[idx_height];
275 const unsigned int weights_channel = weights_shape[idx_channel];
276 unsigned int output_width = 0;
277 unsigned int output_height = 0;
278 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 +0000279
280 TensorShape output_shape{ input_shape };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000281 output_shape.set(idx_width, output_width);
282 output_shape.set(idx_height, output_height);
283 output_shape.set(idx_channel, weights_channel);
Georgios Pinitasd8734b52017-12-22 15:27:52 +0000284
285 return output_shape;
286}
Alex Gilday60954c62018-03-05 16:22:48 +0000287inline TensorShape compute_min_max_shape(const ITensorInfo *input)
288{
289 TensorShape output_shape{ input->tensor_shape() };
290 output_shape.set(Window::DimX, 2);
291 output_shape.remove_dimension(1);
292 output_shape.remove_dimension(1);
293
294 return output_shape;
295}
296
Michalis Spyrou36a559e2018-03-20 10:30:58 +0000297inline TensorShape compute_rnn_shape(const ITensorInfo *input, const unsigned int batch_size)
298{
299 TensorShape output_shape{ input->tensor_shape() };
300 output_shape.set(1, batch_size);
301
302 return output_shape;
303}
304
Georgios Pinitas358ca202017-12-07 16:47:52 +0000305} // namespace shape_calculator
306} // namespace misc
307} // namespace arm_compute
308#endif /* __ARM_COMPUTE_MISC_SHAPE_CALCULATOR_H__ */