From d1dc09c95602ec1506bb4934aed1792752b5ffcf Mon Sep 17 00:00:00 2001 From: Teresa Charlin Date: Thu, 4 Mar 2021 15:24:45 +0000 Subject: Port CpuTranspose to new API Partially Resolves: COMPMID-4277 (2/2) Signed-off-by: Teresa Charlin Change-Id: Id8ee520081fe905cb796d4376864fa84ac384caa Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/c/VisualCompute/ComputeLibrary/+/303714 Tested-by: bsgcomp Reviewed-by: Sang-Hoon Park Reviewed-by: Georgios Pinitas Comments-Addressed: bsgcomp Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5217 Tested-by: Arm Jenkins Reviewed-by: Manuel Bottini Comments-Addressed: Arm Jenkins --- arm_compute/runtime/NEON/functions/NEPermute.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute/runtime/NEON/functions/NEPermute.h') diff --git a/arm_compute/runtime/NEON/functions/NEPermute.h b/arm_compute/runtime/NEON/functions/NEPermute.h index cf7e25213b..fb95e45bdb 100644 --- a/arm_compute/runtime/NEON/functions/NEPermute.h +++ b/arm_compute/runtime/NEON/functions/NEPermute.h @@ -47,11 +47,11 @@ public: /** Prevent instances of this class from being copied (As this class contains pointers) */ NEPermute(const NEPermute &) = delete; /** Default move constructor */ - NEPermute(NEPermute &&); + NEPermute(NEPermute &&) = default; /** Prevent instances of this class from being copied (As this class contains pointers) */ NEPermute &operator=(const NEPermute &) = delete; /** Default move assignment operator */ - NEPermute &operator=(NEPermute &&); + NEPermute &operator=(NEPermute &&) = default; /** Configure the permute Neon kernel * * @note Arbitrary permutation vectors are supported with rank not greater than 4 -- cgit v1.2.1