From a27ff7f598a5664880a8327dcfa8abd7b06ea2be Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9E=A5=EC=A7=80=EC=84=AD/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Tue, 6 Nov 2018 17:50:30 +0900 Subject: [PATCH] Introduce a enum class declaration for reduce operations. (#3461) This commit introduces a enum declaration for reduce operations. Signed-off-by: jiseob.jang --- libs/ARMComputeEx/arm_compute/core/TypesEx.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/libs/ARMComputeEx/arm_compute/core/TypesEx.h b/libs/ARMComputeEx/arm_compute/core/TypesEx.h index e796308..073705e 100644 --- a/libs/ARMComputeEx/arm_compute/core/TypesEx.h +++ b/libs/ARMComputeEx/arm_compute/core/TypesEx.h @@ -25,6 +25,14 @@ namespace arm_compute { +/** Available reduce operations */ +enum class ReduceOperation +{ + MAX, /**< Max */ + MEAN, /**< Mean */ + SUM, /**< Sum */ +}; + /** Activation Layer Information class */ class ActivationLayerInfoEx { -- 2.7.4