blob: 138f4cf947aade1b795e523a682840e487e8be9c [file] [log] [blame]
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +00001/*
Michele Di Giorgio142e4ca2021-04-14 16:50:03 +01002 * Copyright (c) 2018-2021 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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLWinogradFilterTransformKernel.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000025
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"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000030#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Types.h"
32#include "arm_compute/core/Utils.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010036#include "src/core/CL/CLValidate.h"
37#include "src/core/helpers/AutoConfiguration.h"
38#include "src/core/helpers/WindowHelpers.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000039
Matthew Bentham758b5ba2020-03-05 23:37:48 +000040#include "support/StringSupport.h"
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000041
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000042using namespace arm_compute::misc::shape_calculator;
43
Manuel Bottinic1530a42020-10-28 12:08:06 +000044namespace arm_compute
45{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000046namespace
47{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000048Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000049{
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010050 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16);
51 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000052
53 const Size2D kernel_size = winograd_info.kernel_size;
54 const Size2D output_tile_size = winograd_info.output_tile_size;
55
56 const size_t idx_w = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
57 const size_t idx_h = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
58
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010059 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 +000060 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 +000061 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
62
63 // Checks performed when output is configured
64 if(output->total_size() != 0)
65 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000066 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 +000067
68 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
69 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
70 }
71
72 return Status{};
73}
74
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000075std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000076{
77 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Manuel Bottinic1530a42020-10-28 12:08:06 +000078 ARM_COMPUTE_UNUSED(output);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000079
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
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +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 Window win_collapsed = win.collapse(win, Window::DimZ);
Manuel Bottinic1530a42020-10-28 12:08:06 +000086 return std::make_pair(Status{}, win_collapsed);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000087}
88} // namespace
89
90CLWinogradFilterTransformKernel::CLWinogradFilterTransformKernel()
91 : _input(nullptr), _output(nullptr)
92{
93}
94
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000095void CLWinogradFilterTransformKernel::configure(const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000096{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010097 configure(CLKernelLibrary::get().get_compile_context(), input, output, winograd_info);
98}
99
Manuel Bottini2803f702020-04-21 16:20:03 +0100100void CLWinogradFilterTransformKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100101{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000102 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
103
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000104 // Output auto initialization if not yet initialized
105 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 +0000106
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000107 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), winograd_info));
Manuel Bottinic1530a42020-10-28 12:08:06 +0000108 auto padding_info = get_padding_info({ input, output });
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000109
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000110 // Set build options
111 CLBuildOptions build_opts;
Giorgio Arenadcb5b282018-04-25 12:07:29 +0100112 build_opts.add_option("-DSRC_DIM_Z=" + support::cpp11::to_string(input->info()->dimension(2)));
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100113 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100114 build_opts.add_option_if(winograd_info.kernel_size.height == 1, "-DWINOGRAD_FILTER_TRANSFORM_HORIZONTAL");
115 build_opts.add_option_if(winograd_info.kernel_size.width == 1, "-DWINOGRAD_FILTER_TRANSFORM_VERTICAL");
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000116 const Size2D kernel_size = winograd_info.kernel_size;
117 const Size2D output_tile_size = winograd_info.output_tile_size;
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000118
119 // Create kernel
Giorgio Arenadcb5b282018-04-25 12:07:29 +0100120 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 +0100121 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000122
123 _input = input;
124 _output = output;
125
126 // Configure kernel window
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000127 auto win_config = validate_and_configure_window(input->info(), output->info());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000128 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100129 ICLKernel::configure_internal(win_config.second);
Manuel Bottinic1530a42020-10-28 12:08:06 +0000130 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000131}
132
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000133Status CLWinogradFilterTransformKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000134{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000135 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, winograd_info));
136 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000137
138 return Status{};
139}
140
141void CLWinogradFilterTransformKernel::run(const Window &window, cl::CommandQueue &queue)
142{
143 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
144 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
145
146 // Setup output window
147 Window window_out;
148 window_out.use_tensor_dimensions(_output->info()->tensor_shape(), 0);
149
150 unsigned int idx = 0;
151 add_4D_tensor_argument(idx, _input, window);
152 add_3D_tensor_argument(idx, _output, window_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100153 enqueue(queue, *this, window, lws_hint());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000154}
Manuel Bottinic1530a42020-10-28 12:08:06 +0000155} // namespace arm_compute