blob: 703c64d8d370af30f00987f43c318c9dc69e5e74 [file] [log] [blame]
Georgios Pinitasaaa27182018-11-21 16:32:15 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2018-2021, 2023 Arm Limited.
Georgios Pinitasaaa27182018-11-21 16:32:15 +00003 *
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 */
Sang-Hoon Parkbef7fa22020-10-21 15:58:54 +010024#include "src/core/CL/kernels/CLSelectKernel.h"
Georgios Pinitasaaa27182018-11-21 16:32:15 +000025
26#include "arm_compute/core/CL/CLHelpers.h"
27#include "arm_compute/core/CL/CLKernelLibrary.h"
Georgios Pinitasaaa27182018-11-21 16:32:15 +000028#include "arm_compute/core/CL/ICLTensor.h"
29#include "arm_compute/core/Helpers.h"
30#include "arm_compute/core/TensorInfo.h"
31#include "arm_compute/core/Utils.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000032#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010033
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010034#include "src/core/CL/CLValidate.h"
35#include "src/core/helpers/AutoConfiguration.h"
36#include "src/core/helpers/WindowHelpers.h"
Matthew Bentham758b5ba2020-03-05 23:37:48 +000037#include "support/StringSupport.h"
Georgios Pinitasaaa27182018-11-21 16:32:15 +000038
39namespace arm_compute
40{
41namespace
42{
43Status validate_arguments(const ITensorInfo *c, const ITensorInfo *x, const ITensorInfo *y, const ITensorInfo *output)
44{
Manuel Bottini6cca9932020-12-08 12:33:30 +000045 ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR(c, x, y, output);
Georgios Pinitasaaa27182018-11-21 16:32:15 +000046 ARM_COMPUTE_RETURN_ERROR_ON_F16_UNSUPPORTED(x);
Manuel Bottini8481d832019-12-10 15:28:40 +000047 ARM_COMPUTE_RETURN_ERROR_ON(x->data_type() == DataType::UNKNOWN);
Georgios Pinitasaaa27182018-11-21 16:32:15 +000048 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(x, y);
49 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(x, y);
50 ARM_COMPUTE_RETURN_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(c, 1, DataType::U8);
51
52 const bool is_same_rank = (c->tensor_shape().num_dimensions() == x->tensor_shape().num_dimensions());
53 ARM_COMPUTE_RETURN_ERROR_ON(is_same_rank && (x->tensor_shape() != c->tensor_shape()));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010054 ARM_COMPUTE_RETURN_ERROR_ON(!is_same_rank &&
55 ((c->tensor_shape().num_dimensions() > 1) ||
56 (c->tensor_shape().x() != x->tensor_shape()[x->tensor_shape().num_dimensions() - 1])));
Georgios Pinitasaaa27182018-11-21 16:32:15 +000057
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010058 if (output->total_size() != 0)
Georgios Pinitasaaa27182018-11-21 16:32:15 +000059 {
60 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(x, output);
61 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(x, output);
62 }
63
64 return Status{};
65}
Georgios Pinitasaaa27182018-11-21 16:32:15 +000066} // namespace
67
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010068CLSelectKernel::CLSelectKernel() : _c(nullptr), _x(nullptr), _y(nullptr), _output(nullptr), _has_same_rank(false)
Georgios Pinitasaaa27182018-11-21 16:32:15 +000069{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010070 _type = CLKernelType::ELEMENTWISE;
Georgios Pinitasaaa27182018-11-21 16:32:15 +000071}
Manuel Bottini4c6bd512020-04-08 10:15:51 +010072
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010073void CLSelectKernel::configure(const CLCompileContext &compile_context,
74 const ICLTensor *c,
75 const ICLTensor *x,
76 const ICLTensor *y,
77 ICLTensor *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010078{
Georgios Pinitasaaa27182018-11-21 16:32:15 +000079 ARM_COMPUTE_ERROR_ON_NULLPTR(c, x, y, output);
80 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(c->info(), x->info(), y->info(), output->info()));
81
82 _c = c;
83 _x = x;
84 _y = y;
85 _output = output;
86 _has_same_rank = (c->info()->tensor_shape().num_dimensions() == x->info()->tensor_shape().num_dimensions());
87
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010088 auto padding_info = get_padding_info({c, x, y, output});
Manuel Bottini6cca9932020-12-08 12:33:30 +000089 const unsigned int vec_size_x = adjust_vec_size(16 / x->info()->element_size(), x->info()->dimension(0));
90 const int vec_size_x_leftovers = output->info()->dimension(0) % vec_size_x;
Georgios Pinitasaaa27182018-11-21 16:32:15 +000091
92 // Set build options
93 CLBuildOptions build_opts;
Manuel Bottini6cca9932020-12-08 12:33:30 +000094 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(x->info()->element_size()));
95 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
96 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftovers));
Georgios Pinitasaaa27182018-11-21 16:32:15 +000097
98 // Create kernel
99 std::string kernel_name = "select";
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100100 if (_has_same_rank)
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000101 {
102 kernel_name += "_same_rank";
103 }
104 else
105 {
106 const bool is_input_rank_greater_than_two = x->info()->tensor_shape().num_dimensions() > 2;
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100107 if (is_input_rank_greater_than_two)
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000108 {
109 const size_t width = x->info()->tensor_shape().x();
110 const size_t height = x->info()->tensor_shape().y();
111 const size_t outer_size = x->info()->tensor_shape()[x->info()->tensor_shape().num_dimensions() - 1];
112 const size_t depth_size = x->info()->tensor_shape().total_size() / (width * height * outer_size);
113 build_opts.add_option("-DDEPTH_SIZE=" + support::cpp11::to_string(depth_size));
114 }
115 kernel_name += "_different_rank";
116 kernel_name += is_input_rank_greater_than_two ? "_n" : "_2";
117 }
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100118 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000119
120 // Configure kernel window
Manuel Bottini6cca9932020-12-08 12:33:30 +0000121 auto_init_if_empty(*output->info(), *x->info()->clone());
122 Window win = calculate_max_window(*x->info(), Steps(vec_size_x));
123 ICLKernel::configure_internal(win);
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000124
125 _config_id = "select_";
126 _config_id += string_from_data_type(x->info()->data_type());
127 _config_id += "_";
128 _config_id += support::cpp11::to_string(x->info()->dimension(0));
129 _config_id += "_";
130 _config_id += support::cpp11::to_string(x->info()->dimension(1));
131 _config_id += "_";
132 _config_id += support::cpp11::to_string(x->info()->dimension(2));
Manuel Bottini6cca9932020-12-08 12:33:30 +0000133 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000134}
135
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100136Status
137CLSelectKernel::validate(const ITensorInfo *c, const ITensorInfo *x, const ITensorInfo *y, const ITensorInfo *output)
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000138{
139 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(c, x, y, output));
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000140 return Status{};
141}
142
143void CLSelectKernel::run(const arm_compute::Window &window, cl::CommandQueue &queue)
144{
145 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
146 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
147
148 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
149 Window slice = collapsed.first_slice_window_3D();
150
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100151 if (!_has_same_rank)
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000152 {
153 Window vector_slice = window.first_slice_window_1D();
154 vector_slice.set(Window::DimX, Window::Dimension(0, 0, 0));
155 unsigned int idx = 0;
156 add_1D_tensor_argument(idx, _c, vector_slice);
157 }
158
159 do
160 {
161 unsigned int idx = _has_same_rank ? 0 : num_arguments_per_1D_tensor();
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100162 if (_has_same_rank)
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000163 {
164 add_3D_tensor_argument(idx, _c, slice);
165 }
166 add_3D_tensor_argument(idx, _x, slice);
167 add_3D_tensor_argument(idx, _y, slice);
168 add_3D_tensor_argument(idx, _output, slice);
169
170 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100171 } while (collapsed.slide_window_slice_3D(slice));
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000172}
173} // namespace arm_compute