From 5fc07aa26faba56b815156fc84d852e80219fe50 Mon Sep 17 00:00:00 2001 From: Gian Marco Iodice Date: Wed, 15 May 2019 17:08:02 +0100 Subject: COMPMID-2338: Remove CLGEMMInterleave4x4 and CLGEMMTranspose1xW Change-Id: I527fc97eac51308de601e5d1d50e75e4d89c5ee5 Signed-off-by: Gian Marco Iodice Reviewed-on: https://review.mlplatform.org/c/1158 Tested-by: Arm Jenkins Reviewed-by: Giuseppe Rossini Comments-Addressed: Arm Jenkins --- tests/validation/CL/GEMM.cpp | 31 ------------------------------- 1 file changed, 31 deletions(-) (limited to 'tests/validation') diff --git a/tests/validation/CL/GEMM.cpp b/tests/validation/CL/GEMM.cpp index 2bebc90d7f..8fce006dcb 100644 --- a/tests/validation/CL/GEMM.cpp +++ b/tests/validation/CL/GEMM.cpp @@ -21,8 +21,6 @@ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ -#include "arm_compute/core/CL/kernels/CLGEMMInterleave4x4Kernel.h" -#include "arm_compute/core/CL/kernels/CLGEMMTranspose1xWKernel.h" #include "arm_compute/core/Types.h" #include "arm_compute/runtime/CL/CLTensor.h" #include "arm_compute/runtime/CL/CLTensorAllocator.h" @@ -38,8 +36,6 @@ #include "tests/framework/datasets/Datasets.h" #include "tests/validation/Validation.h" #include "tests/validation/fixtures/GEMMFixture.h" -#include "tests/validation/fixtures/GEMMInterleave4x4Fixture.h" -#include "tests/validation/fixtures/GEMMTranspose1xWFixture.h" namespace arm_compute { @@ -69,20 +65,6 @@ const auto data_transpose = framework::dataset::make("M", 8, 14) * framework::da TEST_SUITE(CL) TEST_SUITE(GEMM) -TEST_SUITE(INTERLEAVE_4X4) -using CLGEMMInterleave4x4 = CLSynthetizeFunctionWithZeroConstantBorder; - -TEST_SUITE(FP32) -using CLGEMMInterleave4x4Fixture = GEMMInterleave4x4ValidationFixture; -FIXTURE_DATA_TEST_CASE(RunSmall, CLGEMMInterleave4x4Fixture, framework::DatasetMode::PRECOMMIT, data_interleave * framework::dataset::make("DataType", DataType::F32)) -{ - // Validate output - validate(CLAccessor(_target), _reference); -} -TEST_SUITE_END() // FP32 - -TEST_SUITE_END() // INTERLEAVE_4X4 - template using CLGEMMFixture = GEMMValidationFixture; @@ -92,19 +74,6 @@ using CLGEMMOutput3DFixture = GEMMValidationFixture using CLGEMMInputOutput3DFixture = GEMMValidationFixture; -TEST_SUITE(TRANSPOSE_1XW) -using CLGEMMTranspose1xW = CLSynthetizeFunctionWithZeroConstantBorder; -using CLGEMMTranspose1xWFixture = GEMMTranspose1xWValidationFixture; -TEST_SUITE(FP32) -FIXTURE_DATA_TEST_CASE(RunSmall, CLGEMMTranspose1xWFixture, framework::DatasetMode::PRECOMMIT, data_transpose * framework::dataset::make("DataType", DataType::F32)) -{ - // Validate output - validate(CLAccessor(_target), _reference); -} -TEST_SUITE_END() // FP32 - -TEST_SUITE_END() //TRANSPOSE_1XW - TEST_SUITE(Float) TEST_SUITE(FP16) FIXTURE_DATA_TEST_CASE(RunSmall, CLGEMMFixture, framework::DatasetMode::PRECOMMIT, combine(combine(datasets::SmallGEMMDataset(), -- cgit v1.2.1