aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets
diff options
context:
space:
mode:
authorMichele Di Giorgio <michele.digiorgio@arm.com>2018-11-26 10:01:15 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2018-12-05 12:28:23 +0000
commit5daeffdd96c5e46ac2482431d578dfaf9b300cde (patch)
treedf972e6291d292b4280968dcb5040e4e08bfa6e8 /tests/datasets
parent0d0028ca25a47dd51260e2555b336fc9f09d1df1 (diff)
downloadComputeLibrary-5daeffdd96c5e46ac2482431d578dfaf9b300cde.tar.gz
COMPMID-1723: CL: Implement Reverse
Change-Id: Id0d4a07af24e2331161996083b0c1bab072bd405 Reviewed-on: https://review.mlplatform.org/322 Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/datasets')
-rw-r--r--tests/datasets/ShapeDatasets.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index ffacf34620..f7e7ae26b9 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -38,6 +38,20 @@ namespace datasets
/** Parent type for all for shape datasets. */
using ShapeDataset = framework::dataset::ContainerDataset<std::vector<TensorShape>>;
+/** Data set containing tiny 1D tensor shapes. */
+class Tiny1DShapes final : public ShapeDataset
+{
+public:
+ Tiny1DShapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 2U },
+ TensorShape{ 3U },
+ })
+ {
+ }
+};
+
/** Data set containing small 1D tensor shapes. */
class Small1DShapes final : public ShapeDataset
{