arm_compute v17.04
[platform/upstream/armcl.git] / src / core / NEON / kernels / NEBitwiseAndKernel.cpp
1 /*
2  * Copyright (c) 2016, 2017 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 "arm_compute/core/NEON/kernels/NEBitwiseAndKernel.h"
25
26 #include "arm_compute/core/Helpers.h"
27 #include "arm_compute/core/ITensor.h"
28 #include "arm_compute/core/Types.h"
29 #include "arm_compute/core/Validate.h"
30
31 #include <arm_neon.h>
32 #include <cstdint>
33
34 using namespace arm_compute;
35
36 namespace arm_compute
37 {
38 class Coordinates;
39 } // namespace arm_compute
40
41 namespace
42 {
43 inline void bitwise_and_U8_U8_U8(const uint8_t *__restrict input1, const uint8_t *__restrict input2, uint8_t *__restrict output)
44 {
45     const uint8x16_t val1 = vld1q_u8(input1);
46     const uint8x16_t val2 = vld1q_u8(input2);
47
48     vst1q_u8(output, vandq_u8(val1, val2));
49 }
50 } // namespace
51
52 NEBitwiseAndKernel::NEBitwiseAndKernel()
53     : _input1(nullptr), _input2(nullptr), _output(nullptr)
54 {
55 }
56
57 void NEBitwiseAndKernel::configure(const ITensor *input1, const ITensor *input2, ITensor *output)
58 {
59     ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input1, 1, DataType::U8);
60     ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(input2, 1, DataType::U8);
61     ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(output, 1, DataType::U8);
62
63     _input1 = input1;
64     _input2 = input2;
65     _output = output;
66
67     constexpr unsigned int num_elems_processed_per_iteration = 16;
68
69     // Configure kernel window
70     Window                 win = calculate_max_window(*input1->info(), Steps(num_elems_processed_per_iteration));
71     AccessWindowHorizontal output_access(output->info(), 0, num_elems_processed_per_iteration);
72
73     update_window_and_padding(win,
74                               AccessWindowHorizontal(input1->info(), 0, num_elems_processed_per_iteration),
75                               AccessWindowHorizontal(input2->info(), 0, num_elems_processed_per_iteration),
76                               output_access);
77
78     const ValidRegion valid_region = intersect_valid_regions(input1->info()->valid_region(),
79                                                              input2->info()->valid_region());
80
81     output_access.set_valid_region(win, valid_region);
82
83     INEKernel::configure(win);
84 }
85
86 void NEBitwiseAndKernel::run(const Window &window)
87 {
88     ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(this);
89     ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(INEKernel::window(), window);
90     Iterator input1(_input1, window);
91     Iterator input2(_input2, window);
92     Iterator output(_output, window);
93
94     execute_window_loop(window, [&](const Coordinates & id)
95     {
96         bitwise_and_U8_U8_U8(input1.ptr(), input2.ptr(), output.ptr());
97     },
98     input1, input2, output);
99 }