aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/NEON/Gather.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/NEON/Gather.cpp')
-rw-r--r--tests/validation/NEON/Gather.cpp10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/validation/NEON/Gather.cpp b/tests/validation/NEON/Gather.cpp
index 1ab2668aad..ca1e166bd1 100644
--- a/tests/validation/NEON/Gather.cpp
+++ b/tests/validation/NEON/Gather.cpp
@@ -100,14 +100,12 @@ DATA_TEST_CASE(Validate, framework::DatasetMode::ALL, zip(zip(zip(zip(
template <typename T>
using NEGatherFixture = GatherFixture<Tensor, Accessor, NEGather, T>;
-const auto gather_small_shapes = arm_compute::test::framework::dataset::concat(datasets::SmallGatherDataset(),datasets::SmallGatherMultiDimIndicesDataset());
-
TEST_SUITE(Float)
TEST_SUITE(FP16)
FIXTURE_DATA_TEST_CASE(RunSmall,
NEGatherFixture<half>,
framework::DatasetMode::PRECOMMIT,
- combine( gather_small_shapes, framework::dataset::make("DataType", DataType::F16)))
+ combine(datasets::SmallGatherDataset(), framework::dataset::make("DataType", DataType::F16)))
{
// Validate output
validate(Accessor(_target), _reference);
@@ -127,7 +125,7 @@ TEST_SUITE(FP32)
FIXTURE_DATA_TEST_CASE(RunSmall,
NEGatherFixture<float>,
framework::DatasetMode::PRECOMMIT,
- combine(gather_small_shapes, framework::dataset::make("DataType", DataType::F32)))
+ combine(datasets::SmallGatherDataset(), framework::dataset::make("DataType", DataType::F32)))
{
// Validate output
validate(Accessor(_target), _reference);
@@ -148,7 +146,7 @@ TEST_SUITE(U8)
FIXTURE_DATA_TEST_CASE(RunSmall,
NEGatherFixture<uint8_t>,
framework::DatasetMode::PRECOMMIT,
- combine(gather_small_shapes, framework::dataset::make("DataType", DataType::U8)))
+ combine(datasets::SmallGatherDataset(), framework::dataset::make("DataType", DataType::U8)))
{
// Validate output
validate(Accessor(_target), _reference);
@@ -168,7 +166,7 @@ TEST_SUITE(U16)
FIXTURE_DATA_TEST_CASE(RunSmall,
NEGatherFixture<uint16_t>,
framework::DatasetMode::PRECOMMIT,
- combine(gather_small_shapes, framework::dataset::make("DataType", DataType::U16)))
+ combine(datasets::SmallGatherDataset(), framework::dataset::make("DataType", DataType::U16)))
{
// Validate output
validate(Accessor(_target), _reference);