blob: 7fab2082216d7eb2684727b2e6baa6eef8bdad9c [file] [log] [blame]
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +00001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2018-2020 Arm Limited.
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +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#include "arm_compute/core/CL/kernels/CLWinogradFilterTransformKernel.h"
25
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000026#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000027#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/IAccessWindow.h"
31#include "arm_compute/core/TensorInfo.h"
32#include "arm_compute/core/Types.h"
33#include "arm_compute/core/Utils.h"
34#include "arm_compute/core/Validate.h"
35#include "arm_compute/core/Window.h"
36#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010037#include "src/core/AccessWindowStatic.h"
38#include "src/core/CL/CLValidate.h"
39#include "src/core/helpers/AutoConfiguration.h"
40#include "src/core/helpers/WindowHelpers.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000041
Matthew Bentham758b5ba2020-03-05 23:37:48 +000042#include "support/StringSupport.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000043
44using namespace arm_compute;
45using namespace arm_compute::misc::shape_calculator;
46
47namespace
48{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000049Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000050{
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010051 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16);
52 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000053
54 const Size2D kernel_size = winograd_info.kernel_size;
55 const Size2D output_tile_size = winograd_info.output_tile_size;
56
57 const size_t idx_w = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
58 const size_t idx_h = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
59
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010060 ARM_COMPUTE_RETURN_ERROR_ON_MSG(!cl_winograd_convolution_layer_supported(output_tile_size, kernel_size, input->data_layout()), "Winograd filter transform not supported");
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000061 ARM_COMPUTE_RETURN_ERROR_ON(input->dimension(idx_w) != kernel_size.width || input->dimension(idx_h) != kernel_size.height);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000062 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
63
64 // Checks performed when output is configured
65 if(output->total_size() != 0)
66 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000067 const TensorInfo tensor_info_output = input->clone()->set_tensor_shape(compute_winograd_filter_transform_shape(*input, winograd_info));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000068
69 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
70 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
71 }
72
73 return Status{};
74}
75
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000076std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000077{
78 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
79
Giorgio Arenadcb5b282018-04-25 12:07:29 +010080 const unsigned int num_elems_processed_per_iteration_x = input->data_layout() == DataLayout::NCHW ? input->dimension(0) : 1;
81 const unsigned int num_elems_processed_per_iteration_y = input->dimension(1);
82 const unsigned int num_elems_read_per_iteration_z = input->data_layout() == DataLayout::NCHW ? 1 : input->dimension(2);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000083
Giorgio Arenadcb5b282018-04-25 12:07:29 +010084 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y, num_elems_read_per_iteration_z));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000085 bool window_changed = false;
86
87 AccessWindowRectangle input_access(input, 0, 0, num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y);
88 AccessWindowStatic output_access(output, 0, 0, output->dimension(0), output->dimension(1));
89 window_changed = update_window_and_padding(win, input_access, output_access);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000090 output_access.set_valid_region(win, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000091
92 Window win_collapsed = win.collapse(win, Window::DimZ);
93
94 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
95 return std::make_pair(err, win_collapsed);
96}
97} // namespace
98
99CLWinogradFilterTransformKernel::CLWinogradFilterTransformKernel()
100 : _input(nullptr), _output(nullptr)
101{
102}
103
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000104void CLWinogradFilterTransformKernel::configure(const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000105{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100106 configure(CLKernelLibrary::get().get_compile_context(), input, output, winograd_info);
107}
108
Manuel Bottini2803f702020-04-21 16:20:03 +0100109void CLWinogradFilterTransformKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100110{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000111 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
112
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000113 // Output auto initialization if not yet initialized
114 auto_init_if_empty(*output->info(), input->info()->clone()->set_tensor_shape(compute_winograd_filter_transform_shape(*input->info(), winograd_info)));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000115
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000116 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), winograd_info));
117
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000118 // Set build options
119 CLBuildOptions build_opts;
Giorgio Arenadcb5b282018-04-25 12:07:29 +0100120 build_opts.add_option("-DSRC_DIM_Z=" + support::cpp11::to_string(input->info()->dimension(2)));
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100121 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100122 build_opts.add_option_if(winograd_info.kernel_size.height == 1, "-DWINOGRAD_FILTER_TRANSFORM_HORIZONTAL");
123 build_opts.add_option_if(winograd_info.kernel_size.width == 1, "-DWINOGRAD_FILTER_TRANSFORM_VERTICAL");
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000124 const Size2D kernel_size = winograd_info.kernel_size;
125 const Size2D output_tile_size = winograd_info.output_tile_size;
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000126
127 // Create kernel
Giorgio Arenadcb5b282018-04-25 12:07:29 +0100128 std::string kernel_name = "winograd_filter_transform_" + output_tile_size.to_string() + "_" + kernel_size.to_string() + "_" + lower_string(string_from_data_layout(input->info()->data_layout()));
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100129 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000130
131 _input = input;
132 _output = output;
133
134 // Configure kernel window
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000135 auto win_config = validate_and_configure_window(input->info(), output->info());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000136 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100137 ICLKernel::configure_internal(win_config.second);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000138}
139
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000140Status CLWinogradFilterTransformKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000141{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000142 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, winograd_info));
143 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000144
145 return Status{};
146}
147
148void CLWinogradFilterTransformKernel::run(const Window &window, cl::CommandQueue &queue)
149{
150 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
151 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
152
153 // Setup output window
154 Window window_out;
155 window_out.use_tensor_dimensions(_output->info()->tensor_shape(), 0);
156
157 unsigned int idx = 0;
158 add_4D_tensor_argument(idx, _input, window);
159 add_3D_tensor_argument(idx, _output, window_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100160 enqueue(queue, *this, window, lws_hint());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000161}