23.11
|
Interface for the batch to space kernel. More...
#include <NEBatchToSpaceLayerKernel.h>
Public Member Functions | |
const char * | name () const override |
Name of the kernel. More... | |
NEBatchToSpaceLayerKernel () | |
Default constructor. More... | |
NEBatchToSpaceLayerKernel (const NEBatchToSpaceLayerKernel &)=delete | |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEBatchToSpaceLayerKernel & | operator= (const NEBatchToSpaceLayerKernel &)=delete |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEBatchToSpaceLayerKernel (NEBatchToSpaceLayerKernel &&)=default | |
Allow instances of this class to be moved. More... | |
NEBatchToSpaceLayerKernel & | operator= (NEBatchToSpaceLayerKernel &&)=default |
Allow instances of this class to be moved. More... | |
~NEBatchToSpaceLayerKernel ()=default | |
Default destructor. More... | |
void | configure (const ITensor *input, const ITensor *block_shape, ITensor *output) |
Initialise the kernel's inputs and output. More... | |
void | configure (const ITensor *input, int32_t block_shape_x, int32_t block_shape_y, ITensor *output, const CropInfo &crop_info=CropInfo{}) |
Initialise the kernel's inputs and output (Static block shape). 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 *input, const ITensorInfo *block_shape, const ITensorInfo *output) |
Static function to check if given info will lead to a valid configuration of NEBatchToSpaceLayerKernel. More... | |
static Status | validate (const ITensorInfo *input, int32_t block_shape_x, int32_t block_shape_y, const ITensorInfo *output, const CropInfo &crop_info=CropInfo{}) |
Static function to check if given info will lead to a valid configuration of NEBatchToSpaceLayerKernel (Static block shape). More... | |
Additional Inherited Members | |
![]() | |
static constexpr size_t | default_mws = 1 |
Interface for the batch to space kernel.
Definition at line 36 of file NEBatchToSpaceLayerKernel.h.
Default constructor.
Definition at line 88 of file NEBatchToSpaceLayerKernel.cpp.
References arm_compute::UNKNOWN.
|
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 inputs and output.
[in] | input | Tensor input. Supported tensor rank: 4. Data types supported: All. |
[in] | block_shape | 1-D tensor with shape [M]. Data types supported: S32 |
[out] | output | Tensor output. Data types supported: same as input |
Definition at line 99 of file NEBatchToSpaceLayerKernel.cpp.
References ARM_COMPUTE_ERROR_ON_NULLPTR, ARM_COMPUTE_ERROR_THROW_ON, arm_compute::calculate_max_window(), ITensor::info(), arm_compute::test::validation::input, and arm_compute::cpu::kernels::validate_arguments().
void configure | ( | const ITensor * | input, |
int32_t | block_shape_x, | ||
int32_t | block_shape_y, | ||
ITensor * | output, | ||
const CropInfo & | crop_info = CropInfo{} |
||
) |
Initialise the kernel's inputs and output (Static block shape).
[in] | input | Tensor input. Supported tensor rank: 4. Data types supported: All. |
[in] | block_shape_x | Block shape x value. |
[in] | block_shape_y | Block shape y value. |
[out] | output | Tensor output. Data types supported: same as input |
[in] | crop_info | Specifies how the output shape is cropped after batch to space is performed |
Definition at line 114 of file NEBatchToSpaceLayerKernel.cpp.
References 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_batch_to_space_shape(), ITensor::info(), arm_compute::test::validation::input, and arm_compute::test::validation::output_shape.
|
inlineoverridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 39 of file NEBatchToSpaceLayerKernel.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 158 of file NEBatchToSpaceLayerKernel.cpp.
References ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, ARM_COMPUTE_UNUSED, ITensorInfo::dimension(), ITensorInfo::element_size(), arm_compute::execute_window_loop(), Window::first_slice_window_3D(), ITensor::info(), arm_compute::test::validation::info, Padding2D::left, arm_compute::NCHW, Iterator::ptr(), ITensor::ptr_to_element(), Window::set(), Window::slide_window_slice_3D(), Padding2D::top, arm_compute::utils::cast::U, IKernel::window(), Window::x(), and Window::y().
|
static |
Static function to check if given info will lead to a valid configuration of NEBatchToSpaceLayerKernel.
[in] | input | Tensor input. Supported tensor rank: 4. Data types supported: All. |
[in] | block_shape | 1-D tensor with shape [M]. Data types supported: S32 |
[in] | output | Tensor output. Data types supported: same as input |
Definition at line 140 of file NEBatchToSpaceLayerKernel.cpp.
References ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR, ARM_COMPUTE_RETURN_ON_ERROR, arm_compute::test::validation::input, and arm_compute::cpu::kernels::validate_arguments().
Referenced by NEBatchToSpaceLayer::validate().
|
static |
Static function to check if given info will lead to a valid configuration of NEBatchToSpaceLayerKernel (Static block shape).
[in] | input | Tensor input. Supported tensor rank: 4. Data types supported: All. |
[in] | block_shape_x | Block shape x value. |
[in] | block_shape_y | Block shape y value. |
[in] | output | Tensor output. Data types supported: same as input |
[in] | crop_info | Specifies how the output shape is cropped after batch to space is performed |
Definition at line 147 of file NEBatchToSpaceLayerKernel.cpp.
References ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR, ARM_COMPUTE_RETURN_ON_ERROR, and arm_compute::test::validation::input.