blob: b1f7c00facbf345cf9fa6173b55c9e152ecfcca1 [file] [log] [blame]
Manuel Bottini63bb7ca2020-12-02 13:22:14 +00001/*
2 * Copyright (c) 2020 Arm Limited.
3 *
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"
30#include "arm_compute/core/Validate.h"
31#include "src/core/helpers/AutoConfiguration.h"
32#include "src/core/helpers/WindowHelpers.h"
33#include "support/StringSupport.h"
34
35namespace arm_compute
36{
37CLBitwiseKernel::CLBitwiseKernel()
38 : _input1(nullptr), _input2(nullptr), _output(nullptr)
39{
40}
41
42void CLBitwiseKernel::configure(const CLCompileContext &compile_context, const ICLTensor *input1, const ICLTensor *input2, ICLTensor *output, BitwiseOperation op)
43{
44 ARM_COMPUTE_ERROR_ON_NULLPTR(input1);
45 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::U8);
46 if(op != BitwiseOperation::NOT)
47 {
48 ARM_COMPUTE_ERROR_ON_NULLPTR(input2);
49 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 1, DataType::U8);
50 }
51 ARM_COMPUTE_ERROR_ON_NULLPTR(output);
52 ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8);
53
54 // Output auto inizialitation if not yet initialized
55 auto_init_if_empty(*(output->info()), *(input1->info()));
56 auto padding_info = get_padding_info({ input1, input2, output });
57
58 // Configure kernel window
59 const unsigned int vec_size_x = adjust_vec_size(16 / output->info()->element_size(), output->info()->dimension(0));
60 Window win = calculate_max_window(*output->info(), Steps(vec_size_x));
61
62 _input1 = input1;
63 _input2 = input2;
64 _output = output;
65
66 // Create kernel
67 std::string kernel_name = "";
68 switch(op)
69 {
70 case BitwiseOperation::AND:
71 kernel_name = "bitwise_and";
72 break;
73 case BitwiseOperation::NOT:
74 kernel_name = "bitwise_not";
75 break;
76 case BitwiseOperation::OR:
77 kernel_name = "bitwise_or";
78 break;
79 case BitwiseOperation::XOR:
80 kernel_name = "bitwise_xor";
81 break;
82 default:
83 ARM_COMPUTE_ERROR("Bitwise operation not supported");
84 }
85
86 CLBuildOptions build_opts;
87 const int vec_size_x_leftovers = output->info()->dimension(0) % vec_size_x;
88 build_opts.add_option("-DVEC_SIZE=" + support::cpp11::to_string(vec_size_x));
89 build_opts.add_option("-DVEC_SIZE_LEFTOVER=" + support::cpp11::to_string(vec_size_x_leftovers));
90 _kernel = create_kernel(compile_context, kernel_name, build_opts.options());
91
92 ICLKernel::configure_internal(win);
93 ARM_COMPUTE_ERROR_ON(has_padding_changed(padding_info));
94}
95
96void CLBitwiseKernel::run(const Window &window, cl::CommandQueue &queue)
97{
98 ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
99 ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(ICLKernel::window(), window);
100
101 Window slice = window.first_slice_window_2D();
102
103 do
104 {
105 unsigned int idx = 0;
106 add_2D_tensor_argument(idx, _input1, slice);
107 if(_input2 != nullptr)
108 {
109 add_2D_tensor_argument(idx, _input2, slice);
110 }
111 add_2D_tensor_argument(idx, _output, slice);
112 enqueue(queue, *this, slice, lws_hint());
113 }
114 while(window.slide_window_slice_2D(slice));
115}
116} // namespace arm_compute