aboutsummaryrefslogtreecommitdiff
path: root/tests/dataset
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2017-06-13 15:19:51 +0100
committerAnthony Barbier <anthony.barbier@arm.com>2018-09-17 13:03:43 +0100
commitf795986c8d4594279c277b14a33d29e48b2a4def (patch)
tree83c6c888e69fa380acaf81988f6a05d8035f627d /tests/dataset
parent7b06cde62a19ae0fda7bbbf0ab0bf18a88470af8 (diff)
downloadComputeLibrary-f795986c8d4594279c277b14a33d29e48b2a4def.tar.gz
COMPMID-378 NEMeanStdDev test completed.
Change-Id: I46fb77c0cb507a4c0fe3264a89dd7b2ba63c44dc Reviewed-on: http://mpd-gerrit.cambridge.arm.com/77427 Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com> Reviewed-by: Steven Niu <steven.niu@arm.com>
Diffstat (limited to 'tests/dataset')
-rw-r--r--tests/dataset/ShapeDatasets.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/dataset/ShapeDatasets.h b/tests/dataset/ShapeDatasets.h
index 73bdb8ea0e..d2b82cae40 100644
--- a/tests/dataset/ShapeDatasets.h
+++ b/tests/dataset/ShapeDatasets.h
@@ -102,6 +102,17 @@ public:
}
};
+/** Data set containing two small 2D tensor shapes. */
+class Small2DShapes final : public ShapeDataset<2>
+{
+public:
+ Small2DShapes()
+ : ShapeDataset(TensorShape(5U, 5U),
+ TensorShape(640U, 480U))
+ {
+ }
+};
+
/** Data set containing small tensor shapes. */
class SmallShapes final : public ShapeDataset<3>
{
@@ -125,6 +136,17 @@ public:
{
}
};
+
+/** Data set containing two 2D large tensor shapes. */
+class Large2DShapes final : public ShapeDataset<2>
+{
+public:
+ Large2DShapes()
+ : ShapeDataset(TensorShape(1920U, 1080U),
+ TensorShape(4160U, 3120U))
+ {
+ }
+};
} // namespace test
} // namespace arm_compute
#endif