blob: de3fb43de8cd96899f71903c3a1db7a8e4c36bc1 [file] [log] [blame]
Manuel Bottini63bb7ca2020-12-02 13:22:14 +00001/*
Matthew Bentham314d3e22023-06-23 10:53:52 +00002 * Copyright (c) 2020-2021, 2023 Arm Limited.
Manuel Bottini63bb7ca2020-12-02 13:22:14 +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 */
24#include "src/core/CL/kernels/CLBitwiseKernel.h"
25
26#include "arm_compute/core/CL/CLKernelLibrary.h"
27#include "arm_compute/core/CL/ICLTensor.h"
28#include "arm_compute/core/CL/OpenCL.h"
29#include "arm_compute/core/Helpers.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000030#include "arm_compute/core/Utils.h"
Matthew Bentham314d3e22023-06-23 10:53:52 +000031#include "arm_compute/core/utils/helpers/AdjustVecSize.h"
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010032#include "arm_compute/core/Validate.h"
33
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000034#include "src/core/helpers/AutoConfiguration.h"
35#include "src/core/helpers/WindowHelpers.h"
36#include "support/StringSupport.h"
37
38namespace arm_compute
39{
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010040CLBitwiseKernel::CLBitwiseKernel() : _input1(nullptr), _input2(nullptr), _output(nullptr)
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000041{
Giorgio Arena4a95bba2021-06-28 11:00:27 +010042 _type = CLKernelType::ELEMENTWISE;
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000043}
44
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010045void CLBitwiseKernel::configure(const CLCompileContext &compile_context,
46 const ICLTensor *input1,
47 const ICLTensor *input2,
48 ICLTensor *output,
49 BitwiseOperation op)
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000050{
51 ARM_COMPUTE_ERROR_ON_NULLPTR(input1);
52 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::U8);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010053 if (op != BitwiseOperation::NOT)
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000054 {
55 ARM_COMPUTE_ERROR_ON_NULLPTR(input2);
56 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 1, DataType::U8);
57 }
58 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
59 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8);
60
61 // Output auto inizialitation if not yet initialized
62 auto_init_if_empty(*(output->info()), *(input1->info()));
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010063 auto padding_info = get_padding_info({input1, input2, output});
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000064
65 // Configure kernel window
66 const unsigned int vec_size_x = adjust_vec_size(16 / output->info()->element_size(), output->info()->dimension(0));
67 Window win = calculate_max_window(*output->info(), Steps(vec_size_x));
68
69 _input1 = input1;
70 _input2 = input2;
71 _output = output;
72
73 // Create kernel
74 std::string kernel_name = "";
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +010075 switch (op)
Manuel Bottini63bb7ca2020-12-02 13:22:14 +000076 {
77 case BitwiseOperation::AND:
78 kernel_name = "bitwise_and";
79 break;
80 case BitwiseOperation::NOT:
81 kernel_name = "bitwise_not";
82 break;
83 case BitwiseOperation::OR:
84 kernel_name = "bitwise_or";
85 break;
86 case BitwiseOperation::XOR:
87 kernel_name = "bitwise_xor";
88 break;
89 default:
90 ARM_COMPUTE_ERROR("Bitwise operation not supported");
91 }
92
93 CLBuildOptions build_opts;
94 const int vec_size_x_leftovers = output->info()->dimension(0) % vec_size_x;
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));
97 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
98
99 ICLKernel::configure_internal(win);
100 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
101}
102
103void CLBitwiseKernel::run(const Window &window, cl::CommandQueue &queue)
104{
105 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
106 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
107
108 Window slice = window.first_slice_window_2D();
109
110 do
111 {
112 unsigned int idx = 0;
113 add_2D_tensor_argument(idx, _input1, slice);
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100114 if (_input2 != nullptr)
Manuel Bottini63bb7ca2020-12-02 13:22:14 +0000115 {
116 add_2D_tensor_argument(idx, _input2, slice);
117 }
118 add_2D_tensor_argument(idx, _output, slice);
119 enqueue(queue, *this, slice, lws_hint());
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100120 } while (window.slide_window_slice_2D(slice));
Manuel Bottini63bb7ca2020-12-02 13:22:14 +0000121}
Felix Thomasmathibalanafd38f02023-09-27 17:46:17 +0100122} // namespace arm_compute