aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL/LocallyConnected.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/CL/LocallyConnected.cpp')
-rw-r--r--tests/validation/CL/LocallyConnected.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/validation/CL/LocallyConnected.cpp b/tests/validation/CL/LocallyConnected.cpp
index de79d60e7f..6387fcc64a 100644
--- a/tests/validation/CL/LocallyConnected.cpp
+++ b/tests/validation/CL/LocallyConnected.cpp
@@ -110,8 +110,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
CLTensor src = create_tensor<CLTensor>(src_shape, data_type);
CLTensor weights = create_tensor<CLTensor>(weights_shape, data_type);