From 21f67d6763c82d78278f6bca6c6f9e42bb5ee1b9 Mon Sep 17 00:00:00 2001 From: Anthony Barbier Date: Fri, 16 Feb 2018 15:17:48 +0000 Subject: COMPMID-934: Return an error in Validate when we don't support asymmetric padding Currently an assert gets fired in debug mode, and we just ignore the asymmetric padding in release mode. Change-Id: Ia6278b5722f7e93f356a975ab3243e6bb07e44a8 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/120840 Reviewed-by: Michele DiGiorgio Tested-by: Jenkins Reviewed-by: Georgios Pinitas --- arm_compute/core/Types.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'arm_compute/core/Types.h') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 3affe7e8ec..417369cd9b 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -536,10 +536,14 @@ public: { return _stride; } + bool padding_is_symmetric() const + { + return (_pad_left == _pad_right) && (_pad_top == _pad_bottom); + } std::pair pad() const { //this accessor should be used only when padding is symmetric - ARM_COMPUTE_ERROR_ON(_pad_left != _pad_right || _pad_top != _pad_bottom); + ARM_COMPUTE_ERROR_ON(!padding_is_symmetric()); return std::make_pair(_pad_left, _pad_top); } -- cgit v1.2.1