23.05
|
Basic function to simulate a pooling layer with the specified pooling operation. More...
#include <CpuPool2d.h>
Public Member Functions | |
CpuPool2d () | |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE (CpuPool2d) | |
~CpuPool2d () | |
void | configure (ITensorInfo *src, ITensorInfo *dst, const PoolingLayerInfo &pool_info, ITensorInfo *indices=nullptr) |
Set the src and dst tensors. More... | |
void | run (ITensorPack &tensors) override |
Run the kernels contained in the function. More... | |
experimental::MemoryRequirements | workspace () const override |
Return the memory requirements required by the workspace. More... | |
![]() | |
INEOperator (IRuntimeContext *ctx=nullptr) | |
Constructor. More... | |
INEOperator (const INEOperator &)=delete | |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
INEOperator (INEOperator &&)=default | |
Default move constructor. More... | |
INEOperator & | operator= (const INEOperator &)=delete |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
INEOperator & | operator= (INEOperator &&)=default |
Default move assignment operator. More... | |
~INEOperator () | |
Default destructor. More... | |
void | prepare (ITensorPack &constants) override |
Prepare the function for executing. More... | |
![]() | |
virtual | ~IOperator ()=default |
Destructor. More... | |
Static Public Member Functions | |
static Status | validate (const ITensorInfo *src, const ITensorInfo *dst, const PoolingLayerInfo &pool_info, const ITensorInfo *indices=nullptr) |
Static function to check if given info will lead to a valid configuration. More... | |
Basic function to simulate a pooling layer with the specified pooling operation.
This function calls the following kernels:
Definition at line 46 of file CpuPool2d.h.
CpuPool2d | ( | ) |
Definition at line 39 of file CpuPool2d.cpp.
References arm_compute::NCHW.
|
default |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE | ( | CpuPool2d | ) |
void configure | ( | ITensorInfo * | src, |
ITensorInfo * | dst, | ||
const PoolingLayerInfo & | pool_info, | ||
ITensorInfo * | indices = nullptr |
||
) |
Set the src and dst tensors.
[in,out] | src | Source tensor info. (Written to only when padding != 0) Data types supported: QASYMM8/QASYMM8_SIGNED/F16/F32. |
[out] | dst | Destination tensor info. Data types supported: same as src . |
[in] | pool_info | Contains pooling operation information described in PoolingLayerInfo. |
[out] | indices | (optional) The indices of the maximal values. Data type supported: U32. |
Definition at line 51 of file CpuPool2d.cpp.
References arm_compute::ACL_INT_0, ARM_COMPUTE_ERROR_ON, ARM_COMPUTE_LOG_PARAMS, ci, IScheduler::cpu_info(), ITensorInfo::data_layout(), PoolingLayerInfo::data_layout, ITensorInfo::dimension(), Scheduler::get(), arm_compute::get_data_layout_dimension_index(), Size2D::height, arm_compute::HEIGHT, arm_compute::test::validation::idx_height, arm_compute::test::validation::idx_width, arm_compute::test::validation::k, IScheduler::num_threads(), PoolingLayerInfo::pool_size, arm_compute::UNKNOWN, PoolingLayerInfo::use_kernel_indices, CpuPool2dAssemblyWrapperKernel::validate(), Size2D::width, and arm_compute::WIDTH.
|
overridevirtual |
Run the kernels contained in the function.
[in] | tensors | Vector that contains the tensors to operate on. |
Reimplemented from INEOperator.
Definition at line 104 of file CpuPool2d.cpp.
References ARM_COMPUTE_ERROR, ARM_COMPUTE_ERROR_ON_MSG, Window::DimX, Window::DimY, Window::DimZ, ITensorPack::empty(), Scheduler::get(), arm_compute::NCHW, arm_compute::NHWC, and IScheduler::schedule_op().
|
static |
Static function to check if given info will lead to a valid configuration.
Similar to CpuPool2d::configure()
Definition at line 92 of file CpuPool2d.cpp.
References CpuPool2dKernel::validate(), and CpuPool2dAssemblyWrapperKernel::validate().
Referenced by NEPoolingLayer::validate().
|
overridevirtual |
Return the memory requirements required by the workspace.
Reimplemented from INEOperator.
Definition at line 129 of file CpuPool2d.cpp.