23.08
|
Interface for the kernel to perform addition between two tensors. More...
#include <CpuAddKernel.h>
Data Structures | |
struct | AddKernel |
Public Member Functions | |
CpuAddKernel ()=default | |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE (CpuAddKernel) | |
void | configure (const ITensorInfo *src0, const ITensorInfo *src1, ITensorInfo *dst, ConvertPolicy policy) |
Initialise the kernel's input, dst and border mode. More... | |
void | run_op (ITensorPack &tensors, const Window &window, const ThreadInfo &info) override |
Execute the kernel on the passed window. More... | |
const char * | name () const override |
Name of the kernel. More... | |
size_t | get_mws (const CPUInfo &platform, size_t thread_count) const override |
Return minimum workload size of the relevant kernel. More... | |
size_t | get_split_dimension () const |
![]() | |
virtual | ~ICPPKernel ()=default |
Default destructor. More... | |
virtual void | run (const Window &window, const ThreadInfo &info) |
Execute the kernel on the passed window. 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... | |
![]() | |
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... | |
Static Public Member Functions | |
static Status | validate (const ITensorInfo *src0, const ITensorInfo *src1, const ITensorInfo *dst, ConvertPolicy policy) |
Static function to check if given info will lead to a valid configuration. More... | |
static const std::vector< AddKernel > & | get_available_kernels () |
![]() | |
static const auto * | get_implementation (const SelectorType &selector, KernelSelectionType selection_type=KernelSelectionType::Supported) |
Micro-kernel selector. More... | |
Additional Inherited Members | |
![]() | |
static constexpr size_t | default_mws = 1 |
Interface for the kernel to perform addition between two tensors.
Definition at line 37 of file CpuAddKernel.h.
|
default |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE | ( | CpuAddKernel | ) |
void configure | ( | const ITensorInfo * | src0, |
const ITensorInfo * | src1, | ||
ITensorInfo * | dst, | ||
ConvertPolicy | policy | ||
) |
Initialise the kernel's input, dst and border mode.
Valid configurations (src0,src1) -> dst :
[in] | src0 | First input tensor info. Data types supported: U8/QASYMM8/QASYMM8_SIGNED/S16/QSYMM16/F16/S32/F32 |
[in] | src1 | Second input tensor info. Data types supported: U8/QASYMM8/QASYMM8_SIGNED/S16/QSYMM16/F16/S32/F32 |
[out] | dst | The dst tensor info. Data types supported: U8/QASYMM8/QASYMM8_SIGNED/S16/QSYMM16/F16/S32/F32. |
[in] | policy | Overflow policy. |
Definition at line 213 of file CpuAddKernel.cpp.
References arm_compute::cpu::add_q8_neon_fixedpoint_possible(), ARM_COMPUTE_ERROR_ON_NULLPTR, ARM_COMPUTE_ERROR_THROW_ON, TensorShape::broadcast_shape(), arm_compute::calculate_squashed_or_max_window(), ITensorInfo::data_type(), arm_compute::test::validation::dst, CPUInfo::get(), arm_compute::set_data_type_if_unknown(), arm_compute::set_shape_if_empty(), ITensorInfo::tensor_shape(), and arm_compute::cpu::kernels::validate_arguments().
|
static |
Definition at line 270 of file CpuAddKernel.cpp.
|
overridevirtual |
Return minimum workload size of the relevant kernel.
[in] | platform | The CPU platform used to create the context. |
[in] | thread_count | Number of threads in the execution. |
Reimplemented from ICPPKernel.
Definition at line 275 of file CpuAddKernel.cpp.
References arm_compute::cpu::add_fp32_neon(), ARM_COMPUTE_UNUSED, ICPPKernel::default_mws, CPUInfo::get_cpu_model(), arm_compute::N1, Window::num_iterations(), Window::num_iterations_total(), arm_compute::test::validation::shape, arm_compute::V1, and IKernel::window().
|
inline |
Definition at line 94 of file CpuAddKernel.h.
|
overridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 265 of file CpuAddKernel.cpp.
|
overridevirtual |
Execute the kernel on the passed window.
[in] | tensors | A vector containing the tensors to operate on. |
[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 249 of file CpuAddKernel.cpp.
References arm_compute::ACL_DST, arm_compute::ACL_SRC_0, arm_compute::ACL_SRC_1, ARM_COMPUTE_ERROR_ON, ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, ARM_COMPUTE_UNUSED, arm_compute::test::validation::dst, ITensorPack::empty(), ITensorPack::get_const_tensor(), ITensorPack::get_tensor(), arm_compute::test::validation::info, and IKernel::window().
|
static |
Static function to check if given info will lead to a valid configuration.
Similar to CpuAddKernel::configure()
Definition at line 240 of file CpuAddKernel.cpp.
References ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR, ARM_COMPUTE_RETURN_ON_ERROR, arm_compute::test::validation::dst, and arm_compute::cpu::kernels::validate_arguments().
Referenced by CpuAdd::validate().