aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/ShapeDatasets.h
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2018-04-11 19:07:17 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:49:37 +0000
commit9373c8b2650f34b2804d3685588bad8e408ebe63 (patch)
tree4cc2330827578fcc87e6445071a105d48e1dd4c6 /tests/datasets/ShapeDatasets.h
parentfc1d1e2200f3056572b158b8208bac456f48339f (diff)
downloadComputeLibrary-9373c8b2650f34b2804d3685588bad8e408ebe63.tar.gz
COMPMID-1037 Add support for F(4x4, 5x5) in CLWinogradFilterTransformKernel
Change-Id: I6dd639bf5df9bc0c133996f75bdee767f70a6cfb Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/127469 Tested-by: Jenkins <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com>
Diffstat (limited to 'tests/datasets/ShapeDatasets.h')
-rw-r--r--tests/datasets/ShapeDatasets.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index 8255672430..76cf9a1835 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -405,6 +405,38 @@ public:
}
};
+/** Data set containing small 5x5 tensor shapes. */
+class Small5x5Shapes final : public ShapeDataset
+{
+public:
+ Small5x5Shapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 5U, 5U, 7U, 4U },
+ TensorShape{ 5U, 5U, 4U, 13U },
+ TensorShape{ 5U, 5U, 9U, 2U },
+ TensorShape{ 5U, 5U, 3U, 5U },
+ })
+ {
+ }
+};
+
+/** Data set containing large 5x5 tensor shapes. */
+class Large5x5Shapes final : public ShapeDataset
+{
+public:
+ Large5x5Shapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 5U, 5U, 32U, 64U },
+ TensorShape{ 5U, 5U, 51U, 13U },
+ TensorShape{ 5U, 5U, 53U, 47U },
+ TensorShape{ 5U, 5U, 128U, 384U },
+ })
+ {
+ }
+};
+
/** Data set containing small tensor shapes for deconvolution. */
class SmallDeconvolutionShapes final : public ShapeDataset
{