aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/NEON/LocallyConnected.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/NEON/LocallyConnected.cpp')
-rw-r--r--tests/validation/NEON/LocallyConnected.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/validation/NEON/LocallyConnected.cpp b/tests/validation/NEON/LocallyConnected.cpp
index b00f27445c..0c36ff6c85 100644
--- a/tests/validation/NEON/LocallyConnected.cpp
+++ b/tests/validation/NEON/LocallyConnected.cpp
@@ -111,8 +111,10 @@ DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(zip(
DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(framework::dataset::concat(datasets::SmallLocallyConnectedDataset(), datasets::LargeLocallyConnectedDataset()),
framework::dataset::make("DataType", DataType::F32)),
- src_shape, weights_shape, bias_shape, dst_shape, info, data_type)
+ src_shape, weights_shape, bias_shape, dst_shape, info, dilation, data_type)
{
+ ARM_COMPUTE_UNUSED(dilation);
+
// Create tensors
Tensor src = create_tensor<Tensor>(src_shape, data_type);
Tensor weights = create_tensor<Tensor>(weights_shape, data_type);