23.08
|
Interface for the kernel to perform bitwise NOT operation. More...
#include <NEBitwiseNotKernel.h>
Public Member Functions | |
const char * | name () const override |
Name of the kernel. More... | |
NEBitwiseNotKernel () | |
Default constructor. More... | |
NEBitwiseNotKernel (const NEBitwiseNotKernel &)=delete | |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEBitwiseNotKernel & | operator= (const NEBitwiseNotKernel &)=delete |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEBitwiseNotKernel (NEBitwiseNotKernel &&)=default | |
Allow instances of this class to be moved. More... | |
NEBitwiseNotKernel & | operator= (NEBitwiseNotKernel &&)=default |
Allow instances of this class to be moved. More... | |
~NEBitwiseNotKernel ()=default | |
Default destructor. More... | |
void | configure (const ITensor *input, ITensor *output) |
Initialise the kernel's input and output. More... | |
void | run (const Window &window, const ThreadInfo &info) override |
Execute the kernel on the passed window. More... | |
![]() | |
virtual | ~ICPPKernel ()=default |
Default destructor. More... | |
virtual void | run_nd (const Window &window, const ThreadInfo &info, const Window &thread_locator) |
legacy compatibility layer for implemantions which do not support thread_locator In these cases we simply narrow the interface down the legacy version More... | |
virtual void | run_op (ITensorPack &tensors, const Window &window, const ThreadInfo &info) |
Execute the kernel on the passed window. More... | |
virtual size_t | get_mws (const CPUInfo &platform, size_t thread_count) const |
Return minimum workload size of the relevant kernel. More... | |
![]() | |
IKernel () | |
Constructor. More... | |
virtual | ~IKernel ()=default |
Destructor. More... | |
virtual bool | is_parallelisable () const |
Indicates whether or not the kernel is parallelisable. More... | |
virtual BorderSize | border_size () const |
The size of the border for that kernel. More... | |
const Window & | window () const |
The maximum window the kernel can be executed on. More... | |
bool | is_window_configured () const |
Function to check if the embedded window of this kernel has been configured. More... | |
Additional Inherited Members | |
![]() | |
static constexpr size_t | default_mws = 1 |
Interface for the kernel to perform bitwise NOT operation.
Result is computed by:
\[ output(x,y) = \lnot input(x,y) \]
Definition at line 38 of file NEBitwiseNotKernel.h.
Default constructor.
Definition at line 53 of file NEBitwiseNotKernel.cpp.
|
delete |
Prevent instances of this class from being copied (As this class contains pointers)
|
default |
Allow instances of this class to be moved.
|
default |
Default destructor.
Initialise the kernel's input and output.
[in] | input | An input tensor. Data type supported: U8. |
[out] | output | The output tensor. Data type supported: U8. |
Definition at line 58 of file NEBitwiseNotKernel.cpp.
References ARM_COMPUTE_ERROR_ON_DATA_TYPE_CHANNEL_NOT_IN, ARM_COMPUTE_ERROR_ON_MISMATCHING_DATA_TYPES, ARM_COMPUTE_ERROR_ON_MISMATCHING_SHAPES, ARM_COMPUTE_ERROR_ON_NULLPTR, arm_compute::calculate_max_window(), arm_compute::test::validation::configure(), ITensor::info(), arm_compute::test::validation::input, num_elems_processed_per_iteration, arm_compute::set_format_if_unknown(), arm_compute::set_shape_if_empty(), arm_compute::U8, and arm_compute::update_window_and_padding().
|
inlineoverridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 41 of file NEBitwiseNotKernel.h.
|
delete |
Prevent instances of this class from being copied (As this class contains pointers)
|
default |
Allow instances of this class to be moved.
|
overridevirtual |
Execute the kernel on the passed window.
[in] | window | Region on which to execute the kernel. (Must be a region of the window returned by window()) |
[in] | info | Info about executing thread and CPU. |
Reimplemented from ICPPKernel.
Definition at line 85 of file NEBitwiseNotKernel.cpp.
References ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, ARM_COMPUTE_UNUSED, arm_compute::execute_window_loop(), arm_compute::test::validation::info, arm_compute::test::validation::input, Iterator::ptr(), and IKernel::window().