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.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index c7955bc8c5..551e7ffa8c 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -846,6 +846,38 @@ public:
{
}
};
+
+/** Data set containing small YOLO tensor shapes. */
+class SmallYOLOShapes final : public ShapeDataset
+{
+public:
+ SmallYOLOShapes()
+ : ShapeDataset("Shape",
+ {
+ // Batch size 1
+ TensorShape{ 11U, 11U, 270U },
+ TensorShape{ 27U, 13U, 90U },
+ TensorShape{ 128U, 64U, 45U, 2U },
+ TensorShape{ 11U, 11U, 45U, 3U }
+ })
+ {
+ }
+};
+
+/** Data set containing large YOLO tensor shapes. */
+class LargeYOLOShapes final : public ShapeDataset
+{
+public:
+ LargeYOLOShapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 24U, 23U, 270U },
+ TensorShape{ 51U, 63U, 90U, 2U },
+ TensorShape{ 76U, 91U, 45U, 3U }
+ })
+ {
+ }
+};
} // namespace datasets
} // namespace test
} // namespace arm_compute