aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/ShapeDatasets.h
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2018-07-18 16:13:12 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-11-02 16:54:54 +0000
commit0f170396e84836ad8c54d54421e95c61812968be (patch)
treeb8993f251e3c023aca2856b2784e67eb9f11c8a4 /tests/datasets/ShapeDatasets.h
parentb6eb35371d222c6b7f61210d97ebd7dd9e197458 (diff)
downloadComputeLibrary-0f170396e84836ad8c54d54421e95c61812968be.tar.gz
COMPMID-1342 Add grouping support to CLIm2ColKernel
Change-Id: I4afb19751520a90fee27fb49b775cd10e92a94f5 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/140476 Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Tested-by: Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/datasets/ShapeDatasets.h')
-rw-r--r--tests/datasets/ShapeDatasets.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index 4a6d778f9f..a1ca983186 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -635,6 +635,39 @@ public:
}
};
+/** Data set containing small grouped im2col tensor shapes. */
+class GroupedIm2ColSmallShapes final : public ShapeDataset
+{
+public:
+ GroupedIm2ColSmallShapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 11U, 11U, 48U },
+ TensorShape{ 27U, 13U, 24U },
+ TensorShape{ 128U, 64U, 12U, 3U },
+ TensorShape{ 11U, 11U, 48U, 4U },
+ TensorShape{ 27U, 13U, 24U, 4U },
+ TensorShape{ 11U, 11U, 48U, 5U }
+ })
+ {
+ }
+};
+
+/** Data set containing large grouped im2col tensor shapes. */
+class GroupedIm2ColLargeShapes final : public ShapeDataset
+{
+public:
+ GroupedIm2ColLargeShapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 1921U, 1083U, 12U },
+ TensorShape{ 641U, 485U, 24U, 3U },
+ TensorShape{ 799U, 595U, 12U, 4U },
+ })
+ {
+ }
+};
+
/** Data set containing small grouped weights tensor shapes. */
class GroupedWeightsSmallShapes final : public ShapeDataset
{