Compute Library
 23.11
NEBitwiseAndKernel.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2021 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  */
25 
28 #include "arm_compute/core/Types.h"
30 
34 
35 #include <arm_neon.h>
36 #include <cstdint>
37 
38 using namespace arm_compute;
39 using namespace arm_compute::wrapper;
40 
41 namespace arm_compute
42 {
43 class Coordinates;
44 } // namespace arm_compute
45 
46 namespace
47 {
48 template <typename T>
49 inline void bitwise_and(const T *__restrict input1, const T *__restrict input2, T *__restrict output)
50 {
52  const type val1 = vloadq(static_cast<const T *>(input1));
53  const type val2 = vloadq(static_cast<const T *>(input2));
54 
55  vstore(static_cast<T *>(output), vand(val1, val2));
56 }
57 } // namespace
58 
59 NEBitwiseAndKernel::NEBitwiseAndKernel() : _input1(nullptr), _input2(nullptr), _output(nullptr)
60 {
61 }
62 
63 void NEBitwiseAndKernel::configure(const ITensor *input1, const ITensor *input2, ITensor *output)
64 {
65  ARM_COMPUTE_ERROR_ON_NULLPTR(input1, input2, output);
66 
67  set_shape_if_empty(*output->info(), input1->info()->tensor_shape());
68 
72 
73  ARM_COMPUTE_ERROR_ON_MISMATCHING_SHAPES(input1, input2, output);
77  ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(input1, input2, output);
78 
79  _input1 = input1;
80  _input2 = input2;
81  _output = output;
82 
83  constexpr unsigned int num_elems_processed_per_iteration = 16;
84 
85  // Configure kernel window
88 
91  output_access);
92 
94 }
95 
96 void NEBitwiseAndKernel::run(const Window &window, const ThreadInfo &info)
97 {
101  Iterator input1(_input1, window);
102  Iterator input2(_input2, window);
103  Iterator output(_output, window);
104 
106  window, [&](const Coordinates &) { bitwise_and<uint8_t>(input1.ptr(), input2.ptr(), output.ptr()); }, input1,
107  input2, output);
108 }
arm_compute::Steps
Class to describe a number of elements in each dimension.
Definition: Steps.h:40
arm_compute::test::validation::configure
im2col_func configure(src_target.info(), dst_target.info(), spatial_kernel, conv_info, has_bias)
type
decltype(strategy::transforms) typedef type
Definition: gemm_interleaved.hpp:261
arm_compute::ITensorInfo::tensor_shape
virtual const TensorShape & tensor_shape() const =0
Size for each dimension of the tensor.
ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN
#define ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN(t, c,...)
Definition: Validate.h:949
Helpers.h
arm_compute::calculate_max_window
Window calculate_max_window(const ValidRegion &valid_region, const Steps &steps, bool skip_border, BorderSize border_size)
Definition: WindowHelpers.cpp:29
NEBitwiseAndKernel.h
ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL
#define ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL(k)
Definition: Validate.h:1079
Types.h
arm_compute::AccessWindowHorizontal
Implementation of a row access pattern.
Definition: IAccessWindow.h:241
arm_compute::update_window_and_padding
bool update_window_and_padding(Window &win, Ts &&...patterns)
Update window and padding size for each of the access patterns.
Definition: WindowHelpers.h:46
arm_compute::ITensor
Interface for CPU tensor.
Definition: ITensor.h:36
arm_compute::wrapper::vloadq
uint8x16_t vloadq(const uint8_t *ptr)
Definition: load.h:58
arm_compute::wrapper
Definition: abs.h:31
wrapper.h
Includes all wrapper headers at once.
arm_compute::wrapper::traits::neon_bitvector
Create the appropriate SIMD vector given its type and size in terms of bits.
Definition: traits.h:101
ARM_COMPUTE_ERROR_ON_NULLPTR
#define ARM_COMPUTE_ERROR_ON_NULLPTR(...)
Definition: Validate.h:159
arm_compute::ITensor::info
virtual ITensorInfo * info() const =0
Interface to be implemented by the child class to return the tensor's metadata.
arm_compute::Iterator::ptr
constexpr uint8_t * ptr() const
Return a pointer to the current pixel.
Definition: Helpers.inl:147
arm_compute::execute_window_loop
void execute_window_loop(const Window &w, L &&lambda_function, Ts &&...iterators)
Iterate through the passed window, automatically adjusting the iterators and calling the lambda_funct...
Definition: Helpers.inl:74
arm_compute::Iterator
Iterator updated by execute_window_loop for each window element.
Definition: Helpers.h:46
arm_compute::DataType::U8
@ U8
unsigned 8-bit number
WindowHelpers.h
ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW
#define ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW(f, s)
Definition: Validate.h:203
arm_compute::wrapper::vand
uint8x8_t vand(const uint8x8_t &a, const uint8x8_t &b)
Definition: and.h:39
ARM_COMPUTE_UNUSED
#define ARM_COMPUTE_UNUSED(...)
To avoid unused variables warnings.
Definition: Error.h:151
arm_compute::Coordinates
Coordinates of an item.
Definition: Coordinates.h:37
arm_compute::Format::U8
@ U8
1 channel, 1 U8 per channel
AutoConfiguration.h
arm_compute::test::validation::reference::bitwise_and
SimpleTensor< T > bitwise_and(const SimpleTensor< T > &src1, const SimpleTensor< T > &src2)
Definition: BitwiseAnd.cpp:35
arm_compute::NEBitwiseAndKernel::configure
void configure(const ITensor *input1, const ITensor *input2, ITensor *output)
Initialise the kernel's inputs and output.
Definition: NEBitwiseAndKernel.cpp:63
arm_compute::IKernel::window
const Window & window() const
The maximum window the kernel can be executed on.
Definition: IKernel.cpp:28
arm_compute::ThreadInfo
Information about executing thread and CPU.
Definition: CPPTypes.h:180
arm_compute::set_shape_if_empty
bool set_shape_if_empty(ITensorInfo &info, const TensorShape &shape)
Set the shape to the specified value if the current assignment is empty.
Definition: AutoConfiguration.h:95
arm_compute::wrapper::vstore
void vstore(uint8_t *ptr, uint8x8_t val)
Definition: store.h:39
arm_compute::Window
Describe a multidimensional execution window.
Definition: Window.h:39
arm_compute::NEBitwiseAndKernel::run
void run(const Window &window, const ThreadInfo &info) override
Execute the kernel on the passed window.
Definition: NEBitwiseAndKernel.cpp:96
arm_compute
Copyright (c) 2017-2023 Arm Limited.
Definition: introduction.dox:24
arm_compute::NEBitwiseAndKernel::NEBitwiseAndKernel
NEBitwiseAndKernel()
Default constructor.
Definition: NEBitwiseAndKernel.cpp:59
arm_compute::set_format_if_unknown
bool set_format_if_unknown(ITensorInfo &info, Format format)
Set the format, data type and number of channels to the specified value if the current data type is u...
Definition: AutoConfiguration.h:114
ITensor.h
arm_compute::test::validation::info
ScaleKernelInfo info(interpolation_policy, default_border_mode, PixelValue(), sampling_policy, false)
ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES
#define ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES(...)
Definition: Validate.h:674
Validate.h
num_elems_processed_per_iteration
unsigned int num_elems_processed_per_iteration
Definition: ClIm2ColKernel.cpp:60
ARM_COMPUTE_ERROR_ON_MISMATCHING_SHAPES
#define ARM_COMPUTE_ERROR_ON_MISMATCHING_SHAPES(...)
Definition: Validate.h:572