aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/validation/NEON/LSTMLayer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/NEON/LSTMLayer.cpp b/tests/validation/NEON/LSTMLayer.cpp
index c503972ba9..45beb36e60 100644
--- a/tests/validation/NEON/LSTMLayer.cpp
+++ b/tests/validation/NEON/LSTMLayer.cpp
@@ -157,7 +157,7 @@ FIXTURE_DATA_TEST_CASE(RunSmall, NELSTMLayerFixture<float>, framework::DatasetMo
DataType::F32)),
framework::dataset::make("ProjectionOpt", { true, false })),
framework::dataset::make("PeepholeOpt", { true, false })),
- framework::dataset::make("UseLayerNorm", { false })))
+ framework::dataset::make("UseLayerNorm", { true, false })))
{
// Validate output
validate(Accessor(_target), _reference, tolerance_f32);
@@ -171,7 +171,7 @@ FIXTURE_DATA_TEST_CASE(RunSmall, NELSTMLayerFixture<half>, framework::DatasetMod
DataType::F16)),
framework::dataset::make("ProjectionOpt", { true, false })),
framework::dataset::make("PeepholeOpt", { true, false })),
- framework::dataset::make("UseLayerNorm", { false })))
+ framework::dataset::make("UseLayerNorm", { true, false })))
{
// Validate output
validate(Accessor(_target), _reference, tolerance_f16);