From d9769583c44d8ad79e7fcf662715b2460e96084b Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 3 Aug 2017 10:19:40 +0100 Subject: COMPMID-: Implement L2NormalizationLayer. Change-Id: I2223850b84826a87650729d287c57c22bcab7462 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/82767 Tested-by: Kaizen Reviewed-by: Anthony Barbier --- arm_compute/core/Types.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'arm_compute/core/Types.h') 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 { -- cgit v1.2.1