blob: 392edda615488854ff93b97648fd6bde777ba74a [file] [log] [blame]
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLWinogradInputTransformKernel.h"
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/Types.h"
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010033#include "arm_compute/core/Utils.h"
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/AccessWindowStatic.h"
36#include "src/core/CL/CLValidate.h"
37#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000039#include "support/StringSupport.h"
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000040
41using namespace arm_compute;
42
43namespace
44{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000045Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000046{
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010047 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16);
48 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000049
50 const PadStrideInfo conv_info = winograd_info.convolution_info;
51 const Size2D output_tile_size = winograd_info.output_tile_size;
52 const Size2D kernel_size = winograd_info.kernel_size;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000053 ARM_COMPUTE_RETURN_ERROR_ON_MSG(conv_info.stride().first != 1 || conv_info.stride().second != 1, "Winograd input transform only supports unit strides");
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010054 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!cl_winograd_convolution_layer_supported(output_tile_size, kernel_size, input->data_layout()), "Winograd input transform not supported");
55
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000056 ARM_COMPUTE_UNUSED(conv_info);
57 ARM_COMPUTE_UNUSED(output_tile_size);
58 ARM_COMPUTE_UNUSED(kernel_size);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000059
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000060 // Validate configured output
61 if(output->total_size() != 0)
62 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000063 const TensorShape output_shape = misc::shape_calculator::compute_winograd_input_transform_shape(*input, winograd_info);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000064
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000065 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), output_shape);
66 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
67 }
68
69 return Status{};
70}
71
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000072std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000073{
74 ARM_COMPUTE_UNUSED(output);
75 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000076
Giorgio Arena149fdf32018-07-04 17:03:33 +010077 bool window_changed = false;
78 Window win = calculate_max_window(*input, Steps(1, 1));
Giorgio Arenac42f28d2018-04-26 11:33:05 +010079
80 if(input->data_layout() == DataLayout::NCHW)
81 {
Giorgio Arena149fdf32018-07-04 17:03:33 +010082 const PadStrideInfo conv_info = winograd_info.convolution_info;
83 const Size2D output_tile_size = winograd_info.output_tile_size;
84 const Size2D kernel_size = winograd_info.kernel_size;
85
86 unsigned int num_elems_read_per_iteration_x = output_tile_size.width + kernel_size.width - 1;
87 unsigned int num_elems_read_per_iteration_y = output_tile_size.height + kernel_size.height - 1;
88
89 AccessWindowRectangle input_access(input, -conv_info.pad_left(), -conv_info.pad_top(), num_elems_read_per_iteration_x, num_elems_read_per_iteration_y);
90 window_changed = update_window_and_padding(win, input_access);
Giorgio Arenac42f28d2018-04-26 11:33:05 +010091 }
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000092
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +000093 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
94 return std::make_pair(err, win);
95}
96} // namespace
97
98CLWinogradInputTransformKernel::CLWinogradInputTransformKernel()
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +000099 : _border_size(0), _input(nullptr), _output(nullptr), _data_layout(DataLayout::UNKNOWN), _num_tiles_x(0), _num_tiles_y(0), _step_z(1)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000100{
101}
102
103BorderSize CLWinogradInputTransformKernel::border_size() const
104{
105 return _border_size;
106}
107
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000108void CLWinogradInputTransformKernel::configure(const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000109{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100110 configure(CLKernelLibrary::get().get_compile_context(), input, output, winograd_info);
111}
112
Manuel Bottini2803f702020-04-21 16:20:03 +0100113void CLWinogradInputTransformKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100114{
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000115 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000116 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), winograd_info));
117
SiCong Li04a07062020-11-17 14:09:01 +0000118 auto padding_info = get_padding_info({ input, output });
119
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000120 const PadStrideInfo conv_info = winograd_info.convolution_info;
121 const Size2D output_tile_size = winograd_info.output_tile_size;
122 const Size2D kernel_size = winograd_info.kernel_size;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000123
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000124 _data_layout = input->info()->data_layout();
125
126 const size_t idx_w = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
127 const size_t idx_h = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100128
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100129 // Compute the number of output tiles along the x and y direction of size "output_tile_size"
130 const Size2D num_tiles = compute_winograd_convolution_tiles(Size2D(input->info()->dimension(idx_w), input->info()->dimension(idx_h)),
131 kernel_size,
132 output_tile_size,
133 conv_info);
134
135 _input = input;
136 _output = output;
137 _num_tiles_x = num_tiles.width;
138 _num_tiles_y = num_tiles.height;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000139
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000140 const TensorShape output_shape = misc::shape_calculator::compute_winograd_input_transform_shape(*input->info(), winograd_info);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000141
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000142 // Output auto initialization if not yet initialized
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000143 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(output_shape));
144
145 ARM_COMPUTE_ERROR_ON(_num_tiles_x * _num_tiles_y != static_cast<int>(output->info()->dimension(1)));
Georgios Pinitasffb57a02018-10-29 18:01:52 +0000146 const size_t total_batches = input->info()->tensor_shape().total_size_upper(3);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000147
148 CLBuildOptions build_opts;
149 build_opts.add_option("-DNUM_TILES_X=" + support::cpp11::to_string(_num_tiles_x));
150 build_opts.add_option("-DPAD_LEFT=" + support::cpp11::to_string(conv_info.pad_left()));
151 build_opts.add_option("-DPAD_TOP=" + support::cpp11::to_string(conv_info.pad_top()));
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100152 build_opts.add_option("-DOUTPUT_TILE_W=" + support::cpp11::to_string(output_tile_size.width));
153 build_opts.add_option("-DOUTPUT_TILE_H=" + support::cpp11::to_string(output_tile_size.height));
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100154 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100155 build_opts.add_option_if(winograd_info.kernel_size.height == 1, "-DWINOGRAD_INPUT_TRANSFORM_HORIZONTAL");
156 build_opts.add_option_if(winograd_info.kernel_size.width == 1, "-DWINOGRAD_INPUT_TRANSFORM_VERTICAL");
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000157 if(_data_layout == DataLayout::NHWC)
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100158 {
Georgios Pinitasffb57a02018-10-29 18:01:52 +0000159 build_opts.add_option_if(total_batches > 1, "-DNUM_TILES_Y=" + support::cpp11::to_string(_num_tiles_y));
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100160 build_opts.add_option("-DSRC_DIM_1=" + support::cpp11::to_string(_input->info()->dimension(1)));
161 build_opts.add_option("-DSRC_DIM_2=" + support::cpp11::to_string(_input->info()->dimension(2)));
162 }
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100163 else
164 {
Georgios Pinitasffb57a02018-10-29 18:01:52 +0000165 build_opts.add_option_if(total_batches > 1, "-DSRC_DEPTH=" + support::cpp11::to_string(_input->info()->dimension(2)));
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100166 }
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100167
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000168 // Create kernel
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000169 std::string kernel_name = "winograd_input_transform_" + output_tile_size.to_string() + "_" + kernel_size.to_string();
170
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100171 // Get the maximum dimension from the tile size
172 const unsigned int tile_max_dim = std::max(output_tile_size.width, output_tile_size.height);
173
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000174 // Check optimized kernel if output_dims == 2x2
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000175 if((tile_max_dim == 2) && (_data_layout == DataLayout::NCHW))
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000176 {
Gian Marco Iodicee52a3002018-04-11 15:59:10 +0100177 _step_z = (_input->info()->dimension(2) % 2) != 0 ? 1 : 2;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000178 }
179
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000180 // Append stepz and data layout
181 kernel_name += "_stepz";
182 kernel_name += support::cpp11::to_string(_step_z);
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000183 kernel_name += "_" + lower_string(string_from_data_layout(_data_layout));
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000184
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100185 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000186
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000187 // Create window and update padding
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000188 auto win_config = validate_and_configure_window(input->info(), output->info(), winograd_info);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000189 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100190 ICLKernel::configure_internal(win_config.second, cl::NDRange(1, 1, 8));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000191
Giorgio Arena2567adf2020-12-14 10:50:50 +0000192 _border_size = BorderSize(_input->info()->padding());
193
SiCong Li04a07062020-11-17 14:09:01 +0000194 ARM_COMPUTE_ERROR_ON((input->info()->data_layout() == DataLayout::NHWC) && has_padding_changed(padding_info));
195
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000196 _config_id = kernel_name;
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000197 _config_id += support::cpp11::to_string(input->info()->dimension(0));
198 _config_id += "_";
199 _config_id += support::cpp11::to_string(input->info()->dimension(1));
200 _config_id += "_";
201 _config_id += support::cpp11::to_string(input->info()->dimension(2));
202 _config_id += "_";
203 _config_id += support::cpp11::to_string(conv_info.pad_left());
204 _config_id += "_";
205 _config_id += support::cpp11::to_string(conv_info.pad_top());
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100206 _config_id += "_";
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000207 _config_id += lower_string(string_from_data_layout(_data_layout));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000208}
209
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000210Status CLWinogradInputTransformKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000211{
212 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000213 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, winograd_info));
214 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(), winograd_info).first);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000215
216 return Status{};
217}
218
219void CLWinogradInputTransformKernel::run(const Window &window, cl::CommandQueue &queue)
220{
221 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
222 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IKernel::window(), window);
223
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000224 const size_t idx_w = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::WIDTH);
225 const size_t idx_h = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::HEIGHT);
226 const size_t idx_c = get_data_layout_dimension_index(_data_layout, DataLayoutDimension::CHANNEL);
227 const size_t total_batches = window.shape().total_size_upper(3);
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000228
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100229 // Collapse window
230 Window window_collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
231
232 Window slice = window_collapsed.first_slice_window_3D();
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100233 slice.set(idx_w, Window::Dimension(0, _num_tiles_x, 1));
234 slice.set(idx_h, Window::Dimension(0, _num_tiles_y, 1));
Georgios Pinitas7fdcfb12020-01-09 16:45:46 +0000235 if(_data_layout == DataLayout::NHWC)
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100236 {
237 slice.set(idx_h, Window::Dimension(0, _num_tiles_y * total_batches, 1));
238 }
Giorgio Arenac42f28d2018-04-26 11:33:05 +0100239
240 ARM_COMPUTE_ERROR_ON(((slice[idx_c].end() - slice[idx_c].start()) % _step_z) != 0);
241 slice.set(idx_c, Window::Dimension(slice[idx_c].start(), slice[idx_c].end(), _step_z));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000242
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100243 unsigned int idx = 2 * num_arguments_per_3D_tensor();
244 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_input->info()->strides_in_bytes()[3]));
245 _kernel.setArg<cl_uint>(idx++, static_cast<unsigned int>(_output->info()->strides_in_bytes()[3]));
246
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000247 do
248 {
249 unsigned int idx = 0;
250 add_3D_tensor_argument(idx, _input, slice);
251 add_3D_tensor_argument(idx, _output, slice);
252
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100253 enqueue(queue, *this, slice, lws_hint());
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000254 }
Georgios Pinitasc55beee2018-10-23 15:23:23 +0100255 while(window_collapsed.slide_window_slice_3D(slice));
Giorgio Arena1f9ca1d2018-03-01 11:13:45 +0000256}