aboutsummaryrefslogtreecommitdiff
path: root/arm_compute
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute')
-rw-r--r--arm_compute/core/Types.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index 39cc29b0da..59ba5aabb4 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -556,6 +556,15 @@ enum class ElementWiseUnary
LOGICAL_NOT, /**< Logical Not */
};
+/** Available bitwise operations */
+enum class BitwiseOperation
+{
+ AND, /**< Bitwise AND operation */
+ NOT, /**< Bitwise NOT operation */
+ OR, /**< Bitwise OR operation */
+ XOR, /**< Bitwise XOR operation */
+};
+
/** The normalization type used for the normalization layer */
enum class NormType
{