blob: f4c0839ad2a39ac2d26245a38b88ccfefce417fe [file] [log] [blame]
Michalis Spyrou16934a52018-08-21 18:03:58 +01001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Michalis Spyrou16934a52018-08-21 18:03:58 +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/CLSpaceToBatchLayerKernel.h"
Michalis Spyrou16934a52018-08-21 18:03:58 +010025
26#include "arm_compute/core/CL/CLHelpers.h"
Michalis Spyrou16934a52018-08-21 18:03:58 +010027#include "arm_compute/core/CL/ICLTensor.h"
28#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000029#include "arm_compute/core/utils/StringUtils.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010030
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010031#include "src/core/CL/CLValidate.h"
32#include "src/core/helpers/AutoConfiguration.h"
33#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000034#include "support/StringSupport.h"
Michalis Spyrou16934a52018-08-21 18:03:58 +010035
36using namespace arm_compute::misc::shape_calculator;
37
38namespace arm_compute
39{
40namespace
41{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010042Status validate_arguments(const ITensorInfo *input,
43 const ITensorInfo *block_info,
44 const ITensorInfo *paddings,
45 const ITensorInfo *output)
Michalis Spyrou16934a52018-08-21 18:03:58 +010046{
SiCong Li18bdfae2020-11-08 21:58:01 +000047 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, block_info, paddings, output);
Michalis Spyrou16934a52018-08-21 18:03:58 +010048 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(block_info, 1, DataType::S32);
Manuel Bottini8481d832019-12-10 15:28:40 +000049 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Michalis Spyrou16934a52018-08-21 18:03:58 +010050 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
Isabella Gottardicc6129c2018-12-14 11:40:40 +000051 ARM_COMPUTE_RETURN_ERROR_ON(block_info->num_dimensions() > 1);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010052 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(block_info->tensor_shape(), TensorShape{2});
SiCong Li18bdfae2020-11-08 21:58:01 +000053 ARM_COMPUTE_RETURN_ERROR_ON(paddings->num_dimensions() > 2);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010054 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(paddings->tensor_shape(), TensorShape{2, 2});
Michalis Spyrou16934a52018-08-21 18:03:58 +010055
56 // Validate output if initialized
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010057 if (output->total_size() != 0)
Michalis Spyrou16934a52018-08-21 18:03:58 +010058 {
Isabella Gottardicc6129c2018-12-14 11:40:40 +000059 const DataLayout data_layout = input->data_layout();
60 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
61 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[idx_channel] != output->tensor_shape()[idx_channel]);
Michalis Spyrou16934a52018-08-21 18:03:58 +010062 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
SiCong Li18bdfae2020-11-08 21:58:01 +000063 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michalis Spyrou16934a52018-08-21 18:03:58 +010064 }
65
66 return Status{};
67}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010068Status validate_arguments_static(const ITensorInfo *input,
69 const int block_shape_x,
70 const int block_shape_y,
71 const Size2D &padding_left,
72 const Size2D &padding_right,
Michalis Spyrou16934a52018-08-21 18:03:58 +010073 const ITensorInfo *output)
74{
75 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
SiCong Li18bdfae2020-11-08 21:58:01 +000076 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Michalis Spyrou16934a52018-08-21 18:03:58 +010077 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
SiCong Li18bdfae2020-11-08 21:58:01 +000078 ARM_COMPUTE_RETURN_ERROR_ON(block_shape_x < 1 || block_shape_y < 1);
Michalis Spyrou16934a52018-08-21 18:03:58 +010079
80 // Validate output if initialized
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010081 if (output->total_size() != 0)
Michalis Spyrou16934a52018-08-21 18:03:58 +010082 {
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010083 TensorShape expected_output_shape = misc::shape_calculator::compute_space_to_batch_shape(
84 input, block_shape_x, block_shape_y, padding_left, padding_right);
SiCong Li18bdfae2020-11-08 21:58:01 +000085 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), expected_output_shape);
Michalis Spyrou16934a52018-08-21 18:03:58 +010086 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michele Di Giorgio93c70b82019-08-08 11:59:14 +010087 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michalis Spyrou16934a52018-08-21 18:03:58 +010088 }
89
90 return Status{};
91}
92} // namespace
93
94CLSpaceToBatchLayerKernel::CLSpaceToBatchLayerKernel()
95 : _input(nullptr), _block_shape(nullptr), _paddings(nullptr), _output(nullptr)
96{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010097 _type = CLKernelType::ELEMENTWISE;
Michalis Spyrou16934a52018-08-21 18:03:58 +010098}
99
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100100void CLSpaceToBatchLayerKernel::configure(const ICLTensor *input,
101 const ICLTensor *block_shape,
102 const ICLTensor *paddings,
103 ICLTensor *output)
Michalis Spyrou16934a52018-08-21 18:03:58 +0100104{
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100105 configure(CLKernelLibrary::get().get_compile_context(), input, block_shape, paddings, output);
106}
107
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100108void CLSpaceToBatchLayerKernel::configure(const CLCompileContext &compile_context,
109 const ICLTensor *input,
110 const ICLTensor *block_shape,
111 const ICLTensor *paddings,
112 ICLTensor *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100113{
SiCong Li18bdfae2020-11-08 21:58:01 +0000114 ARM_COMPUTE_ERROR_ON_NULLPTR(input, block_shape, paddings, output);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100115 ARM_COMPUTE_ERROR_THROW_ON(
116 validate_arguments(input->info(), block_shape->info(), paddings->info(), output->info()));
117 auto padding_info = get_padding_info({input, block_shape, paddings, output});
Michalis Spyrou16934a52018-08-21 18:03:58 +0100118
119 _input = input;
120 _block_shape = block_shape;
121 _paddings = paddings;
122 _output = output;
123
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100124 const DataLayout data_layout = input->info()->data_layout();
125 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
126 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
127 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
128
Michalis Spyrou16934a52018-08-21 18:03:58 +0100129 // Create kernel
130 CLBuildOptions build_opts;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100131 build_opts.add_option("-DDATA_TYPE=" +
132 get_cl_unsigned_type_from_element_size(data_size_from_type(input->info()->data_type())));
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100133 build_opts.add_option("-DWIDTH_OUT=" + support::cpp11::to_string(output->info()->dimension(idx_width)));
134 build_opts.add_option("-DHEIGHT_OUT=" + support::cpp11::to_string(output->info()->dimension(idx_height)));
135 build_opts.add_option("-DBATCH_SIZE=" + support::cpp11::to_string(output->info()->dimension(idx_batch)));
Isabella Gottardicc6129c2018-12-14 11:40:40 +0000136 build_opts.add_option("-DWIDTH_IN=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
137 build_opts.add_option("-DHEIGHT_IN=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
138 build_opts.add_option("-DBATCH_IN=" + support::cpp11::to_string(input->info()->dimension(idx_batch)));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100139 _kernel = create_kernel(compile_context,
140 "space_to_batch_" + lower_string(string_from_data_layout(input->info()->data_layout())),
141 build_opts.options());
Michalis Spyrou16934a52018-08-21 18:03:58 +0100142
143 // Configure kernel window
144 Window win = calculate_max_window(*output->info(), Steps());
145 ICLKernel::configure_internal(win);
Manuel Bottinib6869dd2020-12-16 15:34:25 +0000146 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Michalis Spyrou16934a52018-08-21 18:03:58 +0100147}
148
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100149void CLSpaceToBatchLayerKernel::configure(const ICLTensor *input,
150 const int block_shape_x,
151 const int block_shape_y,
152 const Size2D &padding_left,
153 const Size2D &padding_right,
154 ICLTensor *output)
Michalis Spyrou16934a52018-08-21 18:03:58 +0100155{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100156 configure(CLKernelLibrary::get().get_compile_context(), input, block_shape_x, block_shape_y, padding_left,
157 padding_right, output);
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100158}
159
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100160void CLSpaceToBatchLayerKernel::configure(const CLCompileContext &compile_context,
161 const ICLTensor *input,
162 const int block_shape_x,
163 const int block_shape_y,
164 const Size2D &padding_left,
165 const Size2D &padding_right,
166 ICLTensor *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100167{
Michalis Spyrou16934a52018-08-21 18:03:58 +0100168 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
169
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100170 TensorShape output_shape = misc::shape_calculator::compute_space_to_batch_shape(
171 input->info(), block_shape_x, block_shape_y, padding_left, padding_right);
172 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(),
173 input->info()->quantization_info());
Michalis Spyrou16934a52018-08-21 18:03:58 +0100174
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100175 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_static(input->info(), block_shape_x, block_shape_y, padding_left,
176 padding_right, output->info()));
Michalis Spyrou16934a52018-08-21 18:03:58 +0100177
178 _input = input;
179 _output = output;
180
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100181 const DataLayout data_layout = input->info()->data_layout();
182 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
183 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
184 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
185
Michalis Spyrou16934a52018-08-21 18:03:58 +0100186 // Create kernel
187 CLBuildOptions build_opts;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100188 build_opts.add_option("-DDATA_TYPE=" +
189 get_cl_unsigned_type_from_element_size(data_size_from_type(input->info()->data_type())));
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100190 build_opts.add_option("-DWIDTH_OUT=" + support::cpp11::to_string(output->info()->dimension(idx_width)));
191 build_opts.add_option("-DHEIGHT_OUT=" + support::cpp11::to_string(output->info()->dimension(idx_height)));
192 build_opts.add_option("-DBATCH_SIZE=" + support::cpp11::to_string(output->info()->dimension(idx_batch)));
Isabella Gottardicc6129c2018-12-14 11:40:40 +0000193 build_opts.add_option("-DWIDTH_IN=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
194 build_opts.add_option("-DHEIGHT_IN=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
195 build_opts.add_option("-DBATCH_IN=" + support::cpp11::to_string(input->info()->dimension(idx_batch)));
Michalis Spyrou16934a52018-08-21 18:03:58 +0100196 build_opts.add_option("-DBLOCK_SHAPE_X=" + support::cpp11::to_string(block_shape_x));
197 build_opts.add_option("-DBLOCK_SHAPE_Y=" + support::cpp11::to_string(block_shape_y));
Michalis Spyrouedf26ea2018-11-21 14:17:42 +0000198 build_opts.add_option("-DPAD_LEFT_X=" + support::cpp11::to_string(padding_left.x()));
199 build_opts.add_option("-DPAD_RIGHT_X=" + support::cpp11::to_string(padding_right.x()));
200 build_opts.add_option("-DPAD_LEFT_Y=" + support::cpp11::to_string(padding_left.y()));
201 build_opts.add_option("-DPAD_RIGHT_Y=" + support::cpp11::to_string(padding_right.y()));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100202 _kernel = create_kernel(
203 compile_context, "space_to_batch_static_" + lower_string(string_from_data_layout(input->info()->data_layout())),
204 build_opts.options());
Michalis Spyrou16934a52018-08-21 18:03:58 +0100205
206 // Configure kernel window
207 Window win = calculate_max_window(*output->info(), Steps());
208 ICLKernel::configure_internal(win);
209}
210
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100211Status CLSpaceToBatchLayerKernel::validate(const ITensorInfo *input,
212 const ITensorInfo *block_shape,
213 const ITensorInfo *paddings,
214 const ITensorInfo *output)
Michalis Spyrou16934a52018-08-21 18:03:58 +0100215{
216 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, block_shape, paddings, output));
217 return Status{};
218}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100219Status CLSpaceToBatchLayerKernel::validate(const ITensorInfo *input,
220 const int block_shape_x,
221 const int block_shape_y,
222 const Size2D &padding_left,
223 const Size2D &padding_right,
Michalis Spyrou16934a52018-08-21 18:03:58 +0100224 const ITensorInfo *output)
225{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100226 ARM_COMPUTE_RETURN_ON_ERROR(
227 validate_arguments_static(input, block_shape_x, block_shape_y, padding_left, padding_right, output));
Michalis Spyrou16934a52018-08-21 18:03:58 +0100228 return Status{};
229}
230
231void CLSpaceToBatchLayerKernel::run(const Window &window, cl::CommandQueue &queue)
232{
233 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
234 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
235
236 Window slice_out = window.first_slice_window_3D();
237
238 Window slice_in = window.first_slice_window_4D();
239 slice_in.set(Window::DimX, Window::Dimension(0, 0, 0));
240 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
241 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
242 slice_in.set(3, Window::Dimension(0, 0, 0));
243
244 Window vector_slice = window.first_slice_window_1D();
245 vector_slice.set(Window::DimX, Window::Dimension(0, 0, 0));
246
247 Window padding_slice = window.first_slice_window_2D();
248 padding_slice.set(Window::DimX, Window::Dimension(0, 0, 0));
249 padding_slice.set(Window::DimY, Window::Dimension(0, 0, 0));
250
251 int batch_id = 0;
252 do
253 {
Michalis Spyroue1651a52019-07-11 15:00:49 +0100254 unsigned int idx = 0;
255 const bool cond = (_paddings != nullptr && _block_shape != nullptr);
Michalis Spyrou16934a52018-08-21 18:03:58 +0100256 add_4D_tensor_argument(idx, _input, slice_in);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100257 add_2D_tensor_argument_if(cond, idx, _paddings, padding_slice);
258 add_1D_tensor_argument_if(cond, idx, _block_shape, vector_slice);
259
Michalis Spyrou16934a52018-08-21 18:03:58 +0100260 add_argument(idx, batch_id);
261 add_3D_tensor_argument(idx, _output, slice_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100262 enqueue(queue, *this, slice_out, lws_hint());
Michalis Spyrou16934a52018-08-21 18:03:58 +0100263 ++batch_id;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100264 } while (window.slide_window_slice_3D(slice_out));
Michalis Spyrou16934a52018-08-21 18:03:58 +0100265}
Michele Di Giorgio93c70b82019-08-08 11:59:14 +0100266} // namespace arm_compute