23.11
|
Interface for the digit reverse operation kernel. More...
#include <NEFFTDigitReverseKernel.h>
Public Member Functions | |
const char * | name () const override |
Name of the kernel. More... | |
NEFFTDigitReverseKernel () | |
Constructor. More... | |
NEFFTDigitReverseKernel (const NEFFTDigitReverseKernel &)=delete | |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEFFTDigitReverseKernel & | operator= (const NEFFTDigitReverseKernel &)=delete |
Prevent instances of this class from being copied (As this class contains pointers) More... | |
NEFFTDigitReverseKernel (NEFFTDigitReverseKernel &&)=default | |
Default Move Constructor. More... | |
NEFFTDigitReverseKernel & | operator= (NEFFTDigitReverseKernel &&)=default |
Default move assignment operator. More... | |
~NEFFTDigitReverseKernel ()=default | |
Default destructor. More... | |
void | configure (const ITensor *input, ITensor *output, const ITensor *idx, const FFTDigitReverseKernelInfo &config) |
Set the input and output tensors. 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 ITensorInfo *idx, const FFTDigitReverseKernelInfo &config) |
Static function to check if given info will lead to a valid configuration of NEFFTDigitReverseKernel. More... | |
Additional Inherited Members | |
![]() | |
static constexpr size_t | default_mws = 1 |
Interface for the digit reverse operation kernel.
Definition at line 37 of file NEFFTDigitReverseKernel.h.
Constructor.
Definition at line 78 of file NEFFTDigitReverseKernel.cpp.
|
delete |
Prevent instances of this class from being copied (As this class contains pointers)
|
default |
Default Move Constructor.
|
default |
Default destructor.
void configure | ( | const ITensor * | input, |
ITensor * | output, | ||
const ITensor * | idx, | ||
const FFTDigitReverseKernelInfo & | config | ||
) |
Set the input and output tensors.
[in] | input | Source tensor. Data types supported: F32. Number of channels supported: 1 (real tensor) or 2 (complex tensor). |
[out] | output | Destination tensor. Data type supported: same as input . Number of channels supported: 2 (complex tensor). |
[in] | idx | Digit reverse index tensor. Data type supported: U32 |
[in] | config | Kernel configuration. |
Definition at line 82 of file NEFFTDigitReverseKernel.cpp.
References ARM_COMPUTE_ERROR, ARM_COMPUTE_ERROR_ON_NULLPTR, ARM_COMPUTE_ERROR_THROW_ON, FFTDigitReverseKernelInfo::axis, FFTDigitReverseKernelInfo::conjugate, ITensor::info(), arm_compute::test::validation::input, arm_compute::cpu::kernels::validate_and_configure_window(), and arm_compute::cpu::kernels::validate_arguments().
|
inlineoverridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 40 of file NEFFTDigitReverseKernel.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 270 of file NEFFTDigitReverseKernel.cpp.
References ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, ARM_COMPUTE_UNUSED, arm_compute::test::validation::info, and IKernel::window().
|
static |
Static function to check if given info will lead to a valid configuration of NEFFTDigitReverseKernel.
[in] | input | Source tensor info. Data types supported: F32. Number of channels supported: 1 (real tensor) or 2 (complex tensor). |
[in] | output | Destination tensor info. Data type supported: same as input . Number of channels supported: 2 (complex tensor). |
[in] | idx | Digit reverse index tensor info. Data type supported: U32 |
[in] | config | Kernel configuration |
Definition at line 145 of file NEFFTDigitReverseKernel.cpp.
References ARM_COMPUTE_RETURN_ON_ERROR, ICloneable< T >::clone(), arm_compute::test::validation::input, arm_compute::cpu::kernels::validate_and_configure_window(), and arm_compute::cpu::kernels::validate_arguments().