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 --- support/Bfloat16.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support') diff --git a/support/Bfloat16.h b/support/Bfloat16.h index 5fd45cf209..e67c729a6c 100644 --- a/support/Bfloat16.h +++ b/support/Bfloat16.h @@ -90,7 +90,7 @@ public: * * @param[in] v Floating-point value */ - explicit bfloat16(float v) + bfloat16(float v) : value(float_to_bf16(v)) { } -- cgit v1.2.1