blob: 884c6d41a690f3d15acd73e1a7647aaa53e635b8 [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 Barbier6ff3b192017-09-04 18:44:23 +010047 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input, output);
Gian Marco Iodice368da832017-07-03 12:33:49 +010048 ARM_COMPUTE_ERROR_ON_MISMATCHING_FIXED_POINT(input, output);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010049
50 _input = input;
51 _output = output;
52 _convolved_dims = convolved_dims;
53
54 // Create kernel
55 std::set<std::string> build_opts = { ("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())) };
Gian Marco Iodice3a623242017-07-25 10:25:53 +010056 if(is_data_type_fixed_point(input->info()->data_type()))
57 {
58 build_opts.emplace("-DFIXED_POINT_POSITION=" + support::cpp11::to_string(input->info()->fixed_point_position()));
59 }
60
61 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel("col2im", build_opts));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010062
63 // Set static kernel arguments
steniu01cfc6fe82017-07-27 15:42:44 +010064 unsigned int idx = 2 * num_arguments_per_3D_tensor();
65 _kernel.setArg<cl_uint>(idx++, _output->info()->strides_in_bytes()[3]);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010066 _kernel.setArg<cl_uint>(idx++, _convolved_dims.first);
67
68 // Configure window
69 Window win = calculate_max_window(*input->info(), Steps());
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010070
Anthony Barbier6ff3b192017-09-04 18:44:23 +010071 // The CLCol2ImKernel doesn't need padding so update_window_and_padding() can be skipped
Gian Marco Iodice13edbff2017-06-26 17:20:16 +010072 Coordinates coord;
73 coord.set_num_dimensions(output->info()->num_dimensions());
74 output->info()->set_valid_region(ValidRegion(coord, output->info()->tensor_shape()));
75
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076 ICLKernel::configure(win);
77}
78
79void CLCol2ImKernel::run(const Window &window, cl::CommandQueue &queue)
80{
81 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
82 ARM_COMPUTE_ERROR_ON_MISMATCHING_WINDOWS(ICLKernel::window(), window);
steniu01cfc6fe82017-07-27 15:42:44 +010083 // The collapse method rely on the assumption that the third dimension of input buffer is 1
84 ARM_COMPUTE_ERROR_ON(window.z().end() != 1);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010085
steniu01cfc6fe82017-07-27 15:42:44 +010086 Window collapsed_window = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
87 Window slice = collapsed_window.first_slice_window_3D();
88
Anthony Barbier6ff3b192017-09-04 18:44:23 +010089 do
90 {
91 // Set inputs
92 unsigned int idx = 0;
steniu01cfc6fe82017-07-27 15:42:44 +010093 add_3D_tensor_argument(idx, _input, slice);
94 add_3D_tensor_argument(idx, _output, slice);
95 enqueue(queue, *this, slice);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010096 }
steniu01cfc6fe82017-07-27 15:42:44 +010097 while(collapsed_window.slide_window_slice_3D(slice));
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098}