blob: 4a1c48a258ea2cdbad2079bc850a3ea180d6f369 [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
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000028#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010029#include "arm_compute/core/CL/CLValidate.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000030#include "arm_compute/core/CL/ICLTensor.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/IAccessWindow.h"
33#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Utils.h"
36#include "arm_compute/core/Validate.h"
37#include "arm_compute/core/Window.h"
38#include "arm_compute/core/utils/misc/ShapeCalculator.h"
39
Matthew Bentham758b5ba2020-03-05 23:37:48 +000040#include "support/StringSupport.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000041
42using namespace arm_compute;
43using namespace arm_compute::misc::shape_calculator;
44
45namespace
46{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000047Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000048{
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010049 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16);
50 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000051
52 const Size2D kernel_size = winograd_info.kernel_size;
53 const Size2D output_tile_size = winograd_info.output_tile_size;
54
55 const size_t idx_w = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
56 const size_t idx_h = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
57
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010058 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 +000059 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 +000060 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
61
62 // Checks performed when output is configured
63 if(output->total_size() != 0)
64 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000065 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 +000066
67 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
69 }
70
71 return Status{};
72}
73
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000074std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000075{
76 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
77
Giorgio Arenadcb5b282018-04-25 12:07:29 +010078 const unsigned int num_elems_processed_per_iteration_x = input->data_layout() == DataLayout::NCHW ? input->dimension(0) : 1;
79 const unsigned int num_elems_processed_per_iteration_y = input->dimension(1);
80 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 +000081
Giorgio Arenadcb5b282018-04-25 12:07:29 +010082 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 +000083 bool window_changed = false;
84
85 AccessWindowRectangle input_access(input, 0, 0, num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y);
86 AccessWindowStatic output_access(output, 0, 0, output->dimension(0), output->dimension(1));
87 window_changed = update_window_and_padding(win, input_access, output_access);
Gian Marco Iodiced2fab732018-03-02 11:18:12 +000088 output_access.set_valid_region(win, ValidRegion(Coordinates(0, 0), output->tensor_shape()));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000089
90 Window win_collapsed = win.collapse(win, Window::DimZ);
91
92 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
93 return std::make_pair(err, win_collapsed);
94}
95} // namespace
96
97CLWinogradFilterTransformKernel::CLWinogradFilterTransformKernel()
98 : _input(nullptr), _output(nullptr)
99{
100}
101
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000102void CLWinogradFilterTransformKernel::configure(const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000103{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100104 configure(CLKernelLibrary::get().get_compile_context(), input, output, winograd_info);
105}
106
Manuel Bottini2803f702020-04-21 16:20:03 +0100107void CLWinogradFilterTransformKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100108{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000109 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
110
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000111 // Output auto initialization if not yet initialized
112 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 +0000113
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000114 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), winograd_info));
115
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000116 // Set build options
117 CLBuildOptions build_opts;
Giorgio Arenadcb5b282018-04-25 12:07:29 +0100118 build_opts.add_option("-DSRC_DIM_Z=" + support::cpp11::to_string(input->info()->dimension(2)));
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100119 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100120 build_opts.add_option_if(winograd_info.kernel_size.height == 1, "-DWINOGRAD_FILTER_TRANSFORM_HORIZONTAL");
121 build_opts.add_option_if(winograd_info.kernel_size.width == 1, "-DWINOGRAD_FILTER_TRANSFORM_VERTICAL");
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000122 const Size2D kernel_size = winograd_info.kernel_size;
123 const Size2D output_tile_size = winograd_info.output_tile_size;
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000124
125 // Create kernel
Giorgio Arenadcb5b282018-04-25 12:07:29 +0100126 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 +0100127 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000128
129 _input = input;
130 _output = output;
131
132 // Configure kernel window
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000133 auto win_config = validate_and_configure_window(input->info(), output->info());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000134 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100135 ICLKernel::configure_internal(win_config.second);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000136}
137
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000138Status CLWinogradFilterTransformKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000139{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000140 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, winograd_info));
141 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000142
143 return Status{};
144}
145
146void CLWinogradFilterTransformKernel::run(const Window &window, cl::CommandQueue &queue)
147{
148 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
149 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
150
151 // Setup output window
152 Window window_out;
153 window_out.use_tensor_dimensions(_output->info()->tensor_shape(), 0);
154
155 unsigned int idx = 0;
156 add_4D_tensor_argument(idx, _input, window);
157 add_3D_tensor_argument(idx, _output, window_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100158 enqueue(queue, *this, window, lws_hint());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000159}