23.08
|
Kernel to multiply two input matrices "A" and "B". More...
#include <CpuGemmMatrixMultiplyKernel.h>
Data Structures | |
struct | GemmMatrixMulKernel |
Public Member Functions | |
CpuGemmMatrixMultiplyKernel ()=default | |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE (CpuGemmMatrixMultiplyKernel) | |
void | configure (const ITensorInfo *lhs, const ITensorInfo *rhs, ITensorInfo *dst, float alpha, bool is_interleaved, const GEMMReshapeInfo &reshape_info=GEMMReshapeInfo()) |
Initialise the kernel's input and output. 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 *lhs, const ITensorInfo *rhs, const ITensorInfo *dst, float alpha, bool is_interleaved, const GEMMReshapeInfo &reshape_info) |
Static function to check if given info will lead to a valid configuration of CpuGemmMatrixMultiplyKernel. More... | |
static const std::vector< GemmMatrixMulKernel > & | get_available_kernels () |
![]() | |
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 to multiply two input matrices "A" and "B".
All elements of the output matrix/vector will be multiplied by alpha after the matrix multiplication
lhs
and rhs
are both matrices and reshaped respectively with CpuGemmInterleave4x4Kernel" and CpuGemmTranspose1xWKernel lhs
is a vector and the second input tensor rhs
a matrix. The implementation also assumes that both tensors have not been reshaped Definition at line 42 of file CpuGemmMatrixMultiplyKernel.h.
|
default |
ARM_COMPUTE_DISALLOW_COPY_ALLOW_MOVE | ( | CpuGemmMatrixMultiplyKernel | ) |
void configure | ( | const ITensorInfo * | lhs, |
const ITensorInfo * | rhs, | ||
ITensorInfo * | dst, | ||
float | alpha, | ||
bool | is_interleaved, | ||
const GEMMReshapeInfo & | reshape_info = GEMMReshapeInfo() |
||
) |
Initialise the kernel's input and output.
lhs
and rhs
should be the output of the kernels: CpuGemmInterleave4x4Kernel and CpuGemmTranspose1xWKernel These two kernels change the layout of the original matrices to be more cache-friendly.[in] | lhs | Left-handside tensor info containing the interleaved Matrix A or the vector A. Data types supported: F16/F32 |
[in] | rhs | Right-handside tensor info containing the transposed Matrix B if the first input tensor A is not a vector. If the output tensor is a vector, rhs must contain the matrix B not reshaped. Data type supported: same as lhs |
[out] | dst | Output tensor to store the result of matrix multiplication. Data type supported: same as lhs . |
[in] | alpha | Weight of the matrix product |
[in] | is_interleaved | (Optional) True if lhs and rhs have been reshaped respectively using CpuGemmInterleave4x4Kernel and CpuGemmTranspose1xWKernel |
[in] | reshape_info | (Optional) GEMM reshape info. If is_interleaved_transposed = true, this object must contain the information to understand how lhs and rhs have been reshaped |
Definition at line 128 of file CpuGemmMatrixMultiplyKernel.cpp.
References ARM_COMPUTE_ERROR_ON_NULLPTR, ARM_COMPUTE_ERROR_THROW_ON, arm_compute::auto_init_if_empty(), arm_compute::calculate_max_window(), ICloneable< T >::clone(), ITensorInfo::data_type(), ITensorInfo::dimension(), arm_compute::test::validation::dst, arm_compute::F32, CPUInfo::get(), ICpuKernel< CpuGemmMatrixMultiplyKernel >::get_implementation(), GEMMReshapeInfo::m(), GEMMReshapeInfo::n(), TensorShape::set(), ITensorInfo::tensor_shape(), and arm_compute::cpu::kernels::validate_arguments().
|
static |
Definition at line 198 of file CpuGemmMatrixMultiplyKernel.cpp.
|
overridevirtual |
Name of the kernel.
Implements ICPPKernel.
Definition at line 193 of file CpuGemmMatrixMultiplyKernel.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 178 of file CpuGemmMatrixMultiplyKernel.cpp.
References arm_compute::ACL_DST, arm_compute::ACL_SRC_0, arm_compute::ACL_SRC_1, ARM_COMPUTE_ERROR_ON, ARM_COMPUTE_ERROR_ON_INVALID_SUBWINDOW, ARM_COMPUTE_ERROR_ON_UNCONFIGURED_KERNEL, arm_compute::test::validation::dst, ITensorPack::empty(), ITensorPack::get_const_tensor(), ITensorPack::get_tensor(), arm_compute::test::validation::info, and IKernel::window().
|
static |
Static function to check if given info will lead to a valid configuration of CpuGemmMatrixMultiplyKernel.
Similar to CpuGemmMatrixMultiplyKernel::configure()
Definition at line 170 of file CpuGemmMatrixMultiplyKernel.cpp.
References ARM_COMPUTE_RETURN_ON_ERROR, arm_compute::test::validation::dst, and arm_compute::cpu::kernels::validate_arguments().
Referenced by CpuGemm::validate().