23.11
|
Interface for the kernel to perform Pooling 3D. More...
#include <CpuPool3dKernel.h>
Data Structures | |
struct | Pooling3dKernel |
Public Member Functions | |
CpuPool3dKernel ()=default | |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE (CpuPool3dKernel) | |
void | configure (const ITensorInfo *src, ITensorInfo *dst, const Pooling3dLayerInfo &pool_info) |
Set the src, dst tensor and pooling info. 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... | |
![]() | |
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... | |
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 *src, const ITensorInfo *dst, const Pooling3dLayerInfo &pool_info) |
Static function to check if given info will lead to a valid configuration. More... | |
static const std::vector< Pooling3dKernel > & | 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 Pooling 3D.
Definition at line 39 of file CpuPool3dKernel.h.
|
default |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE | ( | CpuPool3dKernel | ) |
void configure | ( | const ITensorInfo * | src, |
ITensorInfo * | dst, | ||
const Pooling3dLayerInfo & | pool_info | ||
) |
Set the src, dst tensor and pooling info.
Valid data type configurations:
src | dst |
---|---|
F16 | F16 |
F32 | F32 |
QASYMM8 | QASYMM8 |
QASYMM8_SIGNED | QASYMM8_SIGNED |
[in] | src | Source tensor info. Data types supported: F16/F32/QASYMM8/QASYMM8_SIGNED. |
[out] | dst | Destination tensor info. Data types supported: Same as src . |
[in] | pool_info | Contains pooling operation information described in Pooling3dLayerInfo. |
Definition at line 116 of file CpuPool3dKernel.cpp.
References ARM_COMPUTE_ERROR_ON, ARM_COMPUTE_ERROR_ON_NULLPTR, ARM_COMPUTE_ERROR_THROW_ON, arm_compute::auto_init_if_empty(), arm_compute::calculate_max_window(), arm_compute::misc::shape_calculator::compute_pool3d_shape(), arm_compute::cpu::data_layout, Size3D::depth, arm_compute::DEPTH, arm_compute::test::validation::dst, CPUInfo::get(), arm_compute::get_data_layout_dimension_index(), ICpuKernel< CpuPool3dKernel >::get_implementation(), Size3D::height, arm_compute::HEIGHT, arm_compute::test::validation::idx_height, arm_compute::test::validation::idx_width, Pooling3dLayerInfo::is_global_pooling, Pooling3dLayerInfo::pool_size, arm_compute::test::validation::src, arm_compute::cpu::kernels::validate_arguments(), Size3D::width, and arm_compute::WIDTH.
|
static |
Definition at line 179 of file CpuPool3dKernel.cpp.
|
overridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 174 of file CpuPool3dKernel.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 161 of file CpuPool3dKernel.cpp.
References arm_compute::ACL_DST_0, arm_compute::ACL_SRC_0, 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::get_const_tensor(), ITensorPack::get_tensor(), arm_compute::test::validation::info, arm_compute::test::validation::src, and IKernel::window().
|
static |
Static function to check if given info will lead to a valid configuration.
Similar to CpuPool3dKernel::configure()
Definition at line 152 of file CpuPool3dKernel.cpp.
References ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR, ARM_COMPUTE_RETURN_ON_ERROR, arm_compute::test::validation::dst, arm_compute::test::validation::src, and arm_compute::cpu::kernels::validate_arguments().
Referenced by CpuPool3d::validate().