blob: 026b30031c222e8eb21c05f48ecdd5660baacbc0 [file] [log] [blame]
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +00001/*
2 * Copyright (c) 2018 ARM Limited.
3 *
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#include "Winograd.h"
25
26#include "tests/validation/Helpers.h"
27#include "tests/validation/reference/Utils.h"
28
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000029#include "arm_compute/core/Types.h"
30
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000031#include <algorithm>
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010032#include <cmath>
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000033
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000034namespace arm_compute
35{
36namespace test
37{
38namespace validation
39{
40namespace reference
41{
42namespace
43{
44template <typename T>
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000045void initialize_matrix_transform(SimpleTensor<T> &src, const Size2D &output_tile_size, const Size2D &kernel_size, WinogradTransformType winograd_transform_type)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000046{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000047 // Winograd input transform matrices
48 static const float imatrix2x2_3x3[] =
Giorgio Arena2d9de0a2018-03-15 17:58:20 +000049 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000050 1.0f, 0.0f, -1.0f, 0.0f,
51 0.0f, 1.0f, 1.0f, 0.0f,
52 0.0f, -1.0f, 1.0f, 0.0f,
53 0.0f, 1.0f, 0.0f, -1.0f
54 };
55
56 static const float imatrix4x4_3x3[] =
57 {
58 4.0f, 0.0f, -5.0f, 0.0f, 1.0f, 0.0f,
59 0.0f, -4.0f, -4.0f, 1.0f, 1.0f, 0.0f,
60 0.0f, 4.0f, -4.0f, -1.0f, 1.0f, 0.0f,
61 0.0f, -2.0f, -1.0f, 2.0f, 1.0f, 0.0f,
62 0.0f, 2.0f, -1.0f, -2.0f, 1.0f, 0.0f,
63 0.0f, 4.0f, 0.0f, -5.0f, 0.0f, 1.0f,
64 };
65
Giorgio Arenafe5ef382018-04-17 10:14:10 +010066 static const float imatrix4x4_5x5[] =
67 {
68 1.f, 0.f, -21.f / 4.f, 0.f, 21.f / 4.f, 0.f, -1.f, 0.f,
69 0.f, 1.f, 1.f, -17.f / 4.f, -17.f / 4.f, 1.f, 1.f, 0.f,
70 0.f, -1.f, 1.f, 17.f / 4.f, -17.f / 4.f, -1.f, 1.f, 0.f,
71 0.f, 1.f / 2.f, 1.f / 4.f, -5.f / 2.f, -5.f / 4.f, 2.f, 1.f, 0.f,
72 0.f, -1.f / 2.f, 1.f / 4.f, 5.f / 2.f, -5.f / 4.f, -2.f, 1.f, 0.f,
73 0.f, 2.f, 4.f, -5.f / 2.f, -5.f, 1.f / 2.f, 1.f, 0.f,
74 0.f, -2.f, 4.f, 5.f / 2.f, -5.f, -1.f / 2.f, 1.f, 0.f,
75 0.f, -1.f, 0.f, 21.f / 4.f, 0.f, -21.f / 4.f, 0.f, 1.f
76 };
77
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000078 // ------------------------------------------
79
80 // Winograd filter transform matrices
81 static const float fmatrix2x2_3x3[] =
82 {
83 1.0f, 0.0f, 0.0f,
84 0.5f, 0.5f, 0.5f,
85 0.5f, -0.5f, 0.5f,
86 0.0f, 0.0f, 1.0f
87 };
88
89 static const float fmatrix4x4_3x3[] =
90 {
91 0.25f, 0.0f, 0.0f,
92 -1.0f / 6.0f, -1.0f / 6.0f, -1.0f / 6.0f,
93 -1.0f / 6.0f, 1.0f / 6.0f, -1.0f / 6.0f,
94 1.0f / 24.0f, 1.0f / 12.0f, 1.0f / 6.0f,
95 1.0f / 24.0f, -1.0f / 12.0f, 1.0f / 6.0f,
96 0.0f, 0.0f, 1.0f
97 };
98
Giorgio Arena9373c8b2018-04-11 19:07:17 +010099 static const float fmatrix4x4_5x5[] =
100 {
101 1.0f, 0.0f, 0.0f, 0.0f, 0.0f,
102 -2.0f / 9.0f, -2.0f / 9.0f, -2.0f / 9.0f, -2.0f / 9.0f, -2.0f / 9.0f,
103 -2.0f / 9.0f, 2.0f / 9.0f, -2.0f / 9.0f, 2.0f / 9.0f, -2.0f / 9.0f,
104 1.0f / 90.0f, 1.0f / 45.0f, 2.0f / 45.0f, 4.0f / 45.0f, 8.0f / 45.0f,
105 1.0f / 90.0f, -1.0f / 45.0f, 2.0f / 45.0f, -4.0f / 45.0f, 8.0f / 45.0f,
106 4.0f / 45.0f, 2.0f / 45.0f, 1.0f / 45.0f, 1.0f / 90.0f, 1.0f / 180.0f,
107 4.0f / 45.0f, -2.0f / 45.0f, 1.0f / 45.0f, -1.0f / 90.0f, 1.0f / 180.0f,
108 0.0f, 0.0f, 0.0f, 0.0f, 1.0f
109
110 };
111
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000112 // ------------------------------------------
113
114 // Winograd output transform matrices
115 static const float omatrix2x2_3x3[] =
116 {
117 1.0f, 1.0f, 1.0f, 0.0f,
118 0.0f, 1.0f, -1.0f, -1.0f
119 };
120
121 static const float omatrix4x4_3x3[] =
122 {
123 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 0.0f,
124 0.0f, 1.0f, -1.0f, 2.0f, -2.0f, 0.0f,
125 0.0f, 1.0f, 1.0f, 4.0f, 4.0f, 0.0f,
126 0.0f, 1.0f, -1.0f, 8.0f, -8.0f, 1.0f
127 };
128
Giorgio Arenadd038702018-04-16 11:20:11 +0100129 static const float omatrix4x4_5x5[] =
130 {
131 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 8.0f, 8.0f, 0.0f,
132 0.0f, 1.0f, -1.0f, 2.0f, -2.0f, 4.0f, -4.0f, 0.0f,
133 0.0f, 1.0f, 1.0f, 4.0f, 4.0f, 2.0f, 2.0f, 0.0f,
134 0.0f, 1.0f, -1.0f, 8.0f, -8.0f, 1.0f, -1.0f, 1.0f
135 };
136
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000137 // ------------------------------------------
138
139 using WinogradKey = std::tuple<std::pair<int, int>, std::pair<int, int>, WinogradTransformType>;
140
141 // Key = (Output tile size, Kernel size, Winograd transform type)
142 static std::map<WinogradKey, const float *> matrix_map =
143 {
144 { WinogradKey(std::pair<int, int>(2, 2), std::pair<int, int>(3, 3), WinogradTransformType::INPUT), imatrix2x2_3x3 },
145 { WinogradKey(std::pair<int, int>(4, 4), std::pair<int, int>(3, 3), WinogradTransformType::INPUT), imatrix4x4_3x3 },
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100146 { WinogradKey(std::pair<int, int>(2, 1), std::pair<int, int>(3, 1), WinogradTransformType::INPUT), imatrix2x2_3x3 },
147 { WinogradKey(std::pair<int, int>(4, 1), std::pair<int, int>(3, 1), WinogradTransformType::INPUT), imatrix4x4_3x3 },
148 { WinogradKey(std::pair<int, int>(1, 2), std::pair<int, int>(1, 3), WinogradTransformType::INPUT), imatrix2x2_3x3 },
149 { WinogradKey(std::pair<int, int>(1, 4), std::pair<int, int>(1, 3), WinogradTransformType::INPUT), imatrix4x4_3x3 },
Giorgio Arenafe5ef382018-04-17 10:14:10 +0100150 { WinogradKey(std::pair<int, int>(4, 4), std::pair<int, int>(5, 5), WinogradTransformType::INPUT), imatrix4x4_5x5 },
Gian Marco Iodice876be2a2018-07-03 12:22:09 +0100151 { WinogradKey(std::pair<int, int>(4, 1), std::pair<int, int>(5, 1), WinogradTransformType::INPUT), imatrix4x4_5x5 },
152 { WinogradKey(std::pair<int, int>(1, 4), std::pair<int, int>(1, 5), WinogradTransformType::INPUT), imatrix4x4_5x5 },
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000153 { WinogradKey(std::pair<int, int>(2, 2), std::pair<int, int>(3, 3), WinogradTransformType::FILTER), fmatrix2x2_3x3 },
154 { WinogradKey(std::pair<int, int>(4, 4), std::pair<int, int>(3, 3), WinogradTransformType::FILTER), fmatrix4x4_3x3 },
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100155 { WinogradKey(std::pair<int, int>(2, 1), std::pair<int, int>(3, 1), WinogradTransformType::FILTER), fmatrix2x2_3x3 },
156 { WinogradKey(std::pair<int, int>(4, 1), std::pair<int, int>(3, 1), WinogradTransformType::FILTER), fmatrix4x4_3x3 },
157 { WinogradKey(std::pair<int, int>(1, 2), std::pair<int, int>(1, 3), WinogradTransformType::FILTER), fmatrix2x2_3x3 },
158 { WinogradKey(std::pair<int, int>(1, 4), std::pair<int, int>(1, 3), WinogradTransformType::FILTER), fmatrix4x4_3x3 },
Giorgio Arena9373c8b2018-04-11 19:07:17 +0100159 { WinogradKey(std::pair<int, int>(4, 4), std::pair<int, int>(5, 5), WinogradTransformType::FILTER), fmatrix4x4_5x5 },
Gian Marco Iodice876be2a2018-07-03 12:22:09 +0100160 { WinogradKey(std::pair<int, int>(4, 1), std::pair<int, int>(5, 1), WinogradTransformType::FILTER), fmatrix4x4_5x5 },
161 { WinogradKey(std::pair<int, int>(1, 4), std::pair<int, int>(1, 5), WinogradTransformType::FILTER), fmatrix4x4_5x5 },
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000162 { WinogradKey(std::pair<int, int>(2, 2), std::pair<int, int>(3, 3), WinogradTransformType::OUTPUT), omatrix2x2_3x3 },
163 { WinogradKey(std::pair<int, int>(4, 4), std::pair<int, int>(3, 3), WinogradTransformType::OUTPUT), omatrix4x4_3x3 },
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100164 { WinogradKey(std::pair<int, int>(2, 1), std::pair<int, int>(3, 1), WinogradTransformType::OUTPUT), omatrix2x2_3x3 },
165 { WinogradKey(std::pair<int, int>(4, 1), std::pair<int, int>(3, 1), WinogradTransformType::OUTPUT), omatrix4x4_3x3 },
166 { WinogradKey(std::pair<int, int>(1, 2), std::pair<int, int>(1, 3), WinogradTransformType::OUTPUT), omatrix2x2_3x3 },
167 { WinogradKey(std::pair<int, int>(1, 4), std::pair<int, int>(1, 3), WinogradTransformType::OUTPUT), omatrix4x4_3x3 },
Giorgio Arenadd038702018-04-16 11:20:11 +0100168 { WinogradKey(std::pair<int, int>(4, 4), std::pair<int, int>(5, 5), WinogradTransformType::OUTPUT), omatrix4x4_5x5 },
Gian Marco Iodice876be2a2018-07-03 12:22:09 +0100169 { WinogradKey(std::pair<int, int>(4, 1), std::pair<int, int>(5, 1), WinogradTransformType::OUTPUT), omatrix4x4_5x5 },
170 { WinogradKey(std::pair<int, int>(1, 4), std::pair<int, int>(1, 5), WinogradTransformType::OUTPUT), omatrix4x4_5x5 },
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000171 };
172
Giorgio Arena9373c8b2018-04-11 19:07:17 +0100173 // Find transformation matrix
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000174 std::map<WinogradKey, const float *>::iterator it;
175
176 it = matrix_map.find(WinogradKey(std::pair<int, int>(output_tile_size.width, output_tile_size.height),
177 std::pair<int, int>(kernel_size.width, kernel_size.height),
178 winograd_transform_type));
179
180 float const *matrix_values = nullptr;
181 if(it != matrix_map.end())
182 {
183 // Get matrix pointer
184 matrix_values = it->second;
Giorgio Arena2d9de0a2018-03-15 17:58:20 +0000185 }
186 else
187 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000188 ARM_COMPUTE_ERROR("Winograd configuration not supported");
Giorgio Arena2d9de0a2018-03-15 17:58:20 +0000189 }
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000190
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000191 // Copy values
192 std::copy(&matrix_values[0], &matrix_values[0] + src.num_elements(), &src[0]);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000193}
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000194} // namespace
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000195
196template <typename T>
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100197void print_tile(SimpleTensor<T> &in)
198{
199 for(int y = 0; y < in.shape()[1]; y++)
200 {
201 for(int x = 0; x < in.shape()[0]; x++)
202 {
203 std::cout << in[x + y * in.shape()[0]] << " ";
204 }
205
206 std::cout << std::endl;
207 }
208}
209
210template <typename T>
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000211SimpleTensor<T> winograd_input_transform(const SimpleTensor<T> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000212{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000213 ARM_COMPUTE_ERROR_ON(in.data_layout() != DataLayout::NCHW);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000214
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000215 const PadStrideInfo conv_info = winograd_info.convolution_info;
216 const Size2D output_tile_size = winograd_info.output_tile_size;
217 const Size2D kernel_size = winograd_info.kernel_size;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000218
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000219 SimpleTensor<T> out{ output_shape, in.data_type() };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000220
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000221 // Calculate dimensions for the tile
222 const unsigned int tile_w = output_tile_size.width + kernel_size.width - 1;
223 const unsigned int tile_h = output_tile_size.height + kernel_size.height - 1;
224
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100225 // Get the maximum dimension from the tile size
226 const unsigned int tile_max_dim = std::max(tile_w, tile_h);
227
228 TensorShape tile_dims(tile_max_dim, tile_max_dim);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000229
230 // Simple tensor for the input tile
231 SimpleTensor<T> src_tile{ tile_dims, in.data_type() };
232
233 // Simple tensor for the temporary tile
234 SimpleTensor<T> tmp_tile{ tile_dims, in.data_type() };
235
236 // Simple tensor for the output tile
237 SimpleTensor<T> dst_tile{ tile_dims, in.data_type() };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000238
239 // Simple tensor for the transformation matrix
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000240 SimpleTensor<T> matrix{ tile_dims, in.data_type() };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000241
242 // Simple tensor for the transformation matrix transposed
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000243 SimpleTensor<T> matrix_transposed{ tile_dims, in.data_type() };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000244
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000245 // Initialize matrix for the input transform
246 initialize_matrix_transform(matrix, output_tile_size, kernel_size, WinogradTransformType::INPUT);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000247
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000248 // Transpose matrix
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000249 transpose_matrix(matrix, matrix_transposed);
250
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000251 const int in_w = in.shape().x();
252 const int in_h = in.shape().y();
253 const int in_d = in.shape().z();
254 const int out_d = out.shape().z();
255 const int num_batches = in.shape().total_size() / (in_w * in_h * in_d);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000256 const int step_x = output_tile_size.width;
257 const int step_y = output_tile_size.height;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000258
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100259 // Compute the number of output tiles along the x and y direction of size "output_tile_size"
260 const Size2D num_tiles = compute_winograd_convolution_tiles(Size2D(in_w, in_h),
261 kernel_size,
262 output_tile_size,
263 conv_info);
264
265 const int num_tiles_x = num_tiles.width;
266 const int num_tiles_y = num_tiles.height;
267
268 // In case of 1D convolution, the input tile has to be partially filled with zeros
269 int start_x_zero = 0;
270 int start_y_zero = 0;
271 int end_x_zero = 0;
272 int end_y_zero = 0;
273
274 if(output_tile_size.width == 1)
275 {
276 start_x_zero = 1;
277 start_y_zero = 0;
278 end_x_zero = tile_max_dim - 1;
279 end_y_zero = tile_max_dim;
280 }
281 else if(output_tile_size.height == 1)
282 {
283 start_x_zero = 0;
284 start_y_zero = 1;
285 end_x_zero = tile_max_dim;
286 end_y_zero = tile_max_dim - 1;
287 }
288
289 // Set the anchor and shape of the zeros area
290 const Coordinates anchor_zeros(start_x_zero, start_y_zero);
291 const TensorShape shape_zeros(end_x_zero, end_y_zero);
292
293 // If we have a vertical filter (i.e. 1x3, 1x5,..), we need to take the elements along the y direction (step = width of the output tile)
294 const int step_y_transf_tile = kernel_size.width == 1 ? tile_max_dim : 1;
295
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000296 ARM_COMPUTE_ERROR_ON((num_tiles_x * num_tiles_y) != static_cast<int>(out.shape().y()));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000297
298 for(int b = 0; b < num_batches; ++b)
299 {
300 for(int z = 0; z < in_d; ++z)
301 {
302 for(int y = 0; y < num_tiles_y; ++y)
303 {
304 for(int x = 0; x < num_tiles_x; ++x)
305 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000306 int xi = x * step_x - conv_info.pad_left();
307 int yi = y * step_y - conv_info.pad_top();
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000308
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000309 // Get the tile from the input tensor
310 get_tile(in, src_tile, Coordinates(xi, yi, z, b));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000311
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100312 // Fill partially with zeros in case of 1D convolution
313 zeros(src_tile, anchor_zeros, shape_zeros);
314
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000315 // Compute the transformation
316 matrix_multiply(matrix, src_tile, tmp_tile);
317 matrix_multiply(tmp_tile, matrix_transposed, dst_tile);
318
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000319 // Store the output tile across the channels
320 for(int i = 0; i < out_d; ++i)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000321 {
322 int xo = z;
323 int yo = x + y * num_tiles_x;
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100324 out[coords2index(out.shape(), Coordinates(xo, yo, i, b))] = dst_tile[i * step_y_transf_tile];
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000325 }
326 }
327 }
328 }
329 }
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000330
331 return out;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000332}
333
334template <typename T>
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000335SimpleTensor<T> winograd_filter_transform(const SimpleTensor<T> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000336{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000337 ARM_COMPUTE_ERROR_ON_MSG(in.data_layout() != DataLayout::NCHW, "Only supported NCHW data format");
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000338
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000339 // Create reference
340 SimpleTensor<T> out{ output_shape, in.data_type(), 1 };
341
342 const Size2D output_tile_size = winograd_info.output_tile_size;
343 const Size2D kernel_size = winograd_info.kernel_size;
344
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000345 // Calculate dimensions for the tile
346 const unsigned int input_tile_w = output_tile_size.width + kernel_size.width - 1;
347 const unsigned int input_tile_h = output_tile_size.height + kernel_size.height - 1;
348 const unsigned int input_tile_area = input_tile_w * input_tile_h;
349
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100350 // Get the maximum dimension from the filter size
351 const unsigned int kernel_max_dim = std::max(kernel_size.width, kernel_size.height);
352
353 // Get the maximum dimension from the input tile
354 const unsigned int input_tile_max_dim = std::max(input_tile_w, input_tile_h);
355
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000356 // Simple tensor for the input tile
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100357 SimpleTensor<T> input_tile{ TensorShape(kernel_max_dim, kernel_max_dim), in.data_type(), 1 };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000358
359 // Simple tensor for the transformation matrix
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100360 SimpleTensor<T> trans_matrix{ TensorShape(kernel_max_dim, input_tile_max_dim), in.data_type(), 1 };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000361
362 // Simple tensor for the transformation matrix transpose
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100363 SimpleTensor<T> trans_matrix_transposed{ TensorShape(input_tile_max_dim, kernel_max_dim), in.data_type(), 1 };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000364
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000365 // Simple tensor for the temporary tile
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100366 SimpleTensor<T> tmp_tile{ TensorShape(kernel_max_dim, input_tile_max_dim), in.data_type(), 1 };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000367
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000368 // Simple tensor for the output tile
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100369 SimpleTensor<T> transf_tile{ TensorShape(input_tile_max_dim, input_tile_max_dim), in.data_type(), 1 };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000370
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000371 // Initialize matrix for the filter transform
372 initialize_matrix_transform(trans_matrix, output_tile_size, kernel_size, WinogradTransformType::FILTER);
373
374 // Transpose the transformation matrix
375 transpose_matrix(trans_matrix, trans_matrix_transposed);
376
377 const int num_channels = in.shape()[2];
378 const int num_filters = in.shape()[3];
379 const int num_batches = in.shape().total_size() / (kernel_size.area() * num_channels * num_filters);
380
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100381 // If we have a vertical filter (i.e. 1x3, 1x5,..), we need to take the elements along the y direction (step_y_transf_tile = width of the output tile)
382 const int step_y_transf_tile = kernel_size.width == 1 ? input_tile_max_dim : 1;
383
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000384 for(int n = 0; n < num_batches; ++n)
385 {
386 for(int w = 0; w < num_filters; ++w)
387 {
388 for(int z = 0; z < num_channels; ++z)
389 {
390 // Load the tile from the input tensor
391 get_tile(in, input_tile, Coordinates(0, 0, z, w, n));
392
393 // First transformation
394 matrix_multiply(trans_matrix, input_tile, tmp_tile);
395
396 // Second transformation
397 matrix_multiply(tmp_tile, trans_matrix_transposed, transf_tile);
398
399 // Store the output tile across the channels
400 const int output_offset = w + z * num_filters;
401
402 // Store the values across the channels
403 for(unsigned int i = 0; i < input_tile_area; ++i)
404 {
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100405 out[output_offset + i * num_filters * num_channels] = transf_tile[i * step_y_transf_tile];
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000406 }
407 }
408 }
409 }
410
411 return out;
412}
413
414template <typename T>
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +0100415SimpleTensor<T> winograd_output_transform(const SimpleTensor<T> &in, const SimpleTensor<T> &b, const TensorShape &output_shape, const WinogradInfo &winograd_info)
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000416{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000417 const PadStrideInfo conv_info = winograd_info.convolution_info;
418 const Size2D input_dimensions = winograd_info.input_dimensions;
419 const Size2D output_tile_size = winograd_info.output_tile_size;
420 const Size2D kernel_size = winograd_info.kernel_size;
421
422 // Create reference
423 SimpleTensor<T> out{ output_shape, in.data_type(), 1 };
424
425 // Calculate dimensions for the tiles
426 const unsigned int in_tile_w = output_tile_size.width + kernel_size.width - 1;
427 const unsigned int in_tile_h = output_tile_size.height + kernel_size.height - 1;
428 const unsigned int out_tile_w = output_tile_size.width;
429 const unsigned int out_tile_h = output_tile_size.height;
430
431 ARM_COMPUTE_ERROR_ON(in.shape()[2] != (in_tile_w * in_tile_h));
Giorgio Arena3695f9a2018-04-23 17:41:22 +0100432 ARM_COMPUTE_ERROR_ON(in.shape()[0] != out.shape()[get_data_layout_dimension_index(winograd_info.output_data_layout, DataLayoutDimension::CHANNEL)]);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000433
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100434 // Get the maximum dimension from the tile size
435 const unsigned int in_tile_max_dim = std::max(in_tile_w, in_tile_h);
436 const unsigned int out_tile_max_dim = std::max(output_tile_size.width, output_tile_size.height);
437
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000438 // Compute tile dimensions
439 // Input tile dimensions
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100440 TensorShape in_tile_dims(in_tile_max_dim, in_tile_max_dim);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000441
442 // Output tile dimensions
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100443 TensorShape out_tile_dims(out_tile_max_dim, out_tile_max_dim);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000444
445 // Transformation matrix dimensions
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100446 TensorShape tr_tile_dims(in_tile_max_dim, out_tile_max_dim);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000447
448 // Create tensors
449 // Simple tensor for the input tile
450 SimpleTensor<T> input_tile{ in_tile_dims, in.data_type(), 1 };
451
452 // Simple tensor for the transformation matrix
453 SimpleTensor<T> trans_matrix{ tr_tile_dims, in.data_type(), 1 };
454
455 // Simple tensor for the transformation matrix transpose
456 SimpleTensor<T> trans_matrix_transposed{ TensorShape(tr_tile_dims[1], tr_tile_dims[0]), in.data_type(), 1 };
457
458 // Simple tensor for the temporary tile
459 SimpleTensor<T> tmp_tile{ tr_tile_dims, in.data_type(), 1 };
460
461 // Simple tensor for the output tile
462 SimpleTensor<T> output_tile{ out_tile_dims, in.data_type(), 1 };
463
464 // Initialize matrix for the output transform
465 initialize_matrix_transform(trans_matrix, output_tile_size, kernel_size, WinogradTransformType::OUTPUT);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000466
467 // Transpose the transformation matrix
468 transpose_matrix(trans_matrix, trans_matrix_transposed);
469
470 const int w_in = in.shape()[0];
471 const int h_in = in.shape()[1];
472 const int c_in = in.shape()[2];
473 const int w_out = out.shape()[0];
474 const int h_out = out.shape()[1];
475 const int c_out = out.shape()[2];
476 const int num_batches = in.shape().total_size() / (w_in * h_in * c_in);
477
478 // Input strides
479 const int stridey_in = w_in;
480 const int stridez_in = stridey_in * h_in;
481 const int stridew_in = stridez_in * c_in;
482
483 // Output strides
484 const int stridey_out = w_out;
485 const int stridez_out = stridey_out * h_out;
486 const int stridew_out = stridez_out * c_out;
487
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100488 // Compute the number of output tiles along the x and y direction of size "output_tile_size"
489 const Size2D num_tiles = compute_winograd_convolution_tiles(Size2D(input_dimensions.width, input_dimensions.height),
490 kernel_size,
491 output_tile_size,
492 conv_info);
493
494 const int num_tiles_x = num_tiles.width;
495 const int num_tiles_y = num_tiles.height;
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000496
497 ARM_COMPUTE_UNUSED(num_tiles_y);
498 ARM_COMPUTE_ERROR_ON(in.shape()[1] != static_cast<unsigned int>(num_tiles_x * num_tiles_y));
499
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100500 // If we have a vertical filter (i.e. 1x3, 1x5,..), we still need to take the elements along the x direction (step_y_transf_tile = 1)
501 const int step_y_transf_tile = kernel_size.width == 1 ? 1 : output_tile.shape()[0];
502
503 // Initialize with zeros the input tile
504 zeros(input_tile, Coordinates(0, 0), input_tile.shape());
505
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000506 for(int n = 0; n < num_batches; ++n)
507 {
508 for(int y = 0; y < h_in; ++y)
509 {
510 for(int x = 0; x < w_in; ++x)
511 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000512 // Load the input tile tile across the channels of the input tensor
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000513 for(int z = 0; z < c_in; ++z)
514 {
515 input_tile[z] = in[x + (y * stridey_in) + (z * stridez_in) + (n * stridew_in)];
516 }
517
518 // First transformation
519 matrix_multiply(trans_matrix, input_tile, tmp_tile);
520
521 // Second transformation
522 matrix_multiply(tmp_tile, trans_matrix_transposed, output_tile);
523
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000524 // Store the output tile
525 const int xo = (y % num_tiles_x) * out_tile_w;
526 const int yo = (y / num_tiles_x) * out_tile_h;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000527 const int zo = x;
528
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000529 const int output_offset = xo + (yo * stridey_out) + (zo * stridez_out) + (n * stridew_out);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000530
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000531 for(int yi = 0; yi < static_cast<int>(out_tile_h); ++yi)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000532 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000533 for(int xi = 0; xi < static_cast<int>(out_tile_w); ++xi)
534 {
535 // Check out-of-bound writes
536 if((xo + xi < w_out) && (yo + yi < h_out))
537 {
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100538 out[output_offset + yi * stridey_out + xi] = output_tile[xi + yi * step_y_transf_tile];
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +0100539
540 // Add bias
541 out[output_offset + yi * stridey_out + xi] += b[zo];
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000542 }
543 }
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000544 }
545 }
546 }
547 }
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000548
549 return out;
550}
551
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000552template SimpleTensor<float> winograd_filter_transform(const SimpleTensor<float> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info);
553template SimpleTensor<float> winograd_input_transform(const SimpleTensor<float> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info);
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +0100554template SimpleTensor<float> winograd_output_transform(const SimpleTensor<float> &in, const SimpleTensor<float> &b, const TensorShape &output_shape, const WinogradInfo &winograd_info);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000555} // namespace reference
556} // namespace validation
557} // namespace test
558} // namespace arm_compute