aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/NEON/GEMMLowp.cpp
diff options
context:
space:
mode:
authorSiCong Li <sicong.li@arm.com>2020-12-03 12:52:28 +0000
committerSiCong Li <sicong.li@arm.com>2020-12-08 09:42:37 +0000
commit6bc4e9617f4c7679f612e967bceeb8177c3ffb68 (patch)
tree28b949065fc3cc0db679a0d890dc61000ba0b400 /tests/validation/NEON/GEMMLowp.cpp
parentf7c5a41aebf8951ef783aa3d45f0bc4e98656e7b (diff)
downloadComputeLibrary-6bc4e9617f4c7679f612e967bceeb8177c3ffb68.tar.gz
Fix invalid usage of dataset::make
* To create a dataset with an enumerated list of items, the list needs to be enclosed with braces, otherwise it calls into the other make overloads where the items start denoting the range markers. * Remove dead code. Resolves COMPMID-4045 Signed-off-by: SiCong Li <sicong.li@arm.com> Change-Id: Id27ebbd0e8c9ec683839684f7ebcdd2378cf64b4 Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/4651 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/validation/NEON/GEMMLowp.cpp')
-rw-r--r--tests/validation/NEON/GEMMLowp.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/tests/validation/NEON/GEMMLowp.cpp b/tests/validation/NEON/GEMMLowp.cpp
index 04282c2c3c..178e7c9388 100644
--- a/tests/validation/NEON/GEMMLowp.cpp
+++ b/tests/validation/NEON/GEMMLowp.cpp
@@ -46,11 +46,6 @@ namespace test
{
namespace validation
{
-namespace
-{
-const auto data_matrix_multiply = framework::dataset::make("M", 12, 20) * framework::dataset::make("N", 12, 20) * framework::dataset::make("K", 16);
-} // namespace
-
TEST_SUITE(NEON)
TEST_SUITE(GEMMLowp)
TEST_SUITE(MatrixMultiplyCore)