aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2018-12-21 16:47:23 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-01-21 16:44:00 +0000
commita0a0e29f635de08092c2325f8f049ffb286aabaf (patch)
tree26e33498f278c0b54e7b47cd376e63be5ad526c5 /tests/datasets
parent3ddb9ae7c0b9e351179387e530922252315900ad (diff)
downloadComputeLibrary-a0a0e29f635de08092c2325f8f049ffb286aabaf.tar.gz
COMPMID-1766: Implemented CPP Non Max Suppression
Change-Id: I1dcd5fb3d9ad6c6c750415bf8074698b800dfbc1 Reviewed-on: https://review.mlplatform.org/494 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Giuseppe Rossini <giuseppe.rossini@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'tests/datasets')
-rw-r--r--tests/datasets/ShapeDatasets.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index d7ffc127ef..bd29fe649a 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -949,6 +949,37 @@ public:
{
}
};
+
+/** Data set containing small 2D tensor shapes. */
+class Small2DNonMaxSuppressionShapes final : public ShapeDataset
+{
+public:
+ Small2DNonMaxSuppressionShapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 4U, 7U },
+ TensorShape{ 4U, 13U },
+ TensorShape{ 4U, 64U }
+ })
+ {
+ }
+};
+
+/** Data set containing large 2D tensor shapes. */
+class Large2DNonMaxSuppressionShapes final : public ShapeDataset
+{
+public:
+ Large2DNonMaxSuppressionShapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 4U, 207U },
+ TensorShape{ 4U, 113U },
+ TensorShape{ 4U, 264U }
+ })
+ {
+ }
+};
+
} // namespace datasets
} // namespace test
} // namespace arm_compute