aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core
diff options
context:
space:
mode:
authorPablo Marquez Tello <pablo.tello@arm.com>2022-06-10 09:20:14 +0100
committerPablo Marquez Tello <pablo.tello@arm.com>2022-06-15 21:24:13 +0000
commit586fff9f1e30ad06b52aec3332f956cc25cfe56f (patch)
tree3da60e6bbf93c9f2831025bed9656a77629bf8b9 /arm_compute/core
parentf8bb0928ed5e2acce2f6e0c2fd8caf8884141c79 (diff)
downloadComputeLibrary-586fff9f1e30ad06b52aec3332f956cc25cfe56f.tar.gz
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 <pablo.tello@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/7728 Reviewed-by: Michalis Spyrou <michalis.spyrou@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Benchmark: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core')
-rw-r--r--arm_compute/core/Window.h1
1 files changed, 1 insertions, 0 deletions
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 */