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 76cf9a1835..b138a425b9 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -523,6 +523,21 @@ public:
}
};
+/** Data set containing tensor shapes for WidthConcatenateLayer. */
+class WidthConcatenateLayerShapes final : public ShapeDataset
+{
+public:
+ WidthConcatenateLayerShapes()
+ : ShapeDataset("Shape",
+ {
+ TensorShape{ 232U, 65U, 3U },
+ TensorShape{ 432U, 65U, 3U },
+ TensorShape{ 124U, 65U, 3U }
+ })
+ {
+ }
+};
+
/** Data set containing global pooling tensor shapes. */
class GlobalPoolingShapes final : public ShapeDataset
{