aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/SmallGEMMLowpDataset.h
diff options
context:
space:
mode:
authorSiCong Li <sicong.li@arm.com>2020-11-17 09:41:13 +0000
committerSiCong Li <sicong.li@arm.com>2021-01-07 10:43:07 +0000
commit7e5b7bfc06c0bd8aecd809817866733c4fdf07fe (patch)
tree5c8cb9445715ccde7ad4dd28f281fe1c852e7e32 /tests/datasets/SmallGEMMLowpDataset.h
parenta8e2aeb7d2d46a7ab0e9523de145af9920fc1fa3 (diff)
downloadComputeLibrary-7e5b7bfc06c0bd8aecd809817866733c4fdf07fe.tar.gz
Review all shapes in datasets to account for padding removal Part 3
* Add the following configurations for stressing padding removal: * size = 1 * size = multiple of processing size * size = non-multiple of processing size Resolves COMPMID-3865 Signed-off-by: SiCong Li <sicong.li@arm.com> Change-Id: I2e0e6d4da129f64ba23cf7b9e0fa1fa1ad93efc3 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4440 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'tests/datasets/SmallGEMMLowpDataset.h')
-rw-r--r--tests/datasets/SmallGEMMLowpDataset.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/datasets/SmallGEMMLowpDataset.h b/tests/datasets/SmallGEMMLowpDataset.h
index f16e3fa5f8..1b6c65307b 100644
--- a/tests/datasets/SmallGEMMLowpDataset.h
+++ b/tests/datasets/SmallGEMMLowpDataset.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2017-2018 Arm Limited.
+ * Copyright (c) 2017-2020 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -42,7 +42,7 @@ class SmallGEMMLowpDataset final : public GEMMLowpDataset
public:
SmallGEMMLowpDataset()
{
- add_config(TensorShape(21U, 1U), TensorShape(43U, 21U), TensorShape(43U, 1U), 0, 0);
+ add_config(TensorShape(21U, 1U), TensorShape(1U, 21U), TensorShape(1U, 1U), 0, 0);
add_config(TensorShape(21U, 13U), TensorShape(33U, 21U), TensorShape(33U, 13U), 0, 0);
add_config(TensorShape(31U, 3U), TensorShape(72U, 31U), TensorShape(72U, 3U), -2, 13);
add_config(TensorShape(52U, 13U), TensorShape(33U, 52U), TensorShape(33U, 13U), 0, 4);