aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Types.h
diff options
context:
space:
mode:
Diffstat (limited to 'arm_compute/core/Types.h')
-rw-r--r--arm_compute/core/Types.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index 7db2f5fddf..7d632fec28 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -552,6 +552,17 @@ enum class ReductionOperation
ARG_IDX_MIN /**< Index of the min value */
};
+/** Available element-wise operations */
+enum class ArithmeticOperation
+{
+ ADD, /**< (x + y) */
+ SUB, /**< (x - y) */
+ DIV, /**< (x / y) */
+ MIN, /**< Min(x, y) */
+ MAX, /**< Max(x, y) */
+ SQUARED_DIFF, /**< (x - y)^2 */
+};
+
/** The normalization type used for the normalization layer */
enum class NormType
{