blob: eb1ebf6c1450e03d0d09a0a3d24ee04823cbfd8f [file] [log] [blame]
Anthony Barbier6ff3b192017-09-04 18:44:23 +01001/*
Matthew Bentham758b5ba2020-03-05 23:37:48 +00002 * Copyright (c) 2016-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/CLHarrisCornersKernel.h"
25
Giorgio Arenafc2817d2017-06-27 17:26:37 +010026#include "arm_compute/core/AccessWindowStatic.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010027#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/CL/OpenCL.h"
31#include "arm_compute/core/Error.h"
32#include "arm_compute/core/Helpers.h"
33#include "arm_compute/core/TensorInfo.h"
34#include "arm_compute/core/Types.h"
35#include "arm_compute/core/Validate.h"
36#include "arm_compute/core/Window.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000037#include "support/StringSupport.h"
Anthony Barbier6ff3b192017-09-04 18:44:23 +010038
39#include <set>
40#include <sstream>
41#include <string>
42
43using namespace arm_compute;
44
45CLHarrisScoreKernel::CLHarrisScoreKernel()
46 : _input1(nullptr), _input2(nullptr), _output(nullptr), _sensitivity(), _strength_thresh(), _norm_factor(), _border_size(0)
47{
48}
49
50BorderSize CLHarrisScoreKernel::border_size() const
51{
52 return _border_size;
53}
54
55void CLHarrisScoreKernel::configure(const ICLImage *input1, const ICLImage *input2, ICLImage *output,
56 int32_t block_size, float norm_factor, float strength_thresh, float sensitivity,
57 bool border_undefined)
58{
59 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(input1);
60 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(input2);
61 ARM_COMPUTE_ERROR_ON_TENSOR_NOT_2D(output);
62 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::S16, DataType::S32);
63 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 1, DataType::S16, DataType::S32);
64 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::F32);
65 ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2);
66 ARM_COMPUTE_ERROR_ON(!(block_size == 3 || block_size == 5 || block_size == 7));
67 ARM_COMPUTE_ERROR_ON(0.0f == norm_factor);
68
69 _input1 = input1;
70 _input2 = input2;
71 _output = output;
72 _sensitivity = sensitivity;
73 _strength_thresh = strength_thresh;
74 _norm_factor = norm_factor;
75 _border_size = BorderSize(block_size / 2);
76
77 // Select kernel
78 std::stringstream harris_score_kernel_name;
79 harris_score_kernel_name << "harris_score_" << block_size << "x" << block_size;
80
81 // Create build options
82 std::set<std::string> build_opts = { ("-DDATA_TYPE=" + get_cl_type_from_data_type(input1->info()->data_type())) };
83
84 // Create kernel
85 _kernel = static_cast<cl::Kernel>(CLKernelLibrary::get().create_kernel(harris_score_kernel_name.str(), build_opts));
86
87 // Set static kernel arguments
88 unsigned int idx = 3 * num_arguments_per_2D_tensor(); //Skip the input and output parameters
89 _kernel.setArg(idx++, sensitivity);
90 _kernel.setArg(idx++, strength_thresh);
91 _kernel.setArg(idx++, norm_factor);
92
93 // Configure kernel window
94 constexpr unsigned int num_elems_processed_per_iteration = 4;
95 constexpr unsigned int num_elems_written_per_iteration = 4;
Giorgio Arenafc2817d2017-06-27 17:26:37 +010096 const unsigned int num_elems_read_per_iteration = block_size == 7 ? 10 : 8;
97 const unsigned int num_rows_read_per_iteration = block_size;
Anthony Barbier6ff3b192017-09-04 18:44:23 +010098
99 Window win = calculate_max_window(*_input1->info(), Steps(num_elems_processed_per_iteration), border_undefined, border_size());
100
101 AccessWindowRectangle input1_access(input1->info(), -border_size().left, -border_size().top, num_elems_read_per_iteration, num_rows_read_per_iteration);
102 AccessWindowRectangle input2_access(input2->info(), -border_size().left, -border_size().top, num_elems_read_per_iteration, num_rows_read_per_iteration);
103 AccessWindowHorizontal output_access(output->info(), 0, num_elems_written_per_iteration);
104
105 update_window_and_padding(win, input1_access, input2_access, output_access);
106
107 ValidRegion valid_region = intersect_valid_regions(input1->info()->valid_region(), input2->info()->valid_region());
108 output_access.set_valid_region(win, valid_region, border_undefined, border_size());
109
Anthony Barbierb6eb3532018-08-08 13:20:04 +0100110 ICLKernel::configure_internal(win);
Gary Antcliffefffbdbc2019-05-28 11:40:21 +0100111
112 // Set config_id for enabling LWS tuning
113 _config_id = harris_score_kernel_name.str();
114 _config_id += "_";
115 _config_id += lower_string(string_from_data_type(input1->info()->data_type()));
116 _config_id += "_";
117 _config_id += support::cpp11::to_string(input1->info()->dimension(0));
118 _config_id += "_";
119 _config_id += support::cpp11::to_string(input1->info()->dimension(1));
120 _config_id += "_";
121 _config_id += lower_string(string_from_data_type(input2->info()->data_type()));
122 _config_id += "_";
123 _config_id += support::cpp11::to_string(input2->info()->dimension(0));
124 _config_id += "_";
125 _config_id += support::cpp11::to_string(input2->info()->dimension(1));
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100126}
127
128void CLHarrisScoreKernel::run(const Window &window, cl::CommandQueue &queue)
129{
130 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
131 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
132
133 Window slice = window.first_slice_window_2D();
134 do
135 {
136 unsigned int idx = 0;
137 add_2D_tensor_argument(idx, _input1, slice);
138 add_2D_tensor_argument(idx, _input2, slice);
139 add_2D_tensor_argument(idx, _output, slice);
Michele Di Giorgio6b9f3882019-07-01 16:37:04 +0100140 enqueue(queue, *this, slice, lws_hint());
Anthony Barbier6ff3b192017-09-04 18:44:23 +0100141 }
142 while(window.slide_window_slice_2D(slice));
143}