From 579c0498e161215be1a36080b0b454e5198a992a Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Wed, 12 Jul 2017 16:12:12 +0100 Subject: COMPMID-417: Add Leaky RELU support for both NEON/CL. -Adds parametrizable leaky relu (x>0) ? x : a*x. Change-Id: Ief19a435b5832a30b56f4aaaf55125787addee94 Reviewed-on: http://mpd-gerrit.cambridge.arm.com/80575 Reviewed-by: Anthony Barbier Tested-by: Kaizen --- arm_compute/core/Types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'arm_compute/core') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index 2bd449c5c6..765cae4ad4 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -505,6 +505,7 @@ public: TANH, /**< Hyperbolic tangent */ RELU, /**< Rectifier */ BOUNDED_RELU, /**< Bounded Rectifier */ + LEAKY_RELU, /**< Leaky Rectifier */ SOFT_RELU, /**< Soft Rectifier */ ABS, /**< Absolute */ SQUARE, /**< Square */ -- cgit v1.2.1