blob: bd45ddb65fc93006709d986373c3ab03f3f358a0 [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 */
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"
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
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000044using namespace arm_compute::misc::shape_calculator;
45
Manuel Bottinic1530a42020-10-28 12:08:06 +000046namespace arm_compute
47{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000048namespace
49{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000050Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000051{
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010052 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16);
53 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000054
55 const Size2D kernel_size = winograd_info.kernel_size;
56 const Size2D output_tile_size = winograd_info.output_tile_size;
57
58 const size_t idx_w = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
59 const size_t idx_h = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
60
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010061 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 +000062 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 +000063 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
64
65 // Checks performed when output is configured
66 if(output->total_size() != 0)
67 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000068 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 +000069
70 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
71 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
72 }
73
74 return Status{};
75}
76
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000077std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000078{
79 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Manuel Bottinic1530a42020-10-28 12:08:06 +000080 ARM_COMPUTE_UNUSED(output);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000081
Giorgio Arenadcb5b282018-04-25 12:07:29 +010082 const unsigned int num_elems_processed_per_iteration_x = input->data_layout() == DataLayout::NCHW ? input->dimension(0) : 1;
83 const unsigned int num_elems_processed_per_iteration_y = input->dimension(1);
84 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 +000085
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010086 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 +000087 Window win_collapsed = win.collapse(win, Window::DimZ);
Manuel Bottinic1530a42020-10-28 12:08:06 +000088 return std::make_pair(Status{}, win_collapsed);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000089}
90} // namespace
91
92CLWinogradFilterTransformKernel::CLWinogradFilterTransformKernel()
93 : _input(nullptr), _output(nullptr)
94{
95}
96
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000097void CLWinogradFilterTransformKernel::configure(const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000098{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010099 configure(CLKernelLibrary::get().get_compile_context(), input, output, winograd_info);
100}
101
Manuel Bottini2803f702020-04-21 16:20:03 +0100102void CLWinogradFilterTransformKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, ICLTensor *output, const WinogradInfo &winograd_info)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100103{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000104 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
105
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000106 // Output auto initialization if not yet initialized
107 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 +0000108
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000109 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), winograd_info));
Manuel Bottinic1530a42020-10-28 12:08:06 +0000110 auto padding_info = get_padding_info({ input, output });
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000111
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000112 // Set build options
113 CLBuildOptions build_opts;
Giorgio Arenadcb5b282018-04-25 12:07:29 +0100114 build_opts.add_option("-DSRC_DIM_Z=" + support::cpp11::to_string(input->info()->dimension(2)));
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +0100115 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100116 build_opts.add_option_if(winograd_info.kernel_size.height == 1, "-DWINOGRAD_FILTER_TRANSFORM_HORIZONTAL");
117 build_opts.add_option_if(winograd_info.kernel_size.width == 1, "-DWINOGRAD_FILTER_TRANSFORM_VERTICAL");
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000118 const Size2D kernel_size = winograd_info.kernel_size;
119 const Size2D output_tile_size = winograd_info.output_tile_size;
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000120
121 // Create kernel
Giorgio Arenadcb5b282018-04-25 12:07:29 +0100122 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 +0100123 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000124
125 _input = input;
126 _output = output;
127
128 // Configure kernel window
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000129 auto win_config = validate_and_configure_window(input->info(), output->info());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000130 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100131 ICLKernel::configure_internal(win_config.second);
Manuel Bottinic1530a42020-10-28 12:08:06 +0000132 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000133}
134
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000135Status CLWinogradFilterTransformKernel::validate(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000136{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000137 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, winograd_info));
138 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000139
140 return Status{};
141}
142
143void CLWinogradFilterTransformKernel::run(const Window &window, cl::CommandQueue &queue)
144{
145 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
146 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
147
148 // Setup output window
149 Window window_out;
150 window_out.use_tensor_dimensions(_output->info()->tensor_shape(), 0);
151
152 unsigned int idx = 0;
153 add_4D_tensor_argument(idx, _input, window);
154 add_3D_tensor_argument(idx, _output, window_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100155 enqueue(queue, *this, window, lws_hint());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000156}
Manuel Bottinic1530a42020-10-28 12:08:06 +0000157} // namespace arm_compute