aboutsummaryrefslogtreecommitdiff
path: root/arm_compute/core/Types.h
diff options
context:
space:
mode:
authorMichalis Spyrou <michalis.spyrou@arm.com>2018-11-23 17:41:37 +0000
committerMichalis Spyrou <michalis.spyrou@arm.com>2018-12-05 13:48:32 +0000
commite93626222041917617cbe1ccccbb472b47a2358c (patch)
tree330ce12c56885129ead626e8cb7e590b706f9305 /arm_compute/core/Types.h
parent0e2b526d785cf3c284752c551d7cb6806a3e118a (diff)
downloadComputeLibrary-e93626222041917617cbe1ccccbb472b47a2358c.tar.gz
COMPMID-1719 CL: Implement RSqrt, Exp
Change-Id: I827b26239043a9e90d26c2583122648d2a45303a Reviewed-on: https://review.mlplatform.org/317 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'arm_compute/core/Types.h')
-rw-r--r--arm_compute/core/Types.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h
index d46c93247c..6833a66cd9 100644
--- a/arm_compute/core/Types.h
+++ b/arm_compute/core/Types.h
@@ -563,6 +563,13 @@ enum class ArithmeticOperation
SQUARED_DIFF, /**< (x - y)^2 */
};
+/** Available element wise unary operations */
+enum class ElementWiseUnary
+{
+ RSQRT, /**< Reverse square root */
+ EXP, /**< Exponential */
+};
+
/** The normalization type used for the normalization layer */
enum class NormType
{