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.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index dc87617f55..317c8990fa 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -538,11 +538,12 @@ enum class NonLinearFilterFunction : unsigned
/** Available reduction operations */
enum class ReductionOperation
{
- SUM_SQUARE, /**< Sum of squares */
- SUM, /**< Sum */
- MEAN_SUM, /**< Mean of sum */
ARG_IDX_MAX, /**< Index of the max value */
- ARG_IDX_MIN /**< Index of the min value */
+ ARG_IDX_MIN, /**< Index of the min value */
+ MEAN_SUM, /**< Mean of sum */
+ PROD, /**< Product */
+ SUM_SQUARE, /**< Sum of squares */
+ SUM /**< Sum */
};
/** Available element-wise operations */