23.11
|
Interface for the kernel to perform tensor re-organization. More...
#include <NEReorgLayerKernel.h>
Public Member Functions | |
const char * | name () const override |
Name of the kernel. More... | |
NEReorgLayerKernel () | |
Default constructor. More... | |
NEReorgLayerKernel (const NEReorgLayerKernel &)=delete | |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEReorgLayerKernel & | operator= (const NEReorgLayerKernel &)=delete |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEReorgLayerKernel (NEReorgLayerKernel &&)=default | |
Default Move Constructor. More... | |
NEReorgLayerKernel & | operator= (NEReorgLayerKernel &&)=default |
Default move assignment operator. More... | |
~NEReorgLayerKernel ()=default | |
Default destructor. More... | |
void | configure (const ITensor *input, ITensor *output, int32_t stride) |
Set the input and output of the kernel. 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 *output, int32_t stride) |
Static function to check if given info will lead to a valid configuration. More... | |
Additional Inherited Members | |
![]() | |
static constexpr size_t | default_mws = 1 |
Interface for the kernel to perform tensor re-organization.
Definition at line 35 of file NEReorgLayerKernel.h.
Default constructor.
Definition at line 72 of file NEReorgLayerKernel.cpp.
|
delete |
Prevent instances of this class from being copied (As this class contains pointers)
|
default |
Default Move Constructor.
|
default |
Default destructor.
Set the input and output of the kernel.
[in] | input | Source tensor. Data type supported: All |
[out] | output | Destination tensor. Data type supported: Same as input |
[in] | stride | Stride to be used during data re-organization. It defines the spatial distance between 2 consecutive pixels in the x and y direction |
Definition at line 76 of file NEReorgLayerKernel.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_reorg_output_shape(), ITensor::info(), arm_compute::test::validation::input, arm_compute::test::validation::output_shape, and arm_compute::cpu::kernels::validate_arguments().
|
inlineoverridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 38 of file NEReorgLayerKernel.h.
|
delete |
Prevent instances of this class from being copied (As this class contains pointers)
|
default |
Default move assignment operator.
|
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 105 of file NEReorgLayerKernel.cpp.
References ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, ARM_COMPUTE_UNUSED, ITensor::buffer(), arm_compute::CHANNEL, Window::collapse_if_possible(), arm_compute::cpu::data_layout, ITensorInfo::data_layout(), ITensorInfo::element_size(), arm_compute::execute_window_loop(), arm_compute::get_data_layout_dimension_index(), arm_compute::HEIGHT, ITensor::info(), arm_compute::test::validation::info, offset(), ITensorInfo::offset_element_in_bytes(), Iterator::ptr(), Dimensions< T >::set(), ITensorInfo::tensor_shape(), arm_compute::test::validation::w, arm_compute::WIDTH, and IKernel::window().
|
static |
Static function to check if given info will lead to a valid configuration.
[in] | input | Source tensor info. Data type supported: All |
[in] | output | Destination tensor info. Data type supported: Same as input |
[in] | stride | Stride to be used during data re-organization It defines the spatial distance between 2 consecutive pixels in the x and y direction |
Definition at line 99 of file NEReorgLayerKernel.cpp.
References ARM_COMPUTE_RETURN_ON_ERROR, arm_compute::test::validation::input, and arm_compute::cpu::kernels::validate_arguments().
Referenced by NEReorgLayer::validate().