From a4a08ad5e33867f9938a3fbaf9b6dcc56ad8f7b5 Mon Sep 17 00:00:00 2001 From: Usama Arif Date: Mon, 20 May 2019 12:38:33 +0100 Subject: COMPMID-2280: Implement REDUCE_MIN operator for NEON Change-Id: Iaa8d97e3328ce69dae7a97a7111120ecc61fb465 Signed-off-by: Usama Arif Reviewed-on: https://review.mlplatform.org/c/1192 Comments-Addressed: Arm Jenkins Reviewed-by: Pablo Marquez Tested-by: Arm Jenkins --- arm_compute/core/Types.h | 3 ++- 1 file changed, 2 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 83ab2d755a..241c1fe1f4 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -559,7 +559,8 @@ enum class ReductionOperation MEAN_SUM, /**< Mean of sum */ PROD, /**< Product */ SUM_SQUARE, /**< Sum of squares */ - SUM /**< Sum */ + SUM, /**< Sum */ + MIN, /**< Min */ }; /** Available element-wise operations */ -- cgit v1.2.1