aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorIsabella Gottardi <isabella.gottardi@arm.com>2019-01-31 17:45:07 +0000
committerIsabella Gottardi <isabella.gottardi@arm.com>2019-02-08 09:31:01 +0000
commit03bb550b72ebd107a6cbd994008cdcc00597d822 (patch)
tree2830099e47b8a77c63ef4146fb91a3a5a8dfc9be /tests
parent4f85982a55ae417edde6864304aeb1d69972973e (diff)
downloadComputeLibrary-03bb550b72ebd107a6cbd994008cdcc00597d822.tar.gz
COMPMID-1916: Add support for QASYMM8 LOGISTIC activation in NEActivationLayer
Change-Id: Ia9f47e8612b91594773092217c0fe43c6a92c401 Signed-off-by: Isabella Gottardi <isabella.gottardi@arm.com> Reviewed-on: https://review.mlplatform.org/625 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/validation/NEON/ActivationLayer.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/validation/NEON/ActivationLayer.cpp b/tests/validation/NEON/ActivationLayer.cpp
index ce89e6cc24..3a91c9c3be 100644
--- a/tests/validation/NEON/ActivationLayer.cpp
+++ b/tests/validation/NEON/ActivationLayer.cpp
@@ -221,7 +221,9 @@ using NEActivationLayerQuantizedFixture = ActivationValidationQuantizedFixture<T
/** Input data sets. */
const auto QuantizedActivationFunctionsDataset = framework::dataset::make("ActivationFunction", { ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU,
- ActivationLayerInfo::ActivationFunction::RELU
+ ActivationLayerInfo::ActivationFunction::RELU,
+ ActivationLayerInfo::ActivationFunction::BOUNDED_RELU,
+ ActivationLayerInfo::ActivationFunction::LOGISTIC
});
const auto QuantizedActivationDataset = combine(combine(framework::dataset::make("InPlace", { false, true }), QuantizedActivationFunctionsDataset),