blob: 9f266135f2330d8ee3b3e4debba2d5f622e1546a [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
2 * Copyright (c) 2017 ARM Limited.
3 *
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"
28#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/CL/OpenCL.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/Types.h"
33#include "arm_compute/core/Validate.h"
34
35#include <cmath>
36
37using namespace arm_compute;
38
39CLCol2ImKernel::CLCol2ImKernel()
40 : _input(nullptr), _output(nullptr), _convolved_dims()
41{
42}
43
44void CLCol2ImKernel::configure(const ICLTensor *input, ICLTensor *output, std::pair<unsigned int, unsigned int> convolved_dims)
45{
Gian Marco Iodice7d323a62017-07-05 20:05:23 +010046 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::QS8, DataType::QS16, DataType::F16, DataType::F32);
Anthony Barbierfcdbc662017-08-04 18:05:29 +010047 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
48
49 TensorShape output_shape = input->info()->tensor_shape();
50 output_shape.set(0, convolved_dims.first);
51 output_shape.set(1, convolved_dims.second);
52 output_shape.set(2, input->info()->tensor_shape()[0]);
53
54 // Output auto inizialitation if not yet initialized
55 auto_init_if_empty(*output->info(), output_shape, 1, input->info()->data_type(), input->info()->fixed_point_position());
56
57 ARM_COMPUTE_ERROR_ON_MISMATCHING_DIMENSIONS(output->info()->tensor_shape(), output_shape);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Gian Marco Iodice368da832017-07-03 12:33:49 +010059 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010060
61 _input = input;
62 _output = output;
63 _convolved_dims = convolved_dims;
64
65 // Create kernel
66 std::set<std::string> build_opts = { ("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())) };
Gian Marco Iodice2eac5bd2017-08-14 14:22:23 +010067 build_opts.emplace("-DWIDTH_OUTPUT=" + support::cpp11::to_string(_convolved_dims.first));
Gian Marco Iodice3a623242017-07-25 10:25:53 +010068 if(is_data_type_fixed_point(input->info()->data_type()))
69 {
70 build_opts.emplace("-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position()));
71 }
72
73 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("col2im", build_opts));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010074
Anthony Barbier6ff3b192017-09-04 18:44:23 +010075 // Configure window
76 Window win = calculate_max_window(*input->info(), Steps());
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010077
Anthony Barbier6ff3b192017-09-04 18:44:23 +010078 // The CLCol2ImKernel doesn't need padding so update_window_and_padding() can be skipped
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010079 Coordinates coord;
80 coord.set_num_dimensions(output->info()->num_dimensions());
81 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
82
Anthony Barbier6ff3b192017-09-04 18:44:23 +010083 ICLKernel::configure(win);
Giorgio Arena63485ce2017-11-15 16:04:20 +000084
85 // Set config_id for enabling LWS tuning
86 _config_id = "col2im_";
87 _config_id += lower_string(string_from_data_type(input->info()->data_type()));
88 _config_id += "_";
89 _config_id += support::cpp11::to_string(input->info()->dimension(0));
90 _config_id += "_";
91 _config_id += support::cpp11::to_string(input->info()->dimension(1));
92 _config_id += "_";
93 _config_id += support::cpp11::to_string(output->info()->dimension(0));
94 _config_id += "_";
95 _config_id += support::cpp11::to_string(output->info()->dimension(1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096}
97
98void CLCol2ImKernel::run(const Window &window, cl::CommandQueue &queue)
99{
100 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
101 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
steniu01cfc6fe82017-07-27 15:42:44 +0100102 // The collapse method rely on the assumption that the third dimension of input buffer is 1
103 ARM_COMPUTE_ERROR_ON(window.z().end() != 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100104
steniu01cfc6fe82017-07-27 15:42:44 +0100105 Window collapsed_window = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
106 Window slice = collapsed_window.first_slice_window_3D();
107
Gian Marco Iodice2eac5bd2017-08-14 14:22:23 +0100108 // Set static kernel arguments
109 unsigned int idx = 2 * num_arguments_per_3D_tensor();
110 _kernel.setArg<cl_uint>(idx++, _output->info()->strides_in_bytes()[3]);
111
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100112 do
113 {
114 // Set inputs
115 unsigned int idx = 0;
steniu01cfc6fe82017-07-27 15:42:44 +0100116 add_3D_tensor_argument(idx, _input, slice);
117 add_3D_tensor_argument(idx, _output, slice);
118 enqueue(queue, *this, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100119 }
steniu01cfc6fe82017-07-27 15:42:44 +0100120 while(collapsed_window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100121}