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.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index 6b3b5c748f..86ed2b2ad7 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -198,6 +198,21 @@ public:
}
};
+/** Data set containing small tensor shapes for deconvolution. */
+class SmallDeconvolutionShapes final : public ShapeDataset
+{
+public:
+ SmallDeconvolutionShapes()
+ : ShapeDataset("InputShape",
+ {
+ TensorShape{ 2U, 3U, 3U, 2U },
+ TensorShape{ 5U, 5U, 3U },
+ TensorShape{ 11U, 13U, 4U, 3U }
+ })
+ {
+ }
+};
+
/** Data set containing small tensor shapes for direct convolution. */
class SmallDirectConvolutionShapes final : public ShapeDataset
{