23.11
|
Basic kernel to perform a tile operation. More...
#include <NETileKernel.h>
Public Member Functions | |
NETileKernel () | |
Default constructor. More... | |
NETileKernel (const NETileKernel &)=delete | |
Prevent instances of this class from being copied (As this class contains pointers). More... | |
NETileKernel & | operator= (const NETileKernel &)=delete |
Prevent instances of this class from being copied (As this class contains pointers). More... | |
NETileKernel (NETileKernel &&)=default | |
Allow instances of this class to be moved. More... | |
NETileKernel & | operator= (NETileKernel &&)=default |
Allow instances of this class to be moved. More... | |
~NETileKernel ()=default | |
Default destructor. More... | |
const char * | name () const override |
Name of the kernel. More... | |
void | configure (const ITensor *input, ITensor *output, const Multiples &multiples) |
Set the source, destination 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, const Multiples &multiples) |
Static function to check if given info will lead to a valid configuration of NETileKernel. More... | |
Additional Inherited Members | |
![]() | |
static constexpr size_t | default_mws = 1 |
Basic kernel to perform a tile operation.
Definition at line 34 of file NETileKernel.h.
NETileKernel | ( | ) |
Default constructor.
Definition at line 61 of file NETileKernel.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.
Set the source, destination of the kernel.
[in] | input | Source tensor. Data type supported: All. |
[out] | output | Destination tensor. Same as input |
[in] | multiples | Contains the number of times the input tensor should be replicated on the given dimension. |
Definition at line 65 of file NETileKernel.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_tiled_shape(), ITensor::info(), arm_compute::test::validation::input, and arm_compute::cpu::kernels::validate_arguments().
|
inlineoverridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 49 of file NETileKernel.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 90 of file NETileKernel.cpp.
References ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, ARM_COMPUTE_UNUSED, ITensorInfo::dimension(), Window::DimX, ITensorInfo::element_size(), arm_compute::execute_window_loop(), Window::first_slice_window_1D(), ITensor::info(), arm_compute::test::validation::info, Iterator::ptr(), ITensor::ptr_to_element(), Window::set(), ITensorInfo::tensor_shape(), arm_compute::test::validation::w, IKernel::window(), and Window::x().
|
static |
Static function to check if given info will lead to a valid configuration of NETileKernel.
[in] | input | Source tensor info. Data type supported: All. |
[in] | output | Destination tensor info. Same as input |
[in] | multiples | Contains the number of times the input tensor should be replicated on the given dimension. |
Definition at line 84 of file NETileKernel.cpp.
References ARM_COMPUTE_RETURN_ON_ERROR, arm_compute::test::validation::input, and arm_compute::cpu::kernels::validate_arguments().
Referenced by NETile::validate().