From 03b2971ac69a86f10a1566938d1a25afee15746c Mon Sep 17 00:00:00 2001 From: Viet-Hoa Do Date: Wed, 1 Jun 2022 11:47:14 +0100 Subject: Integrate SME2 kernels * Add SME/SME2 detection. * Integrate SME2 implementation for: - Normal convolution - Winograd - Depthwise convolution - Pooling Resolves: COMPMID-5700 Signed-off-by: Viet-Hoa Do Change-Id: I2f1ca1d05f8cfeee9309ed1c0a36096a4a6aad5c Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/8692 Reviewed-by: Gunes Bayir Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- arm_compute/core/CPP/CPPTypes.h | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'arm_compute/core/CPP/CPPTypes.h') diff --git a/arm_compute/core/CPP/CPPTypes.h b/arm_compute/core/CPP/CPPTypes.h index c3fb47fb61..e4cbd9ff9b 100644 --- a/arm_compute/core/CPP/CPPTypes.h +++ b/arm_compute/core/CPP/CPPTypes.h @@ -85,57 +85,57 @@ public: /** Checks if the cpu model supports fp16. * - * @return true of the cpu supports fp16, false otherwise + * @return true if the cpu supports fp16, false otherwise */ bool has_fp16() const; /** Checks if the cpu model supports bf16. * - * @return true of the cpu supports bf16, false otherwise + * @return true if the cpu supports bf16, false otherwise */ bool has_bf16() const; /** Checks if the cpu model supports bf16. * - * @return true of the cpu supports bf16, false otherwise + * @return true if the cpu supports bf16, false otherwise */ bool has_svebf16() const; /** Checks if the cpu model supports dot product. * - * @return true of the cpu supports dot product, false otherwise + * @return true if the cpu supports dot product, false otherwise */ bool has_dotprod() const; /** Checks if the cpu model supports floating-point matrix multiplication. * - * @return true of the cpu supports floating-point matrix multiplication, false otherwise + * @return true if the cpu supports floating-point matrix multiplication, false otherwise */ bool has_svef32mm() const; /** Checks if the cpu model supports integer matrix multiplication. * - * @return true of the cpu supports integer matrix multiplication, false otherwise + * @return true if the cpu supports integer matrix multiplication, false otherwise */ bool has_i8mm() const; /** Checks if the cpu model supports integer matrix multiplication. * - * @return true of the cpu supports integer matrix multiplication, false otherwise + * @return true if the cpu supports integer matrix multiplication, false otherwise */ bool has_svei8mm() const; /** Checks if the cpu model supports sve. * - * @return true of the cpu supports sve, false otherwise + * @return true if the cpu supports sve, false otherwise */ bool has_sve() const; /** Checks if the cpu model supports sve2. * - * @return true of the cpu supports sve2, false otherwise + * @return true if the cpu supports sve2, false otherwise */ bool has_sve2() const; /** Checks if the cpu model supports sme. * - * @return true of the cpu supports sme, false otherwise + * @return true if the cpu supports sme, false otherwise */ bool has_sme() const; /** Checks if the cpu model supports sme2. * - * @return true of the cpu supports sme2, false otherwise + * @return true if the cpu supports sme2, false otherwise */ bool has_sme2() const; /** Gets the cpu model for a given cpuid. -- cgit v1.2.1