23.11
|
Interface for the kernel to calculate prior boxes. More...
#include <NEPriorBoxLayerKernel.h>
Public Member Functions | |
const char * | name () const override |
Name of the kernel. More... | |
NEPriorBoxLayerKernel () | |
Default constructor. More... | |
NEPriorBoxLayerKernel (const NEPriorBoxLayerKernel &)=delete | |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEPriorBoxLayerKernel & | operator= (const NEPriorBoxLayerKernel &)=delete |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEPriorBoxLayerKernel (NEPriorBoxLayerKernel &&)=default | |
Allow instances of this class to be moved. More... | |
NEPriorBoxLayerKernel & | operator= (NEPriorBoxLayerKernel &&)=default |
Allow instances of this class to be moved. More... | |
~NEPriorBoxLayerKernel ()=default | |
Default destructor. More... | |
void | configure (const ITensor *input1, const ITensor *input2, ITensor *output, const PriorBoxLayerInfo &info) |
Set the input and output tensors. 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... | |
Static Public Member Functions | |
static Status | validate (const ITensorInfo *input1, const ITensorInfo *input2, const ITensorInfo *output, const PriorBoxLayerInfo &info) |
Static function to check if given info will lead to a valid configuration of NEPriorBoxLayerKernel. More... | |
Additional Inherited Members | |
![]() | |
static constexpr size_t | default_mws = 1 |
Interface for the kernel to calculate prior boxes.
Definition at line 34 of file NEPriorBoxLayerKernel.h.
Default constructor.
Definition at line 85 of file NEPriorBoxLayerKernel.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.
void configure | ( | const ITensor * | input1, |
const ITensor * | input2, | ||
ITensor * | output, | ||
const PriorBoxLayerInfo & | info | ||
) |
Set the input and output tensors.
[in] | input1 | First source tensor. Data types supported: F32. Data layouts supported: NCHW/NHWC. |
[in] | input2 | Second source tensor. Data types and layouts supported: same as input1 |
[out] | output | Destination tensor. Output dimensions are [W * H * num_priors * 4, 2]. Data type supported: same as input |
[in] | info | Prior box layer info. |
Definition at line 214 of file NEPriorBoxLayerKernel.cpp.
References ARM_COMPUTE_ERROR_ON_NULLPTR, ARM_COMPUTE_ERROR_THROW_ON, arm_compute::calculate_max_window(), ITensor::info(), arm_compute::test::validation::info, and arm_compute::cpu::kernels::validate_arguments().
|
inlineoverridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 37 of file NEPriorBoxLayerKernel.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 245 of file NEPriorBoxLayerKernel.cpp.
References ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, ARM_COMPUTE_UNUSED, arm_compute::test::validation::info, and IKernel::window().
|
static |
Static function to check if given info will lead to a valid configuration of NEPriorBoxLayerKernel.
[in] | input1 | First source tensor info. Data types supported: F32. Data layouts supported: NCHW/NHWC. |
[in] | input2 | Second source tensor info. Data types and layouts supported: same as input1 |
[in] | output | Destination tensor info. Output dimensions are [W * H * num_priors * 4, 2]. Data type supported: same as input |
[in] | info | Prior box layer info. |
Definition at line 235 of file NEPriorBoxLayerKernel.cpp.
References ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR, ARM_COMPUTE_RETURN_ON_ERROR, arm_compute::test::validation::info, and arm_compute::cpu::kernels::validate_arguments().
Referenced by NEPriorBoxLayer::validate().