blob: fe8c81a3b9db5ef7aaf3b41ebf915f2a1ba9c960 [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Michele Di Giorgiod9eaf612020-07-08 11:12:57 +01002 * Copyright (c) 2017-2020 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/CLRemapKernel.h"
25
26#include "arm_compute/core/AccessWindowStatic.h"
27#include "arm_compute/core/CL/CLHelpers.h"
28#include "arm_compute/core/CL/CLKernelLibrary.h"
29#include "arm_compute/core/CL/ICLTensor.h"
30#include "arm_compute/core/Error.h"
31#include "arm_compute/core/Helpers.h"
32#include "arm_compute/core/TensorInfo.h"
33#include "arm_compute/core/Validate.h"
34#include "arm_compute/core/Window.h"
35
36#include <algorithm>
37
38using namespace arm_compute;
39
40CLRemapKernel::CLRemapKernel()
41 : _input(nullptr), _output(nullptr), _map_x(nullptr), _map_y(nullptr)
42{
43}
44
45BorderSize CLRemapKernel::border_size() const
46{
47 return BorderSize(1);
48}
49
50void CLRemapKernel::configure(const ICLTensor *input, const ICLTensor *map_x, const ICLTensor *map_y, ICLTensor *output, InterpolationPolicy policy, bool border_undefined)
51{
Manuel Bottini4c6bd512020-04-08 10:15:51 +010052 configure(CLKernelLibrary::get().get_compile_context(), input, map_x, map_y, output, policy, border_undefined);
53}
54
Manuel Bottini2803f702020-04-21 16:20:03 +010055void CLRemapKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input, const ICLTensor *map_x, const ICLTensor *map_y, ICLTensor *output, InterpolationPolicy policy,
Manuel Bottini4c6bd512020-04-08 10:15:51 +010056 bool border_undefined)
57{
Anthony Barbier6ff3b192017-09-04 18:44:23 +010058 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input, 1, DataType::U8);
59 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8);
60 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(map_x, 1, DataType::F32);
61 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(map_y, 1, DataType::F32);
62 ARM_COMPUTE_ERROR_ON_MSG(policy == InterpolationPolicy::AREA, "Area interpolation is not supported!");
Sanghoon Leefc35b512017-10-18 12:09:04 +010063 ARM_COMPUTE_UNUSED(border_undefined);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010064
65 _input = input;
66 _output = output;
67 _map_x = map_x;
68 _map_y = map_y;
69
70 // Create kernel
71 std::set<std::string> build_opts = { ("-DDATA_TYPE=" + get_cl_type_from_data_type(input->info()->data_type())) };
72 std::string interpolation_name = string_from_interpolation_policy(policy);
73 std::transform(interpolation_name.begin(), interpolation_name.end(), interpolation_name.begin(), ::tolower);
74 std::string kernel_name = "remap_" + interpolation_name;
Manuel Bottini4c6bd512020-04-08 10:15:51 +010075 _kernel = create_kernel(compile_context, kernel_name, build_opts);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010076
77 // Configure window
78 constexpr unsigned int num_elems_processed_per_iteration = 4;
Sanghoon Leefc35b512017-10-18 12:09:04 +010079
80 const int total_right = ceil_to_multiple(input->info()->dimension(0), num_elems_processed_per_iteration);
81 const int access_right = total_right + (((total_right - input->info()->dimension(0)) == 0) ? border_size().right : 0);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010082
83 Window win = calculate_max_window(*_output->info(), Steps(num_elems_processed_per_iteration));
Sanghoon Leefc35b512017-10-18 12:09:04 +010084 AccessWindowStatic input_access(input->info(), -border_size().left, -border_size().top, access_right, input->info()->dimension(1) + border_size().bottom);
85
86 AccessWindowHorizontal output_access(output->info(), 0, num_elems_processed_per_iteration);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010087
88 update_window_and_padding(win, input_access, output_access);
89
90 output_access.set_valid_region(win, ValidRegion(Coordinates(), output->info()->tensor_shape()));
91
Anthony Barbierb6eb3532018-08-08 13:20:04 +010092 ICLKernel::configure_internal(win);
Anthony Barbier6ff3b192017-09-04 18:44:23 +010093
94 // Set static arguments
95 unsigned int idx = 4 * num_arguments_per_2D_tensor(); //Skip the input and output parameters
96 _kernel.setArg<cl_float>(idx++, input->info()->dimension(0));
97 _kernel.setArg<cl_float>(idx++, input->info()->dimension(1));
98}
99
100void CLRemapKernel::run(const Window &window, cl::CommandQueue &queue)
101{
102 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
103 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
104
105 Window slice = window.first_slice_window_2D();
106
107 do
108 {
109 unsigned int idx = 0;
110 add_2D_tensor_argument(idx, _input, slice);
111 add_2D_tensor_argument(idx, _output, slice);
112 add_2D_tensor_argument(idx, _map_x, slice);
113 add_2D_tensor_argument(idx, _map_y, slice);
Georgios Pinitas275f99c2019-08-23 12:44:11 +0100114 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100115 }
116 while(window.slide_window_slice_2D(slice));
117}