aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Types.h
diff options
context:
space:
mode:
authorSang-Hoon Park <sang-hoon.park@arm.com>2020-11-13 13:44:13 +0000
committerSang-Hoon Park <sang-hoon.park@arm.com>2020-11-18 12:25:16 +0000
commit75eea338eb232ebdafa2fb84d22e711b5f964785 (patch)
treed069d26864c3ae180ff526262a1436af839a5bb0 /arm_compute/core/Types.h
parent10a73f5c0cc15ffba532bc923c6471f67af0959a (diff)
downloadComputeLibrary-75eea338eb232ebdafa2fb84d22e711b5f964785.tar.gz
COMPMID-3961: Add Logical OR/AND/NOT operator on CL
Change-Id: I612aeed6affa17624fb9044964dd59c41a5c9888 Signed-off-by: Sang-Hoon Park <sang-hoon.park@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4448 Reviewed-by: Pablo Marquez Tello <pablo.tello@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/Types.h')
-rw-r--r--arm_compute/core/Types.h15
1 files changed, 8 insertions, 7 deletions
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 */