From 07df3d4b85f42245abf97e1a889e1fb3ef8af359 Mon Sep 17 00:00:00 2001 From: morgolock Date: Thu, 27 Feb 2020 11:46:28 +0000 Subject: COMPMID-3079: Implement Hard-Swish in NEON. Change-Id: I019e36f65b4d821009bada9c6cdebc096d893b54 Signed-off-by: morgolock Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/2802 Tested-by: Arm Jenkins Comments-Addressed: Arm Jenkins Reviewed-by: Michele Di Giorgio --- utils/TypePrinter.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'utils') diff --git a/utils/TypePrinter.h b/utils/TypePrinter.h index 1831733ec0..50eb4753d1 100644 --- a/utils/TypePrinter.h +++ b/utils/TypePrinter.h @@ -391,6 +391,10 @@ inline ::std::ostream &operator<<(::std::ostream &os, const ActivationLayerInfo: case ActivationLayerInfo::ActivationFunction::IDENTITY: os << "IDENTITY"; break; + case ActivationLayerInfo::ActivationFunction::HARD_SWISH: + os << "HARD_SWISH"; + break; + default: ARM_COMPUTE_ERROR("NOT_SUPPORTED!"); } -- cgit v1.2.1