From d820db6fc479f7daef6788377cb765369fcddc22 Mon Sep 17 00:00:00 2001 From: Gian Marco Iodice Date: Mon, 5 Aug 2019 14:23:23 +0100 Subject: 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 Reviewed-on: https://review.mlplatform.org/c/1695 Reviewed-by: Michele Di Giorgio Tested-by: Arm Jenkins --- tests/validation/CL/GEMMMatrixMultiply.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/validation/CL/GEMMMatrixMultiply.cpp') diff --git a/tests/validation/CL/GEMMMatrixMultiply.cpp b/tests/validation/CL/GEMMMatrixMultiply.cpp index 8f7c0aaef1..0bc8b02825 100644 --- a/tests/validation/CL/GEMMMatrixMultiply.cpp +++ b/tests/validation/CL/GEMMMatrixMultiply.cpp @@ -70,7 +70,7 @@ constexpr float tolerance_num_f16 = 0.02f; const auto alpha_values = framework::dataset::make("alpha", {1.0f, -0.75f} ); /** Beta values to test - Precommit */ -const auto beta_values = framework::dataset::make("beta", {-0.75f, 0.0f} ); +const auto beta_values = framework::dataset::make("beta", {-0.35f, 0.0f} ); /** M values to test - Precommit */ const auto m_values_precommit = framework::dataset::make("M", {37, 1}); @@ -113,7 +113,7 @@ const auto act_values = framework::dataset::make("Activation", }); /** Broadcast bias from vector to matrix */ -const auto broadcast_bias_values = framework::dataset::make("broadcast_bias", {false, true} ); +const auto broadcast_bias_values = framework::dataset::make("broadcast_bias", { false, true } ); /** GPU architectures values to test */ const auto gpu_arch_values = framework::dataset::make("GPUArch", -- cgit v1.2.1