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 --- src/core/NEON/kernels/arm_conv/depthwise/depthwise_planar.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/core/NEON/kernels/arm_conv/depthwise/depthwise_planar.hpp') diff --git a/src/core/NEON/kernels/arm_conv/depthwise/depthwise_planar.hpp b/src/core/NEON/kernels/arm_conv/depthwise/depthwise_planar.hpp index ff5098d551..f3160fba27 100644 --- a/src/core/NEON/kernels/arm_conv/depthwise/depthwise_planar.hpp +++ b/src/core/NEON/kernels/arm_conv/depthwise/depthwise_planar.hpp @@ -256,6 +256,9 @@ class DepthwisePlanar : public DepthwiseCommon { } + DepthwisePlanar(DepthwisePlanar &) = delete; + DepthwisePlanar &operator=(DepthwisePlanar &) = delete; + size_t get_storage_size(void) const override { return m_strat->get_storage_size(this->m_args); -- cgit v1.2.1