aboutsummaryrefslogtreecommitdiff
path: root/tests/datasets/ShapeDatasets.h
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2021-05-12 12:44:47 +0100
committerGiorgio Arena <giorgio.arena@arm.com>2021-05-12 15:02:15 +0000
commitfd83bc8894007c2c9591896ba4229c99d8236a7a (patch)
treeef39eeb4b58befca48c6ad283493951181e11f49 /tests/datasets/ShapeDatasets.h
parentc2d0e203ac28458b47c25d0129ccff6ca707ca56 (diff)
downloadComputeLibrary-fd83bc8894007c2c9591896ba4229c99d8236a7a.tar.gz
Fix GEMMLowp output stage validation crash when input's first dimension == 1
- Change vectors' fixed length of 4 in gemmlowp_output_stage_quantize_down_float with its kernel's adjusted vec_size Resolve COMPMID-4355 Signed-off-by: Giorgio Arena <giorgio.arena@arm.com> Change-Id: I371ecf114356fb6a8d18c5c3727f09ae247484bd Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/5631 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/datasets/ShapeDatasets.h')
-rw-r--r--tests/datasets/ShapeDatasets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/datasets/ShapeDatasets.h b/tests/datasets/ShapeDatasets.h
index 558b37af33..c2b4cd7da4 100644
--- a/tests/datasets/ShapeDatasets.h
+++ b/tests/datasets/ShapeDatasets.h
@@ -165,7 +165,7 @@ public:
: ShapeDataset("Shape",
{
// Batch size 1
- TensorShape{ 9U, 9U },
+ TensorShape{ 1U, 9U },
TensorShape{ 27U, 13U, 2U },
})
{