From 37d080f2f11cfd734104b76512e1fb191486216e Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Fri, 21 Jun 2019 18:43:12 +0100 Subject: COMPMID-2378: Sanitize GEMM configuration for NEON Change-Id: I7859b82b2059e14685f8792424648ac5eacd67f1 Signed-off-by: Georgios Pinitas Reviewed-on: https://review.mlplatform.org/c/1418 Comments-Addressed: Arm Jenkins Reviewed-by: Michele Di Giorgio Reviewed-by: Michalis Spyrou Tested-by: Arm Jenkins --- arm_compute/core/WindowIterator.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'arm_compute/core/WindowIterator.h') diff --git a/arm_compute/core/WindowIterator.h b/arm_compute/core/WindowIterator.h index 32d6293a5a..15289b6d69 100644 --- a/arm_compute/core/WindowIterator.h +++ b/arm_compute/core/WindowIterator.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 ARM Limited. + * Copyright (c) 2018-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -86,6 +86,15 @@ public: _strides[dim] = size; } + /** Manually set the strides + * + * @param[in] strides Strides to set + */ + void set_strides(const Strides &strides) + { + _strides = strides; + } + /** Returns a pointer to the element at coordinates (x,y,z,w) * * @param[in] x X coordinates -- cgit v1.2.1