blob: ec58bf9e7a1436f3909ade4d1b04e7fe6ff2a58c [file] [log] [blame]
Michele Di Giorgio72175632018-05-01 16:52:00 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Michele Di Giorgio72175632018-05-01 16:52:00 +01003 *
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/CLChannelShuffleLayerKernel.h"
Michele Di Giorgio72175632018-05-01 16:52:00 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
28#include "arm_compute/core/CL/ICLTensor.h"
Michele Di Giorgio72175632018-05-01 16:52:00 +010029#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000031#include "arm_compute/core/Utils.h"
32#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
33#include "arm_compute/core/utils/StringUtils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010034
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010035#include "src/core/CL/CLValidate.h"
36#include "src/core/helpers/AutoConfiguration.h"
37#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000038#include "support/StringSupport.h"
Michele Di Giorgio72175632018-05-01 16:52:00 +010039
40namespace arm_compute
41{
42namespace
43{
44Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, unsigned int num_groups)
45{
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010046 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Manuel Bottini8481d832019-12-10 15:28:40 +000047 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Michele Di Giorgio72175632018-05-01 16:52:00 +010048 ARM_COMPUTE_RETURN_ERROR_ON_MSG(num_groups < 2, "Channel shuffling with less than 2 groups would be inefficient");
49
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010050 const unsigned int channels =
51 input->dimension(get_data_layout_dimension_index(input->data_layout(), DataLayoutDimension::CHANNEL));
Michele Di Giorgio72175632018-05-01 16:52:00 +010052
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010053 ARM_COMPUTE_RETURN_ERROR_ON_MSG(
54 num_groups == channels,
55 "Channel shuffling with same number of groups as number of channels would be inefficient");
Michele Di Giorgio72175632018-05-01 16:52:00 +010056 // There cannot be more groups than channels
57 ARM_COMPUTE_RETURN_ERROR_ON(num_groups > channels);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010058 ARM_COMPUTE_RETURN_ERROR_ON_MSG((channels % num_groups) != 0,
59 "The number of channels must be a multiple of the number of groups");
Michele Di Giorgio72175632018-05-01 16:52:00 +010060
61 // Checks performed when output is configured
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010062 if (output->total_size() != 0)
Michele Di Giorgio72175632018-05-01 16:52:00 +010063 {
64 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(input, output);
Isabella Gottardi0a1090a2019-02-14 18:07:36 +000065 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michele Di Giorgio72175632018-05-01 16:52:00 +010066 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
67 }
68
69 return Status{};
70}
71
72std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output)
73{
74 // Output tensor auto initialization if not yet initialized
75 auto_init_if_empty(*output, *input->clone());
76
Manuel Bottinie57e11d2021-05-11 17:36:14 +010077 const bool is_nhwc = input->data_layout() == DataLayout::NHWC;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010078 if (is_nhwc)
Manuel Bottinie57e11d2021-05-11 17:36:14 +010079 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010080 unsigned int num_elems_processed_per_iteration_x =
81 adjust_vec_size(max_cl_vector_width / input->element_size(), input->dimension(0));
82 Window win = calculate_max_window(*input, Steps(num_elems_processed_per_iteration_x));
83 Window win_collapsed = win.collapse(win, Window::DimZ);
Manuel Bottinie57e11d2021-05-11 17:36:14 +010084 return std::make_pair(Status{}, win_collapsed);
85 }
86 else
87 {
88 const unsigned int num_elems_processed_per_iteration_x = max_cl_vector_width / input->element_size();
89 constexpr unsigned int num_elems_processed_per_iteration_y = 2;
Michele Di Giorgio72175632018-05-01 16:52:00 +010090
Manuel Bottinie57e11d2021-05-11 17:36:14 +010091 // Configure kernel window
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010092 Window win = calculate_max_window(
93 *input, Steps(num_elems_processed_per_iteration_x, num_elems_processed_per_iteration_y));
94 AccessWindowRectangle input_access(input, 0, 0, num_elems_processed_per_iteration_x,
95 num_elems_processed_per_iteration_y);
96 AccessWindowRectangle output_access(output, 0, 0, num_elems_processed_per_iteration_x,
97 num_elems_processed_per_iteration_y);
Michele Di Giorgio72175632018-05-01 16:52:00 +010098
Manuel Bottinie57e11d2021-05-11 17:36:14 +010099 const bool window_changed = update_window_and_padding(win, input_access, output_access);
Michele Di Giorgio72175632018-05-01 16:52:00 +0100100
Manuel Bottinie57e11d2021-05-11 17:36:14 +0100101 Window win_collapsed = win.collapse(win, Window::DimZ);
Gian Marco Iodice8bab0ee2018-09-13 11:51:56 +0100102
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100103 Status err =
104 (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
Manuel Bottinie57e11d2021-05-11 17:36:14 +0100105 return std::make_pair(err, win_collapsed);
106 }
Michele Di Giorgio72175632018-05-01 16:52:00 +0100107}
108} // namespace
109
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100110CLChannelShuffleLayerKernel::CLChannelShuffleLayerKernel() : _input(nullptr), _output(nullptr)
Michele Di Giorgio72175632018-05-01 16:52:00 +0100111{
Giorgio Arena4a95bba2021-06-28 11:00:27 +0100112 _type = CLKernelType::ELEMENTWISE;
Michele Di Giorgio72175632018-05-01 16:52:00 +0100113}
114
115void CLChannelShuffleLayerKernel::configure(const ICLTensor *input, ICLTensor *output, unsigned int num_groups)
116{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100117 configure(CLKernelLibrary::get().get_compile_context(), input, output, num_groups);
118}
119
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100120void CLChannelShuffleLayerKernel::configure(const CLCompileContext &compile_context,
121 const ICLTensor *input,
122 ICLTensor *output,
123 unsigned int num_groups)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100124{
Michele Di Giorgio72175632018-05-01 16:52:00 +0100125 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Manuel Bottinie57e11d2021-05-11 17:36:14 +0100126 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), num_groups));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100127 auto padding_info = get_padding_info({input, output});
Michele Di Giorgio72175632018-05-01 16:52:00 +0100128
129 _input = input;
130 _output = output;
131
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100132 const DataLayout data_layout = input->info()->data_layout();
133 const bool is_nhwc = data_layout == DataLayout::NHWC;
134 const unsigned int channels =
135 input->info()->dimension(get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL));
136 unsigned int vec_size_x = 0;
137 unsigned int vec_size_x_leftovers = 0;
138 if (is_nhwc)
Manuel Bottinie57e11d2021-05-11 17:36:14 +0100139 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100140 vec_size_x = adjust_vec_size(max_cl_vector_width / input->info()->element_size(), input->info()->dimension(0));
Manuel Bottinie57e11d2021-05-11 17:36:14 +0100141 vec_size_x_leftovers = input->info()->dimension(0) % vec_size_x;
142 }
143 else
144 {
145 vec_size_x = max_cl_vector_width / input->info()->element_size();
146 }
Michele Di Giorgio72175632018-05-01 16:52:00 +0100147
148 // Set kernel build options
149 CLBuildOptions build_opts;
150 build_opts.add_option("-DNUM_GROUPS=" + support::cpp11::to_string(num_groups));
151 build_opts.add_option("-DK=" + support::cpp11::to_string(channels / num_groups));
Manuel Bottinie57e11d2021-05-11 17:36:14 +0100152 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
153 build_opts.add_option_if(is_nhwc, "-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftovers));
154 build_opts.add_option_if(is_nhwc, "-DSRC_DIM_X=" + support::cpp11::to_string(input->info()->dimension(0)));
Gian Marco Iodice8bab0ee2018-09-13 11:51:56 +0100155 build_opts.add_option("-DSRC_DIM_Z=" + support::cpp11::to_string(input->info()->dimension(2)));
Michele Di Giorgiodf4cf572019-10-09 15:32:39 +0100156 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(input->info()->element_size()));
Michele Di Giorgio72175632018-05-01 16:52:00 +0100157
158 // Create kernel
Gian Marco Iodice8bab0ee2018-09-13 11:51:56 +0100159 std::string kernel_name = "channel_shuffle_" + lower_string(string_from_data_layout(data_layout));
Giorgio Arena6e9d0e02020-01-03 15:02:04 +0000160
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100161 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Michele Di Giorgio72175632018-05-01 16:52:00 +0100162
163 // Configure kernel window
164 auto win_config = validate_and_configure_window(input->info(), output->info());
165 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100166 ICLKernel::configure_internal(win_config.second);
Gian Marco Iodice8bab0ee2018-09-13 11:51:56 +0100167
168 // Set config_id for enabling LWS tuning
169 _config_id = kernel_name;
170 _config_id += "_";
171 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
172 _config_id += "_";
173 _config_id += support::cpp11::to_string(num_groups);
174 _config_id += "_";
175 _config_id += support::cpp11::to_string(input->info()->dimension(0));
176 _config_id += "_";
177 _config_id += support::cpp11::to_string(input->info()->dimension(1));
178 _config_id += "_";
179 _config_id += support::cpp11::to_string(input->info()->dimension(2));
180 _config_id += "_";
181 _config_id += support::cpp11::to_string(output->info()->dimension(0));
182 _config_id += "_";
183 _config_id += support::cpp11::to_string(output->info()->dimension(1));
184 _config_id += "_";
185 _config_id += support::cpp11::to_string(output->info()->dimension(2));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100186 if (data_layout == DataLayout::NHWC)
Manuel Bottinie57e11d2021-05-11 17:36:14 +0100187 {
188 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
189 }
Michele Di Giorgio72175632018-05-01 16:52:00 +0100190}
191
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100192Status
193CLChannelShuffleLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *output, unsigned int num_groups)
Michele Di Giorgio72175632018-05-01 16:52:00 +0100194{
195 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, num_groups));
196 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get()).first);
197
198 return Status{};
199}
200
201void CLChannelShuffleLayerKernel::run(const Window &window, cl::CommandQueue &queue)
202{
203 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
204 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
205
Gian Marco Iodice8bab0ee2018-09-13 11:51:56 +0100206 unsigned int idx = 0;
207 add_4D_tensor_argument(idx, _input, window);
208 add_4D_tensor_argument(idx, _output, window);
209 enqueue(queue, *this, window, lws_hint());
Michele Di Giorgio72175632018-05-01 16:52:00 +0100210}
211} // namespace arm_compute