blob: ae43fed12d3d64ae18a026ed20fb0e7cce69a15a [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 */
Manuel Bottinic6f4ec32021-05-18 18:41:56 +010024#include "src/core/gpu/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"
Manuel Bottinic6f4ec32021-05-18 18:41:56 +010039#include "support/Cast.h"
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{
Manuel Bottinic6f4ec32021-05-18 18:41:56 +010046namespace opencl
47{
48namespace kernels
49{
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000050namespace
51{
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000052Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000053{
Vidhya Sudhan Loganathan71ecf392018-08-31 16:10:16 +010054 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::F32, DataType::F16);
55 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000056
57 const Size2D kernel_size = winograd_info.kernel_size;
58 const Size2D output_tile_size = winograd_info.output_tile_size;
59
60 const size_t idx_w = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::WIDTH);
61 const size_t idx_h = get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::HEIGHT);
62
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +010063 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 +000064 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 +000065 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
66
67 // Checks performed when output is configured
68 if(output->total_size() != 0)
69 {
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000070 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 +000071
72 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(output, &tensor_info_output);
73 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
74 }
75
76 return Status{};
77}
78
Gian Marco Iodice247f52c2018-03-22 11:24:56 +000079std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000080{
81 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Manuel Bottinic1530a42020-10-28 12:08:06 +000082 ARM_COMPUTE_UNUSED(output);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000083
Giorgio Arenadcb5b282018-04-25 12:07:29 +010084 const unsigned int num_elems_processed_per_iteration_x = input->data_layout() == DataLayout::NCHW ? input->dimension(0) : 1;
85 const unsigned int num_elems_processed_per_iteration_y = input->dimension(1);
86 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 +000087
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010088 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 +000089 Window win_collapsed = win.collapse(win, Window::DimZ);
Manuel Bottinic1530a42020-10-28 12:08:06 +000090 return std::make_pair(Status{}, win_collapsed);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +000091}
92} // namespace
93
Giorgio Arena4a95bba2021-06-28 11:00:27 +010094ClWinogradFilterTransformKernel::ClWinogradFilterTransformKernel()
95{
96 _type = CLKernelType::WINOGRAD;
97}
98
Manuel Bottinic6f4ec32021-05-18 18:41:56 +010099void ClWinogradFilterTransformKernel::configure(const ClCompileContext &compile_context, ITensorInfo *src, ITensorInfo *dst, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000100{
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100101 ARM_COMPUTE_ERROR_ON_NULLPTR(src, dst);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000102
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000103 // Output auto initialization if not yet initialized
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100104 auto_init_if_empty(*dst, src->clone()->set_tensor_shape(compute_winograd_filter_transform_shape(*src, winograd_info)));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000105
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100106 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(src, dst, winograd_info));
107 auto padding_info = get_padding_info({ src, dst });
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000108
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000109 // Set build options
110 CLBuildOptions build_opts;
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100111 build_opts.add_option("-DSRC_DIM_Z=" + support::cpp11::to_string(src->dimension(2)));
112 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(src->data_type()));
Gian Marco Iodicef1c2bf02018-06-13 14:05:54 +0100113 build_opts.add_option_if(winograd_info.kernel_size.height == 1, "-DWINOGRAD_FILTER_TRANSFORM_HORIZONTAL");
114 build_opts.add_option_if(winograd_info.kernel_size.width == 1, "-DWINOGRAD_FILTER_TRANSFORM_VERTICAL");
Gian Marco Iodice247f52c2018-03-22 11:24:56 +0000115 const Size2D kernel_size = winograd_info.kernel_size;
116 const Size2D output_tile_size = winograd_info.output_tile_size;
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000117
118 // Create kernel
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100119 std::string kernel_name = "winograd_filter_transform_" + output_tile_size.to_string() + "_" + kernel_size.to_string() + "_" + lower_string(string_from_data_layout(src->data_layout()));
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100120 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000121
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000122 // Configure kernel window
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100123 auto win_config = validate_and_configure_window(src, dst);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000124 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100125 IClKernel::configure_internal(win_config.second);
Manuel Bottinic1530a42020-10-28 12:08:06 +0000126 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000127}
128
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100129Status ClWinogradFilterTransformKernel::validate(const ITensorInfo *src, const ITensorInfo *dst, const WinogradInfo &winograd_info)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000130{
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100131 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(src, dst, winograd_info));
132 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(src->clone().get(), dst->clone().get()).first);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000133
134 return Status{};
135}
136
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100137void ClWinogradFilterTransformKernel::run_op(ITensorPack &tensors, const Window &window, cl::CommandQueue &queue)
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000138{
139 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100140 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(IClKernel::window(), window);
141
142 auto src = utils::cast::polymorphic_downcast<const ICLTensor *>(tensors.get_const_tensor(TensorType::ACL_SRC));
143 auto dst = utils::cast::polymorphic_downcast<ICLTensor *>(tensors.get_tensor(TensorType::ACL_DST));
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000144
145 // Setup output window
146 Window window_out;
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100147 window_out.use_tensor_dimensions(dst->info()->tensor_shape(), 0);
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000148
149 unsigned int idx = 0;
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100150 add_4D_tensor_argument(idx, src, window);
151 add_3D_tensor_argument(idx, dst, window_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100152 enqueue(queue, *this, window, lws_hint());
Gian Marco Iodice7e4b2392018-02-22 16:17:20 +0000153}
Manuel Bottinic6f4ec32021-05-18 18:41:56 +0100154} // namespace kernels
155} // namespace opencl
Manuel Bottinic1530a42020-10-28 12:08:06 +0000156} // namespace arm_compute