From e93626222041917617cbe1ccccbb472b47a2358c Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Fri, 23 Nov 2018 17:41:37 +0000 Subject: COMPMID-1719 CL: Implement RSqrt, Exp Change-Id: I827b26239043a9e90d26c2583122648d2a45303a Reviewed-on: https://review.mlplatform.org/317 Reviewed-by: Georgios Pinitas Tested-by: Arm Jenkins --- arm_compute/core/Types.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'arm_compute/core/Types.h') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index d46c93247c..6833a66cd9 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -563,6 +563,13 @@ enum class ArithmeticOperation SQUARED_DIFF, /**< (x - y)^2 */ }; +/** Available element wise unary operations */ +enum class ElementWiseUnary +{ + RSQRT, /**< Reverse square root */ + EXP, /**< Exponential */ +}; + /** The normalization type used for the normalization layer */ enum class NormType { -- cgit v1.2.1