aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Types.h
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2017-08-03 10:19:40 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 14:16:42 +0100
commitd9769583c44d8ad79e7fcf662715b2460e96084b (patch)
treea8eec300e5381d89b1f933534bfe4647b87fcf68 /arm_compute/core/Types.h
parentfcdbc664108270d8b0861adf2a6f773923c396b4 (diff)
downloadComputeLibrary-d9769583c44d8ad79e7fcf662715b2460e96084b.tar.gz
COMPMID-: Implement L2NormalizationLayer.
Change-Id: I2223850b84826a87650729d287c57c22bcab7462 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/82767 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
Diffstat (limited to 'arm_compute/core/Types.h')
-rw-r--r--arm_compute/core/Types.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index 2d3b3d6f66..3092976149 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -342,6 +342,12 @@ enum class NonLinearFilterFunction : unsigned
MAX = 2, /**< Non linear dilate. */
};
+/** Available reduction operations */
+enum class ReductionOperation
+{
+ SUM_SQUARE, /**< Sum of squares */
+};
+
/** The normalization type used for the normalization layer */
enum class NormType
{