blob: c0e014e8b88dd83fb338ea872d8115b6cb9cc17e [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"
Sang-Hoon Park68dd25f2020-10-19 16:00:11 +010033#include "src/core/CL/CLValidate.h"
34#include "src/core/helpers/AutoConfiguration.h"
35#include "src/core/helpers/WindowHelpers.h"
Georgios Pinitasaaa27182018-11-21 16:32:15 +000036
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()));
54 ARM_COMPUTE_RETURN_ERROR_ON(!is_same_rank && ((c->tensor_shape().num_dimensions() > 1) || (c->tensor_shape().x() != x->tensor_shape()[x->tensor_shape().num_dimensions() - 1])));
55
Manuel Bottini6cca9932020-12-08 12:33:30 +000056 if(output->total_size() != 0)
Georgios Pinitasaaa27182018-11-21 16:32:15 +000057 {
58 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_SHAPES(x, output);
59 ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES(x, output);
60 }
61
62 return Status{};
63}
Georgios Pinitasaaa27182018-11-21 16:32:15 +000064} // namespace
65
66CLSelectKernel::CLSelectKernel()
67 : _c(nullptr), _x(nullptr), _y(nullptr), _output(nullptr), _has_same_rank(false)
68{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010069 _type = CLKernelType::ELEMENTWISE;
Georgios Pinitasaaa27182018-11-21 16:32:15 +000070}
Manuel Bottini4c6bd512020-04-08 10:15:51 +010071
Manuel Bottini2803f702020-04-21 16:20:03 +010072void CLSelectKernel::configure(const CLCompileContext &compile_context, const ICLTensor *c, const ICLTensor *x, const ICLTensor *y, ICLTensor *output)
Manuel Bottini4c6bd512020-04-08 10:15:51 +010073{
Georgios Pinitasaaa27182018-11-21 16:32:15 +000074 ARM_COMPUTE_ERROR_ON_NULLPTR(c, x, y, output);
75 ARM_COMPUTE_ERROR_THROW_ON(validate_arguments(c->info(), x->info(), y->info(), output->info()));
76
77 _c = c;
78 _x = x;
79 _y = y;
80 _output = output;
81 _has_same_rank = (c->info()->tensor_shape().num_dimensions() == x->info()->tensor_shape().num_dimensions());
82
Manuel Bottini6cca9932020-12-08 12:33:30 +000083 auto padding_info = get_padding_info({ c, x, y, output });
84 const unsigned int vec_size_x = adjust_vec_size(16 / x->info()->element_size(), x->info()->dimension(0));
85 const int vec_size_x_leftovers = output->info()->dimension(0) % vec_size_x;
Georgios Pinitasaaa27182018-11-21 16:32:15 +000086
87 // Set build options
88 CLBuildOptions build_opts;
Manuel Bottini6cca9932020-12-08 12:33:30 +000089 build_opts.add_option("-DDATA_TYPE=" + get_cl_unsigned_type_from_element_size(x->info()->element_size()));
90 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
91 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftovers));
Georgios Pinitasaaa27182018-11-21 16:32:15 +000092
93 // Create kernel
94 std::string kernel_name = "select";
95 if(_has_same_rank)
96 {
97 kernel_name += "_same_rank";
98 }
99 else
100 {
101 const bool is_input_rank_greater_than_two = x->info()->tensor_shape().num_dimensions() > 2;
102 if(is_input_rank_greater_than_two)
103 {
104 const size_t width = x->info()->tensor_shape().x();
105 const size_t height = x->info()->tensor_shape().y();
106 const size_t outer_size = x->info()->tensor_shape()[x->info()->tensor_shape().num_dimensions() - 1];
107 const size_t depth_size = x->info()->tensor_shape().total_size() / (width * height * outer_size);
108 build_opts.add_option("-DDEPTH_SIZE=" + support::cpp11::to_string(depth_size));
109 }
110 kernel_name += "_different_rank";
111 kernel_name += is_input_rank_greater_than_two ? "_n" : "_2";
112 }
Manuel Bottini4c6bd512020-04-08 10:15:51 +0100113 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000114
115 // Configure kernel window
Manuel Bottini6cca9932020-12-08 12:33:30 +0000116 auto_init_if_empty(*output->info(), *x->info()->clone());
117 Window win = calculate_max_window(*x->info(), Steps(vec_size_x));
118 ICLKernel::configure_internal(win);
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000119
120 _config_id = "select_";
121 _config_id += string_from_data_type(x->info()->data_type());
122 _config_id += "_";
123 _config_id += support::cpp11::to_string(x->info()->dimension(0));
124 _config_id += "_";
125 _config_id += support::cpp11::to_string(x->info()->dimension(1));
126 _config_id += "_";
127 _config_id += support::cpp11::to_string(x->info()->dimension(2));
Manuel Bottini6cca9932020-12-08 12:33:30 +0000128 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000129}
130
131Status CLSelectKernel::validate(const ITensorInfo *c, const ITensorInfo *x, const ITensorInfo *y, const ITensorInfo *output)
132{
133 ARM_COMPUTE_RETURN_ON_ERROR(validate_arguments(c, x, y, output));
Georgios Pinitasaaa27182018-11-21 16:32:15 +0000134 return Status{};
135}
136
137void CLSelectKernel::run(const arm_compute::Window &window, cl::CommandQueue &queue)
138{
139 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
140 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
141
142 Window collapsed = window.collapse_if_possible(ICLKernel::window(), Window::DimZ);
143 Window slice = collapsed.first_slice_window_3D();
144
145 if(!_has_same_rank)
146 {
147 Window vector_slice = window.first_slice_window_1D();
148 vector_slice.set(Window::DimX, Window::Dimension(0, 0, 0));
149 unsigned int idx = 0;
150 add_1D_tensor_argument(idx, _c, vector_slice);
151 }
152
153 do
154 {
155 unsigned int idx = _has_same_rank ? 0 : num_arguments_per_1D_tensor();
156 if(_has_same_rank)
157 {
158 add_3D_tensor_argument(idx, _c, slice);
159 }
160 add_3D_tensor_argument(idx, _x, slice);
161 add_3D_tensor_argument(idx, _y, slice);
162 add_3D_tensor_argument(idx, _output, slice);
163
164 enqueue(queue, *this, slice, lws_hint());
165 }
166 while(collapsed.slide_window_slice_3D(slice));
167}
168} // namespace arm_compute