aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/ShapeDatasets.h
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-02-15 17:22:36 +0000
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:47:18 +0000
commit02ee4291795f64fb510a71c6c754671438635186 (patch)
treef802116a435ec454f0165943131565b788d01a31 /tests/datasets/ShapeDatasets.h
parent82833b80b1a28ff32fe3c3b2f4996fa21a08bbbc (diff)
downloadComputeLibrary-02ee4291795f64fb510a71c6c754671438635186.tar.gz
COMPMID-765: Fix CPPPermute error when permuting the strides.
Change-Id: I4ea57579d997dd6a2e248634e3b7cb58bb3e2838 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/120693 Reviewed-by: Pablo Tello <pablo.tello@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/datasets/ShapeDatasets.h')
-rw-r--r--tests/datasets/ShapeDatasets.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index 733394224c..4b563708e1 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -100,7 +100,8 @@ public:
Small3DShapes()
: ShapeDataset("Shape",
{
- TensorShape{ 7U, 7U, 5U },
+ TensorShape{ 1U, 7U, 7U },
+ TensorShape{ 7U, 7U, 5U },
TensorShape{ 27U, 13U, 37U },
TensorShape{ 128U, 64U, 21U }
})
@@ -128,7 +129,8 @@ public:
Small4DShapes()
: ShapeDataset("Shape",
{
- TensorShape{ 7U, 7U, 5U, 3U },
+ TensorShape{ 1U, 7U, 1U, 3U },
+ TensorShape{ 7U, 7U, 5U, 3U },
TensorShape{ 27U, 13U, 37U, 2U },
TensorShape{ 128U, 64U, 21U, 3U }
})