From 81e671ef4f2a8fb3128fba402610b9de28b57891 Mon Sep 17 00:00:00 2001 From: Usama Arif Date: Mon, 13 May 2019 13:33:14 +0100 Subject: COMPMID-2269: Implement POW operator for NEON Change-Id: I7135f665d89da3c24c9bbe00e991a64713a41d0e Signed-off-by: Usama Arif Reviewed-on: https://review.mlplatform.org/c/1128 Reviewed-by: Michalis Spyrou Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- arm_compute/core/Types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'arm_compute/core/Types.h') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 9ecd7ff2e1..99ec44d5e0 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -571,6 +571,7 @@ enum class ArithmeticOperation MIN, /**< Min(x, y) */ MAX, /**< Max(x, y) */ SQUARED_DIFF, /**< (x - y)^2 */ + POWER, /**< x ^ y */ }; /** Available element wise unary operations */ -- cgit v1.2.1