aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGiorgio Arena <giorgio.arena@arm.com>2021-02-03 12:29:57 +0000
committerGiorgio Arena <giorgio.arena@arm.com>2021-02-04 15:30:33 +0000
commit76cb75103255b9af62a0b6744b6141ae4b542546 (patch)
treedaf60edf6f0f74554dc8608becc2ea523f3cd88a /tests
parent0841ca085301e8ddbc9627b2be55758b66437c15 (diff)
downloadComputeLibrary-76cb75103255b9af62a0b6744b6141ae4b542546.tar.gz
Fix CL Compiler frontend failure for ArgMinMax
- Change select condition's data type to satisfy its signature - Add failing test case with VEC_SIZE == 1 Resolve: COMPMID-4110 Change-Id: I52287bff7a2108f92fd12164e267df6c074d5508 Signed-off-by: Giorgio Arena <giorgio.arena@arm.com> Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4978 Reviewed-by: TeresaARM <teresa.charlinreyes@arm.com> Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/validation/CL/ArgMinMax.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/CL/ArgMinMax.cpp b/tests/validation/CL/ArgMinMax.cpp
index 2508c63524..1d849ed0c7 100644
--- a/tests/validation/CL/ArgMinMax.cpp
+++ b/tests/validation/CL/ArgMinMax.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2018-2020 Arm Limited.
+ * Copyright (c) 2018-2021 Arm Limited.
*
* SPDX-License-Identifier: MIT
*
@@ -45,7 +45,7 @@ namespace
{
const auto ArgMinMaxSmallDataset = framework::dataset::make("Shape",
{
- TensorShape{ 2U, 7U, 1U, 3U },
+ TensorShape{ 1U, 7U, 1U, 3U },
TensorShape{ 149U, 5U, 1U, 2U },
TensorShape{ 166U, 5U, 1U, 2U },
TensorShape{ 322U, 5U, 1U, 2U },