blob: 3c2c11d6323a73d0bc5253091bd1c1d17fa459ba [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 Iodice247f52c2018-03-22 11:24:56 +0000197SimpleTensor<T> winograd_input_transform(const SimpleTensor<T> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000198{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000199 ARM_COMPUTE_ERROR_ON(in.data_layout() != DataLayout::NCHW);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000200
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000201 const PadStrideInfo conv_info = winograd_info.convolution_info;
202 const Size2D output_tile_size = winograd_info.output_tile_size;
203 const Size2D kernel_size = winograd_info.kernel_size;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000204
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000205 SimpleTensor<T> out{ output_shape, in.data_type() };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000206
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000207 // Calculate dimensions for the tile
208 const unsigned int tile_w = output_tile_size.width + kernel_size.width - 1;
209 const unsigned int tile_h = output_tile_size.height + kernel_size.height - 1;
210
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100211 // Get the maximum dimension from the tile size
212 const unsigned int tile_max_dim = std::max(tile_w, tile_h);
213
214 TensorShape tile_dims(tile_max_dim, tile_max_dim);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000215
216 // Simple tensor for the input tile
217 SimpleTensor<T> src_tile{ tile_dims, in.data_type() };
218
219 // Simple tensor for the temporary tile
220 SimpleTensor<T> tmp_tile{ tile_dims, in.data_type() };
221
222 // Simple tensor for the output tile
223 SimpleTensor<T> dst_tile{ tile_dims, in.data_type() };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000224
225 // Simple tensor for the transformation matrix
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000226 SimpleTensor<T> matrix{ tile_dims, in.data_type() };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000227
228 // Simple tensor for the transformation matrix transposed
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000229 SimpleTensor<T> matrix_transposed{ tile_dims, in.data_type() };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000230
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000231 // Initialize matrix for the input transform
232 initialize_matrix_transform(matrix, output_tile_size, kernel_size, WinogradTransformType::INPUT);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000233
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000234 // Transpose matrix
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100235 transpose_matrix<T>(matrix, matrix_transposed);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000236
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000237 const int in_w = in.shape().x();
238 const int in_h = in.shape().y();
239 const int in_d = in.shape().z();
240 const int out_d = out.shape().z();
241 const int num_batches = in.shape().total_size() / (in_w * in_h * in_d);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000242 const int step_x = output_tile_size.width;
243 const int step_y = output_tile_size.height;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000244
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100245 // Compute the number of output tiles along the x and y direction of size "output_tile_size"
246 const Size2D num_tiles = compute_winograd_convolution_tiles(Size2D(in_w, in_h),
247 kernel_size,
248 output_tile_size,
249 conv_info);
250
251 const int num_tiles_x = num_tiles.width;
252 const int num_tiles_y = num_tiles.height;
253
254 // In case of 1D convolution, the input tile has to be partially filled with zeros
255 int start_x_zero = 0;
256 int start_y_zero = 0;
257 int end_x_zero = 0;
258 int end_y_zero = 0;
259
260 if(output_tile_size.width == 1)
261 {
262 start_x_zero = 1;
263 start_y_zero = 0;
264 end_x_zero = tile_max_dim - 1;
265 end_y_zero = tile_max_dim;
266 }
267 else if(output_tile_size.height == 1)
268 {
269 start_x_zero = 0;
270 start_y_zero = 1;
271 end_x_zero = tile_max_dim;
272 end_y_zero = tile_max_dim - 1;
273 }
274
275 // Set the anchor and shape of the zeros area
276 const Coordinates anchor_zeros(start_x_zero, start_y_zero);
277 const TensorShape shape_zeros(end_x_zero, end_y_zero);
278
279 // 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)
280 const int step_y_transf_tile = kernel_size.width == 1 ? tile_max_dim : 1;
281
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000282 ARM_COMPUTE_ERROR_ON((num_tiles_x * num_tiles_y) != static_cast<int>(out.shape().y()));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000283
284 for(int b = 0; b < num_batches; ++b)
285 {
286 for(int z = 0; z < in_d; ++z)
287 {
288 for(int y = 0; y < num_tiles_y; ++y)
289 {
290 for(int x = 0; x < num_tiles_x; ++x)
291 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000292 int xi = x * step_x - conv_info.pad_left();
293 int yi = y * step_y - conv_info.pad_top();
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000294
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000295 // Get the tile from the input tensor
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100296 get_tile<T>(in, src_tile, Coordinates(xi, yi, z, b));
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000297
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100298 // Fill partially with zeros in case of 1D convolution
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100299 zeros<T>(src_tile, anchor_zeros, shape_zeros);
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100300
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000301 // Compute the transformation
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100302 matrix_multiply<T>(matrix, src_tile, tmp_tile);
303 matrix_multiply<T>(tmp_tile, matrix_transposed, dst_tile);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000304
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000305 // Store the output tile across the channels
306 for(int i = 0; i < out_d; ++i)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000307 {
308 int xo = z;
309 int yo = x + y * num_tiles_x;
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100310 out[coords2index(out.shape(), Coordinates(xo, yo, i, b))] = dst_tile[i * step_y_transf_tile];
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000311 }
312 }
313 }
314 }
315 }
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000316
317 return out;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000318}
319
320template <typename T>
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000321SimpleTensor<T> winograd_filter_transform(const SimpleTensor<T> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000322{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000323 ARM_COMPUTE_ERROR_ON_MSG(in.data_layout() != DataLayout::NCHW, "Only supported NCHW data format");
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000324
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000325 // Create reference
326 SimpleTensor<T> out{ output_shape, in.data_type(), 1 };
327
328 const Size2D output_tile_size = winograd_info.output_tile_size;
329 const Size2D kernel_size = winograd_info.kernel_size;
330
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000331 // Calculate dimensions for the tile
332 const unsigned int input_tile_w = output_tile_size.width + kernel_size.width - 1;
333 const unsigned int input_tile_h = output_tile_size.height + kernel_size.height - 1;
334 const unsigned int input_tile_area = input_tile_w * input_tile_h;
335
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100336 // Get the maximum dimension from the filter size
337 const unsigned int kernel_max_dim = std::max(kernel_size.width, kernel_size.height);
338
339 // Get the maximum dimension from the input tile
340 const unsigned int input_tile_max_dim = std::max(input_tile_w, input_tile_h);
341
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000342 // Simple tensor for the input tile
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100343 SimpleTensor<T> input_tile{ TensorShape(kernel_max_dim, kernel_max_dim), in.data_type(), 1 };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000344
345 // Simple tensor for the transformation matrix
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100346 SimpleTensor<T> trans_matrix{ TensorShape(kernel_max_dim, input_tile_max_dim), in.data_type(), 1 };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000347
348 // Simple tensor for the transformation matrix transpose
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100349 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 +0000350
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000351 // Simple tensor for the temporary tile
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100352 SimpleTensor<T> tmp_tile{ TensorShape(kernel_max_dim, input_tile_max_dim), in.data_type(), 1 };
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000353
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000354 // Simple tensor for the output tile
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100355 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 +0000356
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000357 // Initialize matrix for the filter transform
358 initialize_matrix_transform(trans_matrix, output_tile_size, kernel_size, WinogradTransformType::FILTER);
359
360 // Transpose the transformation matrix
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100361 transpose_matrix<T>(trans_matrix, trans_matrix_transposed);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000362
363 const int num_channels = in.shape()[2];
364 const int num_filters = in.shape()[3];
365 const int num_batches = in.shape().total_size() / (kernel_size.area() * num_channels * num_filters);
366
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100367 // 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)
368 const int step_y_transf_tile = kernel_size.width == 1 ? input_tile_max_dim : 1;
369
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000370 for(int n = 0; n < num_batches; ++n)
371 {
372 for(int w = 0; w < num_filters; ++w)
373 {
374 for(int z = 0; z < num_channels; ++z)
375 {
376 // Load the tile from the input tensor
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100377 get_tile<T>(in, input_tile, Coordinates(0, 0, z, w, n));
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000378
379 // First transformation
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100380 matrix_multiply<T>(trans_matrix, input_tile, tmp_tile);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000381
382 // Second transformation
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100383 matrix_multiply<T>(tmp_tile, trans_matrix_transposed, transf_tile);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000384
385 // Store the output tile across the channels
386 const int output_offset = w + z * num_filters;
387
388 // Store the values across the channels
389 for(unsigned int i = 0; i < input_tile_area; ++i)
390 {
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100391 out[output_offset + i * num_filters * num_channels] = transf_tile[i * step_y_transf_tile];
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000392 }
393 }
394 }
395 }
396
397 return out;
398}
399
400template <typename T>
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +0100401SimpleTensor<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 +0000402{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000403 const PadStrideInfo conv_info = winograd_info.convolution_info;
404 const Size2D input_dimensions = winograd_info.input_dimensions;
405 const Size2D output_tile_size = winograd_info.output_tile_size;
406 const Size2D kernel_size = winograd_info.kernel_size;
407
408 // Create reference
409 SimpleTensor<T> out{ output_shape, in.data_type(), 1 };
410
411 // Calculate dimensions for the tiles
412 const unsigned int in_tile_w = output_tile_size.width + kernel_size.width - 1;
413 const unsigned int in_tile_h = output_tile_size.height + kernel_size.height - 1;
414 const unsigned int out_tile_w = output_tile_size.width;
415 const unsigned int out_tile_h = output_tile_size.height;
416
417 ARM_COMPUTE_ERROR_ON(in.shape()[2] != (in_tile_w * in_tile_h));
Giorgio Arena3695f9a2018-04-23 17:41:22 +0100418 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 +0000419
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100420 // Get the maximum dimension from the tile size
421 const unsigned int in_tile_max_dim = std::max(in_tile_w, in_tile_h);
422 const unsigned int out_tile_max_dim = std::max(output_tile_size.width, output_tile_size.height);
423
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000424 // Compute tile dimensions
425 // Input tile dimensions
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100426 TensorShape in_tile_dims(in_tile_max_dim, in_tile_max_dim);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000427
428 // Output tile dimensions
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100429 TensorShape out_tile_dims(out_tile_max_dim, out_tile_max_dim);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000430
431 // Transformation matrix dimensions
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100432 TensorShape tr_tile_dims(in_tile_max_dim, out_tile_max_dim);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000433
434 // Create tensors
435 // Simple tensor for the input tile
436 SimpleTensor<T> input_tile{ in_tile_dims, in.data_type(), 1 };
437
438 // Simple tensor for the transformation matrix
439 SimpleTensor<T> trans_matrix{ tr_tile_dims, in.data_type(), 1 };
440
441 // Simple tensor for the transformation matrix transpose
442 SimpleTensor<T> trans_matrix_transposed{ TensorShape(tr_tile_dims[1], tr_tile_dims[0]), in.data_type(), 1 };
443
444 // Simple tensor for the temporary tile
445 SimpleTensor<T> tmp_tile{ tr_tile_dims, in.data_type(), 1 };
446
447 // Simple tensor for the output tile
448 SimpleTensor<T> output_tile{ out_tile_dims, in.data_type(), 1 };
449
450 // Initialize matrix for the output transform
451 initialize_matrix_transform(trans_matrix, output_tile_size, kernel_size, WinogradTransformType::OUTPUT);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000452
453 // Transpose the transformation matrix
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100454 transpose_matrix<T>(trans_matrix, trans_matrix_transposed);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000455
456 const int w_in = in.shape()[0];
457 const int h_in = in.shape()[1];
458 const int c_in = in.shape()[2];
459 const int w_out = out.shape()[0];
460 const int h_out = out.shape()[1];
461 const int c_out = out.shape()[2];
462 const int num_batches = in.shape().total_size() / (w_in * h_in * c_in);
463
464 // Input strides
465 const int stridey_in = w_in;
466 const int stridez_in = stridey_in * h_in;
467 const int stridew_in = stridez_in * c_in;
468
469 // Output strides
470 const int stridey_out = w_out;
471 const int stridez_out = stridey_out * h_out;
472 const int stridew_out = stridez_out * c_out;
473
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100474 // Compute the number of output tiles along the x and y direction of size "output_tile_size"
475 const Size2D num_tiles = compute_winograd_convolution_tiles(Size2D(input_dimensions.width, input_dimensions.height),
476 kernel_size,
477 output_tile_size,
478 conv_info);
479
480 const int num_tiles_x = num_tiles.width;
481 const int num_tiles_y = num_tiles.height;
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000482
483 ARM_COMPUTE_UNUSED(num_tiles_y);
484 ARM_COMPUTE_ERROR_ON(in.shape()[1] != static_cast<unsigned int>(num_tiles_x * num_tiles_y));
485
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100486 // 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)
487 const int step_y_transf_tile = kernel_size.width == 1 ? 1 : output_tile.shape()[0];
488
489 // Initialize with zeros the input tile
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100490 zeros<T>(input_tile, Coordinates(0, 0), input_tile.shape());
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100491
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000492 for(int n = 0; n < num_batches; ++n)
493 {
494 for(int y = 0; y < h_in; ++y)
495 {
496 for(int x = 0; x < w_in; ++x)
497 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000498 // Load the input tile tile across the channels of the input tensor
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000499 for(int z = 0; z < c_in; ++z)
500 {
501 input_tile[z] = in[x + (y * stridey_in) + (z * stridez_in) + (n * stridew_in)];
502 }
503
504 // First transformation
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100505 matrix_multiply<T>(trans_matrix, input_tile, tmp_tile);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000506
507 // Second transformation
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100508 matrix_multiply<T>(tmp_tile, trans_matrix_transposed, output_tile);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000509
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000510 // Store the output tile
511 const int xo = (y % num_tiles_x) * out_tile_w;
512 const int yo = (y / num_tiles_x) * out_tile_h;
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000513 const int zo = x;
514
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000515 const int output_offset = xo + (yo * stridey_out) + (zo * stridez_out) + (n * stridew_out);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000516
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000517 for(int yi = 0; yi < static_cast<int>(out_tile_h); ++yi)
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000518 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000519 for(int xi = 0; xi < static_cast<int>(out_tile_w); ++xi)
520 {
521 // Check out-of-bound writes
522 if((xo + xi < w_out) && (yo + yi < h_out))
523 {
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100524 out[output_offset + yi * stridey_out + xi] = output_tile[xi + yi * step_y_transf_tile];
Gian Marco Iodice2213d4b2018-04-27 10:39:06 +0100525
526 // Add bias
527 out[output_offset + yi * stridey_out + xi] += b[zo];
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000528 }
529 }
Gian Marco Iodiced2fab732018-03-02 11:18:12 +0000530 }
531 }
532 }
533 }
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000534
535 return out;
536}
537
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000538template SimpleTensor<float> winograd_filter_transform(const SimpleTensor<float> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info);
539template 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 +0100540template SimpleTensor<float> winograd_output_transform(const SimpleTensor<float> &in, const SimpleTensor<float> &b, const TensorShape &output_shape, const WinogradInfo &winograd_info);
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100541template SimpleTensor<half> winograd_filter_transform(const SimpleTensor<half> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info);
542template SimpleTensor<half> winograd_input_transform(const SimpleTensor<half> &in, const TensorShape &output_shape, const WinogradInfo &winograd_info);
543template SimpleTensor<half> winograd_output_transform(const SimpleTensor<half> &in, const SimpleTensor<half> &b, const TensorShape &output_shape, const WinogradInfo &winograd_info);
544
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000545} // namespace reference
546} // namespace validation
547} // namespace test
548} // namespace arm_compute