aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/FullyConnectedLayerDataset.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/datasets/FullyConnectedLayerDataset.h')
-rw-r--r--tests/datasets/FullyConnectedLayerDataset.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/datasets/FullyConnectedLayerDataset.h b/tests/datasets/FullyConnectedLayerDataset.h
index 5789954e85..9f8089d81a 100644
--- a/tests/datasets/FullyConnectedLayerDataset.h
+++ b/tests/datasets/FullyConnectedLayerDataset.h
@@ -120,10 +120,16 @@ public:
SmallFullyConnectedLayerDataset()
{
// Conv -> FC
+ add_config(TensorShape(1U, 1U, 1U, 3U), TensorShape(1U, 10U), TensorShape(10U), TensorShape(10U, 3U));
+ // Conv -> FC
add_config(TensorShape(9U, 5U, 7U), TensorShape(315U, 271U), TensorShape(271U), TensorShape(271U));
// Conv -> FC (batched)
add_config(TensorShape(9U, 5U, 7U, 3U), TensorShape(315U, 271U), TensorShape(271U), TensorShape(271U, 3U));
// FC -> FC
+ add_config(TensorShape(1U), TensorShape(1U, 10U), TensorShape(10U), TensorShape(10U));
+ // FC -> FC (batched)
+ add_config(TensorShape(1U, 3U), TensorShape(1U, 10U), TensorShape(10U), TensorShape(10U, 3U));
+ // FC -> FC
add_config(TensorShape(201U), TensorShape(201U, 529U), TensorShape(529U), TensorShape(529U));
// FC -> FC (batched)
add_config(TensorShape(201U, 3U), TensorShape(201U, 529U), TensorShape(529U), TensorShape(529U, 3U));