From 586fff9f1e30ad06b52aec3332f956cc25cfe56f Mon Sep 17 00:00:00 2001 From: Pablo Marquez Tello Date: Fri, 10 Jun 2022 09:20:14 +0100 Subject: Fix build error v8.2-a-sve * bf16 instrinsics should be used when __ARM_FEATURE_SVE_BF16 is present * Fixed NDK14 compiler warning declaring copy ctor for Window explicitly * Resolves MLCE-867 Change-Id: I84ac5f213d9700e2fda7da55d83bba7cf79ad52c Signed-off-by: Pablo Marquez Tello Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7728 Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins Benchmark: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/core/Window.h | 1 + 1 file changed, 1 insertion(+) (limited to 'arm_compute/core') diff --git a/arm_compute/core/Window.h b/arm_compute/core/Window.h index c566cffa88..440b942dcf 100644 --- a/arm_compute/core/Window.h +++ b/arm_compute/core/Window.h @@ -90,6 +90,7 @@ public: : _start(start), _end(end), _step(step) { } + Dimension(const Dimension &d) = default; /** Default assignment operator to allow dimensions to be copied */ Dimension &operator=(const Dimension &d) = default; /** Return the start of the dimension */ -- cgit v1.2.1