aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2020-06-24 17:20:23 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2020-06-25 13:47:38 +0000
commit6cb26ce7ff35e0c9b634160603560feeb23b0cee (patch)
tree11b5c070ee68ab4b95f71fadef689875d7b6cfa1 /tests
parent70d43a3671090d7ab104909a9433c88e02593038 (diff)
downloadComputeLibrary-6cb26ce7ff35e0c9b634160603560feeb23b0cee.tar.gz
COMPMID-3150: Remove padding from NEL2NormalizationLayerKernel
Signed-off-by: Georgios Pinitas <georgios.pinitas@arm.com> Change-Id: I7ae0d56f1c1f55c7049509b1f80cc07bdc54c8ec Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/3457 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/validation/NEON/L2NormalizeLayer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/validation/NEON/L2NormalizeLayer.cpp b/tests/validation/NEON/L2NormalizeLayer.cpp
index 17147c1d50..0bbbf2acad 100644
--- a/tests/validation/NEON/L2NormalizeLayer.cpp
+++ b/tests/validation/NEON/L2NormalizeLayer.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2019 ARM Limited.
+ * Copyright (c) 2017-2020 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -99,7 +99,7 @@ using NEL2NormalizeLayerFixture = L2NormalizeLayerValidationFixture<Tensor, Acce
TEST_SUITE(FP32)
FIXTURE_DATA_TEST_CASE(RunSmall, NEL2NormalizeLayerFixture<float>, framework::DatasetMode::PRECOMMIT,
combine(combine(combine(combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::F32)), framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })),
- framework::dataset::make("Axis", { -1, 0, 2 })),
+ framework::dataset::make("Axis", { -1, 0, 1, 2 })),
framework::dataset::make("Epsilon", { 1e-12 })))
{
// Validate output
@@ -120,7 +120,7 @@ TEST_SUITE_END() // FP32
TEST_SUITE(FP16)
FIXTURE_DATA_TEST_CASE(RunSmall, NEL2NormalizeLayerFixture<half>, framework::DatasetMode::PRECOMMIT,
combine(combine(combine(combine(datasets::SmallShapes(), framework::dataset::make("DataType", DataType::F16)), framework::dataset::make("DataLayout", { DataLayout::NCHW, DataLayout::NHWC })),
- framework::dataset::make("Axis", { -1, 0, 2 })),
+ framework::dataset::make("Axis", { -1, 0, 1, 2 })),
framework::dataset::make("Epsilon", { 1e-12 })))
{
// Validate output