From 75eea338eb232ebdafa2fb84d22e711b5f964785 Mon Sep 17 00:00:00 2001 From: Sang-Hoon Park Date: Fri, 13 Nov 2020 13:44:13 +0000 Subject: COMPMID-3961: Add Logical OR/AND/NOT operator on CL Change-Id: I612aeed6affa17624fb9044964dd59c41a5c9888 Signed-off-by: Sang-Hoon Park Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4448 Reviewed-by: Pablo Marquez Tello Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins --- arm_compute/core/Types.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'arm_compute/core/Types.h') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 2e639c4be4..39cc29b0da 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -546,13 +546,14 @@ enum class ArithmeticOperation /** Available element wise unary operations */ enum class ElementWiseUnary { - RSQRT, /**< Reverse square root */ - EXP, /**< Exponential */ - NEG, /**< Negate */ - LOG, /**< Natural Logarithm */ - ABS, /**< Absolute value */ - SIN, /**< Sine */ - ROUND, /**< Round */ + RSQRT, /**< Reverse square root */ + EXP, /**< Exponential */ + NEG, /**< Negate */ + LOG, /**< Natural Logarithm */ + ABS, /**< Absolute value */ + SIN, /**< Sine */ + ROUND, /**< Round */ + LOGICAL_NOT, /**< Logical Not */ }; /** The normalization type used for the normalization layer */ -- cgit v1.2.1