Introduce a enum class declaration for reduce operations. (#3461)
author장지섭/동작제어Lab(SR)/Engineer/삼성전자 <jiseob.jang@samsung.com>
Tue, 6 Nov 2018 08:50:30 +0000 (17:50 +0900)
committer오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Tue, 6 Nov 2018 08:50:30 +0000 (17:50 +0900)
This commit introduces a enum declaration for reduce operations.

Signed-off-by: jiseob.jang <jiseob.jang@samsung.com>
libs/ARMComputeEx/arm_compute/core/TypesEx.h

index e796308..073705e 100644 (file)
 
 namespace arm_compute
 {
+/** Available reduce operations */
+enum class ReduceOperation
+{
+  MAX,  /**< Max */
+  MEAN, /**< Mean */
+  SUM,  /**< Sum */
+};
+
 /** Activation Layer Information class */
 class ActivationLayerInfoEx
 {