aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/CL/GEMMLowpMatrixMultiplyNative.cpp
diff options
context:
space:
mode:
authorGian Marco Iodice <gianmarco.iodice@arm.com>2019-08-05 14:23:23 +0100
committerGian Marco Iodice <gianmarco.iodice@arm.com>2019-08-05 16:53:29 +0000
commitd820db6fc479f7daef6788377cb765369fcddc22 (patch)
tree45221a6725b20e0cf6d49fd59d75dac2f37545ae /tests/validation/CL/GEMMLowpMatrixMultiplyNative.cpp
parentdfa533162bbdbb513da75ab0e0a7718ac31a24d0 (diff)
downloadComputeLibrary-d820db6fc479f7daef6788377cb765369fcddc22.tar.gz
COMPMID-2545: Reduce tests required by GEMM (OpenCL)
Removed FP16 tests from the new GEMM functions (GEMMNative, GEMMReshaped and GEMMReshapedOnlyRHS) since not called by CLGEMM Change-Id: Id52281fc9557d45e29db0a74964d4bdec55d8f46 Signed-off-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-on: https://review.mlplatform.org/c/1695 Reviewed-by: Michele Di Giorgio <michele.digiorgio@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com>
Diffstat (limited to 'tests/validation/CL/GEMMLowpMatrixMultiplyNative.cpp')
-rw-r--r--tests/validation/CL/GEMMLowpMatrixMultiplyNative.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/validation/CL/GEMMLowpMatrixMultiplyNative.cpp b/tests/validation/CL/GEMMLowpMatrixMultiplyNative.cpp
index 1fc8cc47c4..6243b3f7e3 100644
--- a/tests/validation/CL/GEMMLowpMatrixMultiplyNative.cpp
+++ b/tests/validation/CL/GEMMLowpMatrixMultiplyNative.cpp
@@ -75,10 +75,10 @@ const auto b_values = framework::dataset::make("batch_size", 1, 3);
const auto m0_values_precommit = framework::dataset::make("M0", {4, 6});
/** N0 values to test - Precommit */
-const auto n0_values_precommit = framework::dataset::make("N0", { 2, 4 });
+const auto n0_values_precommit = framework::dataset::make("N0", { 4 });
/** K0 values to test - Precommit */
-const auto k0_values_precommit = framework::dataset::make("K0", { 4 });
+const auto k0_values_precommit = framework::dataset::make("K0", { 16 });
/** M0 values to test - Nightly */
const auto m0_values_nightly = framework::dataset::make("M0", 2, 7);
@@ -87,7 +87,7 @@ const auto m0_values_nightly = framework::dataset::make("M0", 2, 7);
const auto n0_values_nightly = framework::dataset::make("N0", { 2, 3, 4, 8 });
/** K0 values to test - Nightly */
-const auto k0_values_nightly = framework::dataset::make("K0", { 2, 3, 4, 8 });
+const auto k0_values_nightly = framework::dataset::make("K0", { 2, 3, 4, 8, 16 });
} // namespace
TEST_SUITE(CL)