From 5237e01c342b9301951a799842e9c48813b66fd4 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Wed, 17 Jan 2018 09:40:27 +0000 Subject: COMPMID-838 Implement CLPermute Change-Id: I6d97b649f1ebc289c9e6f8949e67740a6b3cbcb2 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/116636 Tested-by: Jenkins Reviewed-by: Pablo Tello Reviewed-by: Anthony Barbier --- tests/validation/CPP/Permute.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/validation/CPP/Permute.cpp') diff --git a/tests/validation/CPP/Permute.cpp b/tests/validation/CPP/Permute.cpp index 7f27f3cfff..3341da3ac7 100644 --- a/tests/validation/CPP/Permute.cpp +++ b/tests/validation/CPP/Permute.cpp @@ -42,10 +42,10 @@ namespace validation { namespace { -const auto PermuteParametersSmall = combine(concat(datasets::Small3DShapes(), datasets::Small4DShapes()), - framework::dataset::make("PermutationVector", { PermutationVector(2U, 0U, 1U), PermutationVector(1U, 2U, 0U) })); -const auto PermuteParametersLarge = combine(concat(datasets::Large3DShapes(), datasets::Large4DShapes()), - framework::dataset::make("PermutationVector", { PermutationVector(2U, 0U, 1U), PermutationVector(1U, 2U, 0U) })); +const auto PermuteParametersSmall = combine(datasets::Small4DShapes(), + framework::dataset::make("PermutationVector", { PermutationVector(2U, 0U, 1U), PermutationVector(1U, 2U, 0U), PermutationVector(3U, 2U, 0U, 1U) })); +const auto PermuteParametersLarge = combine(datasets::Large4DShapes(), + framework::dataset::make("PermutationVector", { PermutationVector(2U, 0U, 1U), PermutationVector(1U, 2U, 0U), PermutationVector(3U, 2U, 0U, 1U) })); } // namespace TEST_SUITE(CPP) TEST_SUITE(Permute) -- cgit v1.2.1