aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL/SpaceToBatchLayer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/CL/SpaceToBatchLayer.cpp')
-rw-r--r--tests/validation/CL/SpaceToBatchLayer.cpp21
1 files changed, 1 insertions, 20 deletions
diff --git a/tests/validation/CL/SpaceToBatchLayer.cpp b/tests/validation/CL/SpaceToBatchLayer.cpp
index 00ed1fa820..7fca9ec1f1 100644
--- a/tests/validation/CL/SpaceToBatchLayer.cpp
+++ b/tests/validation/CL/SpaceToBatchLayer.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018 ARM Limited.
+ * Copyright (c) 2018-2019 ARM Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -48,25 +48,6 @@ TEST_SUITE(SpaceToBatchLayer)
template <typename T>
using CLSpaceToBatchLayerFixture = SpaceToBatchLayerValidationFixture<CLTensor, CLAccessor, CLSpaceToBatchLayer, T>;
-DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(datasets::SmallSpaceToBatchLayerDataset(),
- framework::dataset::make("DataType", { DataType::F16, DataType::F32 })),
- input_shape, block_shape_shape, paddings_shape, output_shape, dt)
-{
- // Create tensors
- CLTensor src = create_tensor<CLTensor>(input_shape, dt, 1);
- CLTensor dst = create_tensor<CLTensor>(output_shape, dt, 1);
- CLTensor block_shape = create_tensor<CLTensor>(block_shape_shape, DataType::S32, 1);
- CLTensor paddings = create_tensor<CLTensor>(paddings_shape, DataType::S32, 1);
-
- // Create and Configure function
- CLSpaceToBatchLayer batch_to_space;
- batch_to_space.configure(&src, &block_shape, &paddings, &dst);
-
- // Validate valid region
- const ValidRegion valid_region = shape_to_valid_region(output_shape);
- validate(dst.info()->valid_region(), valid_region);
-}
-
// *INDENT-OFF*
// clang-format off
DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(