aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets
diff options
context:
space:
mode:
authorGeorgios Pinitas <georgios.pinitas@arm.com>2018-12-12 19:14:27 +0000
committerGeorgios Pinitas <georgios.pinitas@arm.com>2018-12-13 10:42:25 +0000
commit0e7210de821a7d1164017b8b9e11b53805185b25 (patch)
tree7c60e4ef8d9bb58f18aaa791d5d4142d95706983 /tests/datasets
parent3ba0ab113cd81705a3e5962ba807f30656987935 (diff)
downloadComputeLibrary-0e7210de821a7d1164017b8b9e11b53805185b25.tar.gz
COMPMID-1818: Add 1D kernel convolution test case.
Change-Id: I5bb9ba98fec99a4b347d8688c7d60791ecc05326 Reviewed-on: https://review.mlplatform.org/391 Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com>
Diffstat (limited to 'tests/datasets')
-rw-r--r--tests/datasets/SmallConvolutionLayerDataset.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/datasets/SmallConvolutionLayerDataset.h b/tests/datasets/SmallConvolutionLayerDataset.h
index df9196fb77..73f1554c49 100644
--- a/tests/datasets/SmallConvolutionLayerDataset.h
+++ b/tests/datasets/SmallConvolutionLayerDataset.h
@@ -140,6 +140,9 @@ public:
add_config(TensorShape(224U, 224U, 3U), TensorShape(3U, 3U, 3U, 32U), TensorShape(32U), TensorShape(112U, 112U, 32U),
PadStrideInfo(2, 2, /*left*/ 0, /*right*/ 1, /*top*/ 0, /*bottom*/ 1, DimensionRoundingType::FLOOR));
+ // 1D Kernel
+ add_config(TensorShape(1U, 5U, 2U), TensorShape(1U, 3U, 2U, 3U), TensorShape(3U), TensorShape(1U, 7U, 3U), PadStrideInfo(1, 1, 0, 0, 2, 2, DimensionRoundingType::FLOOR));
+
// Batch size 1
add_config(TensorShape(23U, 27U, 5U), TensorShape(3U, 3U, 5U, 21U), TensorShape(21U), TensorShape(11U, 25U, 21U), PadStrideInfo(2, 1, 0, 0));
add_config(TensorShape(33U, 27U, 7U), TensorShape(5U, 5U, 7U, 16U), TensorShape(16U), TensorShape(11U, 12U, 16U), PadStrideInfo(3, 2, 1, 0));