aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/ShapeDatasets.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/datasets/ShapeDatasets.h')
-rw-r--r--tests/datasets/ShapeDatasets.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index 45f5d1c9ff..3dc4566e18 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -135,6 +135,22 @@ public:
}
};
+/** Data set containing medium 2D tensor shapes. */
+class Medium2DShapes final : public ShapeDataset
+{
+public:
+ Medium2DShapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 42U, 37U },
+ TensorShape{ 57U, 60U },
+ TensorShape{ 128U, 64U },
+ TensorShape{ 83U, 72U }
+ })
+ {
+ }
+};
+
/** Data set containing large tensor shapes. */
class LargeShapes final : public ShapeDataset
{