blob: d7582dc9435aebf96df938a7dec8d50693b9e0ae [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Gian Marco54f18c42018-02-07 23:13:06 +00002 * Copyright (c) 2017-2018 ARM Limited.
Anthony Barbier6ff3b192017-09-04 18:44:23 +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/CLCol2ImKernel.h"
25
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010028#include "arm_compute/core/CL/CLValidate.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010029#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/CL/OpenCL.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/Types.h"
Georgios Pinitas78c00902018-01-09 17:33:11 +000034#include "arm_compute/core/utils/misc/ShapeCalculator.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010035
36#include <cmath>
37
38using namespace arm_compute;
Georgios Pinitas78c00902018-01-09 17:33:11 +000039using namespace arm_compute::misc::shape_calculator;
40
41namespace
42{
Michele Di Giorgio980002b2018-08-08 09:25:51 +010043Status validate_arguments(const ITensorInfo *input, const ITensorInfo *output, std::pair<unsigned int, unsigned int> convolved_dims, unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +000044{
45 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(input, output);
Vidhya Sudhan Loganathanf1f49062018-05-25 13:21:26 +010046 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(input);
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010047 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QASYMM8, DataType::F16, DataType::F32);
Georgios Pinitas78c00902018-01-09 17:33:11 +000048
49 // Checks performed when output is configured
50 if(output->total_size() != 0)
51 {
Michele Di Giorgio980002b2018-08-08 09:25:51 +010052 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS(output->tensor_shape(), compute_col2im_shape(*input, convolved_dims, num_groups));
Georgios Pinitas78c00902018-01-09 17:33:11 +000053 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Vidhya Sudhan Loganathanedf357c2018-04-27 14:25:30 +010054 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO(input, output);
Michele Di Giorgio980002b2018-08-08 09:25:51 +010055 ARM_COMPUTE_RETURN_ERROR_ON_MSG(output->data_layout() != DataLayout::NCHW, "Col2Im output's data layout must always be NCHW");
Georgios Pinitas78c00902018-01-09 17:33:11 +000056 }
57
58 return Status{};
59}
60
Michele Di Giorgio980002b2018-08-08 09:25:51 +010061std::pair<Status, Window> validate_and_configure_window(ITensorInfo *input, ITensorInfo *output, std::pair<unsigned int, unsigned int> convolved_dims, unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +000062{
63 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
64 // Output auto inizialitation if not yet initialized
Michele Di Giorgio980002b2018-08-08 09:25:51 +010065 auto_init_if_empty(*output, input->clone()->set_tensor_shape(compute_col2im_shape(*input, convolved_dims, num_groups)).set_data_layout(DataLayout::NCHW));
Georgios Pinitas78c00902018-01-09 17:33:11 +000066
Vidhya Sudhan Loganathan7485d5a2018-07-04 09:34:00 +010067 const unsigned int num_elems_read_per_iteration = 8;
Georgios Pinitas78c00902018-01-09 17:33:11 +000068
69 // Configure window
70 Window win = calculate_max_window(*input, Steps(num_elems_read_per_iteration));
71
72 // Update window and padding just for the input tensor as we cannot access out-of-bounds elements in the output one
73 AccessWindowHorizontal input_access(input, 0, num_elems_read_per_iteration);
74 bool window_changed = update_window_and_padding(win, input_access);
75
76 Coordinates coord;
77 coord.set_num_dimensions(output->num_dimensions());
78 output->set_valid_region(ValidRegion(coord, output->tensor_shape()));
79
80 Status err = (window_changed) ? ARM_COMPUTE_CREATE_ERROR(ErrorCode::RUNTIME_ERROR, "Insufficient Padding!") : Status{};
81 return std::make_pair(err, win);
82}
83} // namespace
Anthony Barbier6ff3b192017-09-04 18:44:23 +010084
85CLCol2ImKernel::CLCol2ImKernel()
86 : _input(nullptr), _output(nullptr), _convolved_dims()
87{
88}
89
Michele Di Giorgio980002b2018-08-08 09:25:51 +010090void CLCol2ImKernel::configure(const ICLTensor *input, ICLTensor *output, std::pair<unsigned int, unsigned int> convolved_dims, unsigned int num_groups)
Anthony Barbier6ff3b192017-09-04 18:44:23 +010091{
Georgios Pinitas78c00902018-01-09 17:33:11 +000092 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Anthony Barbierfcdbc662017-08-04 18:05:29 +010093
Georgios Pinitas78c00902018-01-09 17:33:11 +000094 // Perform validation step
Michele Di Giorgio980002b2018-08-08 09:25:51 +010095 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(input->info(), output->info(), convolved_dims, num_groups));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096
97 _input = input;
98 _output = output;
99 _convolved_dims = convolved_dims;
100
Chunosov5124be52017-11-22 20:42:13 +0700101 const DataType data_type = input->info()->data_type();
Gian Marco Iodice3a623242017-07-25 10:25:53 +0100102
Chunosov5124be52017-11-22 20:42:13 +0700103 // Create kernel
104 CLBuildOptions build_opts;
105 build_opts.add_option("-DDATA_TYPE=" + get_cl_type_from_data_type(data_type));
Gian Marco54f18c42018-02-07 23:13:06 +0000106 build_opts.add_option("-DELEMENT_SIZE=" + support::cpp11::to_string(input->info()->element_size()));
107 build_opts.add_option("-DWIDTH_INPUT=" + support::cpp11::to_string(input->info()->dimension(0)));
Chunosov5124be52017-11-22 20:42:13 +0700108 build_opts.add_option("-DWIDTH_OUTPUT=" + support::cpp11::to_string(_convolved_dims.first));
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100109 build_opts.add_option_if(num_groups > 1, "-DGROUPING");
Chunosov5124be52017-11-22 20:42:13 +0700110
111 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("col2im", build_opts.options()));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112
Georgios Pinitas78c00902018-01-09 17:33:11 +0000113 // Configure kernel window
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100114 auto win_config = validate_and_configure_window(input->info(), output->info(), _convolved_dims, num_groups);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000115 ARM_COMPUTE_ERROR_THROW_ON(win_config.first);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100116 ICLKernel::configure_internal(win_config.second);
Giorgio Arena63485ce2017-11-15 16:04:20 +0000117
118 // Set config_id for enabling LWS tuning
119 _config_id = "col2im_";
120 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
121 _config_id += "_";
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100122 _config_id += (num_groups > 1) ? "grouping_" : "";
Giorgio Arena63485ce2017-11-15 16:04:20 +0000123 _config_id += support::cpp11::to_string(input->info()->dimension(0));
124 _config_id += "_";
125 _config_id += support::cpp11::to_string(input->info()->dimension(1));
126 _config_id += "_";
127 _config_id += support::cpp11::to_string(output->info()->dimension(0));
128 _config_id += "_";
129 _config_id += support::cpp11::to_string(output->info()->dimension(1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100130}
131
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100132Status CLCol2ImKernel::validate(const ITensorInfo *input, const ITensorInfo *output, std::pair<unsigned int, unsigned int> convolved_dims, unsigned int num_groups)
Georgios Pinitas78c00902018-01-09 17:33:11 +0000133{
Michele Di Giorgio80eb8032018-02-27 11:22:17 +0000134 ARM_COMPUTE_ERROR_ON_NULLPTR(input, output);
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100135 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(input, output, convolved_dims, num_groups));
136 ARM_COMPUTE_RETURN_ON_ERROR(validate_and_configure_window(input->clone().get(), output->clone().get(), convolved_dims, num_groups).first);
Georgios Pinitas78c00902018-01-09 17:33:11 +0000137 return Status{};
138}
139
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100140void CLCol2ImKernel::run(const Window &window, cl::CommandQueue &queue)
141{
142 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
143 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100144
145 Window out_window;
146 out_window.use_tensor_dimensions(_output->info()->tensor_shape());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100147
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100148 Window slice = window.first_slice_window_3D();
149 Window slice_out = out_window.first_slice_window_3D();
steniu01cfc6fe82017-07-27 15:42:44 +0100150
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100151 unsigned int idx = 2 * num_arguments_per_3D_tensor();
Gian Marco Iodice2eac5bd2017-08-14 14:22:23 +0100152 _kernel.setArg<cl_uint>(idx++, _output->info()->strides_in_bytes()[3]);
153
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100154 do
155 {
156 // Set inputs
157 unsigned int idx = 0;
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100158 add_3D_tensor_argument(idx, _input, slice);
Georgios Pinitas19ea4192018-06-19 13:09:53 +0100159 add_3D_tensor_argument(idx, _output, slice_out);
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100160 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100161 }
Michele Di Giorgio980002b2018-08-08 09:25:51 +0100162 while(window.slide_window_slice_3D(slice) && out_window.slide_window_slice_3D(slice_out));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100163}