blob: 1b02eef0409213ad67c7f7ff88a092e290dabb86 [file] [log] [blame]
Michalis Spyrou16934a52018-08-21 18:03:58 +01001/*
Manuel Bottini8481d832019-12-10 15:28:40 +00002 * Copyright (c) 2018-2020 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 */
24#include "arm_compute/core/CL/kernels/CLSpaceToBatchLayerKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLValidate.h"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000030#include "support/StringSupport.h"
Michalis Spyrou16934a52018-08-21 18:03:58 +010031
32using namespace arm_compute::misc::shape_calculator;
33
34namespace arm_compute
35{
36namespace
37{
38Status validate_arguments(const ITensorInfo *input, const ITensorInfo *block_info, const ITensorInfo *padddings, const ITensorInfo *output)
39{
40 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, block_info, padddings, output);
41 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(block_info, 1, DataType::S32);
Manuel Bottini8481d832019-12-10 15:28:40 +000042 ARM_COMPUTE_RETURN_ERROR_ON(input->data_type() == DataType::UNKNOWN);
Michalis Spyrou16934a52018-08-21 18:03:58 +010043 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
Isabella Gottardicc6129c2018-12-14 11:40:40 +000044 ARM_COMPUTE_RETURN_ERROR_ON(block_info->num_dimensions() > 1);
45 ARM_COMPUTE_RETURN_ERROR_ON(padddings->num_dimensions() > 2);
46 ARM_COMPUTE_RETURN_ERROR_ON(padddings->tensor_shape()[1] != block_info->tensor_shape()[0]);
Michalis Spyrou16934a52018-08-21 18:03:58 +010047
48 // Validate output if initialized
49 if(output->total_size() != 0)
50 {
Isabella Gottardicc6129c2018-12-14 11:40:40 +000051 const DataLayout data_layout = input->data_layout();
52 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
53 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[idx_channel] != output->tensor_shape()[idx_channel]);
Michalis Spyrou16934a52018-08-21 18:03:58 +010054 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
55 }
56
57 return Status{};
58}
59Status validate_arguments_static(const ITensorInfo *input, const int block_shape_x, const int block_shape_y, const Size2D &padding_left, const Size2D &padding_right,
60 const ITensorInfo *output)
61{
62 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
63 ARM_COMPUTE_RETURN_ERROR_ON(block_shape_x < 1 || block_shape_y < 1);
64 ARM_COMPUTE_RETURN_ERROR_ON(input->num_dimensions() > 4);
65
66 // Validate output if initialized
67 if(output->total_size() != 0)
68 {
Michalis Spyrou13a51e12018-09-18 13:09:30 +010069 const DataLayout data_layout = input->data_layout();
70 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
71 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
72 const int idx_channel = get_data_layout_dimension_index(data_layout, DataLayoutDimension::CHANNEL);
73 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
74 ARM_COMPUTE_RETURN_ERROR_ON(output->tensor_shape()[idx_width] < padding_left.x() + padding_right.y());
Isabella Gottardicc6129c2018-12-14 11:40:40 +000075 ARM_COMPUTE_RETURN_ERROR_ON((input->tensor_shape()[idx_width] + padding_left.x() + padding_right.x()) % block_shape_x != 0);
76 ARM_COMPUTE_RETURN_ERROR_ON((input->tensor_shape()[idx_height] + padding_left.y() + padding_right.y()) % block_shape_y != 0);
Michalis Spyrou13a51e12018-09-18 13:09:30 +010077 ARM_COMPUTE_RETURN_ERROR_ON(input->tensor_shape()[idx_channel] != output->tensor_shape()[idx_channel]);
78 ARM_COMPUTE_RETURN_ERROR_ON(output->tensor_shape()[idx_batch] % (block_shape_x * block_shape_y) != 0);
Michalis Spyrou16934a52018-08-21 18:03:58 +010079 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Michele Di Giorgio93c70b82019-08-08 11:59:14 +010080 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michalis Spyrou16934a52018-08-21 18:03:58 +010081 }
82
83 return Status{};
84}
85} // namespace
86
87CLSpaceToBatchLayerKernel::CLSpaceToBatchLayerKernel()
88 : _input(nullptr), _block_shape(nullptr), _paddings(nullptr), _output(nullptr)
89{
90}
91
92void CLSpaceToBatchLayerKernel::configure(const ICLTensor *input, const ICLTensor *block_shape, const ICLTensor *paddings, ICLTensor *output)
93{
94 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
95 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), block_shape->info(), paddings->info(), output->info()));
96
97 _input = input;
98 _block_shape = block_shape;
99 _paddings = paddings;
100 _output = output;
101
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100102 const DataLayout data_layout = input->info()->data_layout();
103 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
104 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
105 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
106
Michalis Spyrou16934a52018-08-21 18:03:58 +0100107 // Create kernel
108 CLBuildOptions build_opts;
109 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100110 build_opts.add_option("-DWIDTH_OUT=" + support::cpp11::to_string(output->info()->dimension(idx_width)));
111 build_opts.add_option("-DHEIGHT_OUT=" + support::cpp11::to_string(output->info()->dimension(idx_height)));
112 build_opts.add_option("-DBATCH_SIZE=" + support::cpp11::to_string(output->info()->dimension(idx_batch)));
Isabella Gottardicc6129c2018-12-14 11:40:40 +0000113 build_opts.add_option("-DWIDTH_IN=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
114 build_opts.add_option("-DHEIGHT_IN=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
115 build_opts.add_option("-DBATCH_IN=" + support::cpp11::to_string(input->info()->dimension(idx_batch)));
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100116 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("space_to_batch_" + lower_string(string_from_data_layout(input->info()->data_layout())), build_opts.options()));
Michalis Spyrou16934a52018-08-21 18:03:58 +0100117
118 // Configure kernel window
119 Window win = calculate_max_window(*output->info(), Steps());
120 ICLKernel::configure_internal(win);
121}
122
123void CLSpaceToBatchLayerKernel::configure(const ICLTensor *input, const int block_shape_x, const int block_shape_y, const Size2D &padding_left, const Size2D &padding_right,
124 ICLTensor *output)
125{
126 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
127
128 TensorShape output_shape = misc::shape_calculator::compute_space_to_batch_shape(input->info(), block_shape_x, block_shape_y, padding_left, padding_right);
Michele Di Giorgio93c70b82019-08-08 11:59:14 +0100129 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->quantization_info());
Michalis Spyrou16934a52018-08-21 18:03:58 +0100130
131 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments_static(input->info(), block_shape_x, block_shape_y, padding_left, padding_right, output->info()));
132
133 _input = input;
134 _output = output;
135
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100136 const DataLayout data_layout = input->info()->data_layout();
137 const int idx_width = get_data_layout_dimension_index(data_layout, DataLayoutDimension::WIDTH);
138 const int idx_height = get_data_layout_dimension_index(data_layout, DataLayoutDimension::HEIGHT);
139 const int idx_batch = get_data_layout_dimension_index(data_layout, DataLayoutDimension::BATCHES);
140
Michalis Spyrou16934a52018-08-21 18:03:58 +0100141 // Create kernel
142 CLBuildOptions build_opts;
143 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type()));
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100144 build_opts.add_option("-DWIDTH_OUT=" + support::cpp11::to_string(output->info()->dimension(idx_width)));
145 build_opts.add_option("-DHEIGHT_OUT=" + support::cpp11::to_string(output->info()->dimension(idx_height)));
146 build_opts.add_option("-DBATCH_SIZE=" + support::cpp11::to_string(output->info()->dimension(idx_batch)));
Isabella Gottardicc6129c2018-12-14 11:40:40 +0000147 build_opts.add_option("-DWIDTH_IN=" + support::cpp11::to_string(input->info()->dimension(idx_width)));
148 build_opts.add_option("-DHEIGHT_IN=" + support::cpp11::to_string(input->info()->dimension(idx_height)));
149 build_opts.add_option("-DBATCH_IN=" + support::cpp11::to_string(input->info()->dimension(idx_batch)));
Michalis Spyrou16934a52018-08-21 18:03:58 +0100150 build_opts.add_option("-DBLOCK_SHAPE_X=" + support::cpp11::to_string(block_shape_x));
151 build_opts.add_option("-DBLOCK_SHAPE_Y=" + support::cpp11::to_string(block_shape_y));
Michalis Spyrouedf26ea2018-11-21 14:17:42 +0000152 build_opts.add_option("-DPAD_LEFT_X=" + support::cpp11::to_string(padding_left.x()));
153 build_opts.add_option("-DPAD_RIGHT_X=" + support::cpp11::to_string(padding_right.x()));
154 build_opts.add_option("-DPAD_LEFT_Y=" + support::cpp11::to_string(padding_left.y()));
155 build_opts.add_option("-DPAD_RIGHT_Y=" + support::cpp11::to_string(padding_right.y()));
Michalis Spyrou13a51e12018-09-18 13:09:30 +0100156 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("space_to_batch_static_" + lower_string(string_from_data_layout(input->info()->data_layout())), build_opts.options()));
Michalis Spyrou16934a52018-08-21 18:03:58 +0100157
158 // Configure kernel window
159 Window win = calculate_max_window(*output->info(), Steps());
160 ICLKernel::configure_internal(win);
161}
162
163Status CLSpaceToBatchLayerKernel::validate(const ITensorInfo *input, const ITensorInfo *block_shape, const ITensorInfo *paddings, const ITensorInfo *output)
164{
165 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, block_shape, paddings, output));
166 return Status{};
167}
168Status CLSpaceToBatchLayerKernel::validate(const ITensorInfo *input, const int block_shape_x, const int block_shape_y, const Size2D &padding_left, const Size2D &padding_right,
169 const ITensorInfo *output)
170{
171 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments_static(input, block_shape_x, block_shape_y, padding_left, padding_right, output));
172 return Status{};
173}
174
175void CLSpaceToBatchLayerKernel::run(const Window &window, cl::CommandQueue &queue)
176{
177 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
178 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
179
180 Window slice_out = window.first_slice_window_3D();
181
182 Window slice_in = window.first_slice_window_4D();
183 slice_in.set(Window::DimX, Window::Dimension(0, 0, 0));
184 slice_in.set(Window::DimY, Window::Dimension(0, 0, 0));
185 slice_in.set(Window::DimZ, Window::Dimension(0, 0, 0));
186 slice_in.set(3, Window::Dimension(0, 0, 0));
187
188 Window vector_slice = window.first_slice_window_1D();
189 vector_slice.set(Window::DimX, Window::Dimension(0, 0, 0));
190
191 Window padding_slice = window.first_slice_window_2D();
192 padding_slice.set(Window::DimX, Window::Dimension(0, 0, 0));
193 padding_slice.set(Window::DimY, Window::Dimension(0, 0, 0));
194
195 int batch_id = 0;
196 do
197 {
Michalis Spyroue1651a52019-07-11 15:00:49 +0100198 unsigned int idx = 0;
199 const bool cond = (_paddings != nullptr && _block_shape != nullptr);
Michalis Spyrou16934a52018-08-21 18:03:58 +0100200 add_4D_tensor_argument(idx, _input, slice_in);
Michalis Spyroue1651a52019-07-11 15:00:49 +0100201 add_2D_tensor_argument_if(cond, idx, _paddings, padding_slice);
202 add_1D_tensor_argument_if(cond, idx, _block_shape, vector_slice);
203
Michalis Spyrou16934a52018-08-21 18:03:58 +0100204 add_argument(idx, batch_id);
205 add_3D_tensor_argument(idx, _output, slice_out);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100206 enqueue(queue, *this, slice_out, lws_hint());
Michalis Spyrou16934a52018-08-21 18:03:58 +0100207 ++batch_id;
208 }
209 while(window.slide_window_slice_3D(slice_out));
210}
Michele Di Giorgio93c70b82019-08-08 11:59:14 +0100211} // namespace arm_compute