23.11
|
Kernel which transposes the elements of a matrix. More...
#include <CpuTransposeKernel.h>
Public Member Functions | |
CpuTransposeKernel ()=default | |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE (CpuTransposeKernel) | |
void | configure (const ITensorInfo *src, ITensorInfo *dst) |
Configure kernel for a given list of arguments. More... | |
void | run_op (ITensorPack &tensors, const Window &window, const ThreadInfo &info) override |
Execute the kernel on the passed window. More... | |
const char * | name () const override |
Name of the kernel. More... | |
![]() | |
virtual | ~ICPPKernel ()=default |
Default destructor. More... | |
virtual void | run (const Window &window, const ThreadInfo &info) |
Execute the kernel on the passed window. 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 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 *src, const ITensorInfo *dst) |
Static function to check if given info will lead to a valid configuration. More... | |
![]() | |
static const auto * | get_implementation (const SelectorType &selector, KernelSelectionType selection_type=KernelSelectionType::Supported) |
Micro-kernel selector. More... | |
Additional Inherited Members | |
![]() | |
static constexpr size_t | default_mws = 1 |
Kernel which transposes the elements of a matrix.
Definition at line 37 of file CpuTransposeKernel.h.
|
default |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE | ( | CpuTransposeKernel | ) |
void configure | ( | const ITensorInfo * | src, |
ITensorInfo * | dst | ||
) |
Configure kernel for a given list of arguments.
[in] | src | Srouce tensor to permute. Data types supported: All |
[out] | dst | Destination tensor. Data types supported: Same as src |
Definition at line 732 of file CpuTransposeKernel.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_transposed_shape(), arm_compute::test::validation::dst, arm_compute::test::validation::dst_shape, Dimensions< T >::set_num_dimensions(), arm_compute::test::validation::src, and CpuTransposeKernel::validate().
|
overridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 813 of file CpuTransposeKernel.cpp.
|
overridevirtual |
Execute the kernel on the passed window.
[in] | tensors | A vector containing the tensors to operate on. |
[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 787 of file CpuTransposeKernel.cpp.
References arm_compute::ACL_DST, arm_compute::ACL_SRC, ARM_COMPUTE_ERROR, ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, ARM_COMPUTE_UNUSED, arm_compute::test::validation::dst, ITensorPack::get_const_tensor(), ITensorPack::get_tensor(), arm_compute::test::validation::info, arm_compute::test::validation::src, and IKernel::window().
|
static |
Static function to check if given info will lead to a valid configuration.
Similar to CpuTransposeKernel::configure()
Definition at line 764 of file CpuTransposeKernel.cpp.
References ARM_COMPUTE_RETURN_ERROR_ON, ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DATA_TYPES, ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_DIMENSIONS, ARM_COMPUTE_RETURN_ERROR_ON_MISMATCHING_QUANTIZATION_INFO, ARM_COMPUTE_RETURN_ERROR_ON_MSG, ARM_COMPUTE_RETURN_ERROR_ON_NULLPTR, arm_compute::misc::shape_calculator::compute_transposed_shape(), arm_compute::test::validation::dst, arm_compute::test::validation::dst_shape, arm_compute::test::validation::src, and arm_compute::UNKNOWN.
Referenced by CpuTransposeKernel::configure(), CpuTranspose::validate(), CpuMatMul::validate(), and CpuFullyConnected::validate().