From 5c9f0c47f932f0a145bffcff2e76024a8e038f0a Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Wed, 16 Jan 2019 14:48:48 +0000 Subject: COMPMID-1652 NEON Remove unnecessary configuration tests Change-Id: Iba0739450c144dde141de1f2a3864cecc93c8266 Reviewed-on: https://review.mlplatform.org/527 Reviewed-by: Isabella Gottardi Tested-by: Arm Jenkins --- tests/validation/NEON/GEMM.cpp | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) (limited to 'tests/validation/NEON/GEMM.cpp') diff --git a/tests/validation/NEON/GEMM.cpp b/tests/validation/NEON/GEMM.cpp index 943fc9ff1d..2bcdf8a7ff 100644 --- a/tests/validation/NEON/GEMM.cpp +++ b/tests/validation/NEON/GEMM.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017-2018 ARM Limited. + * Copyright (c) 2017-2019 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -99,26 +99,7 @@ TEST_SUITE_END() // FP32 TEST_SUITE_END() // INTERLEAVE_4X4 -DATA_TEST_CASE(Configuration, framework::DatasetMode::ALL, combine(framework::dataset::concat(datasets::SmallGEMMDataset(), datasets::LargeGEMMDataset()), CNNDataTypes), - shape_a, shape_b, shape_c, output_shape, alpha, beta, data_type) -{ - // Create tensors - Tensor a = create_tensor(shape_a, data_type, 1); - Tensor b = create_tensor(shape_b, data_type, 1); - Tensor c = create_tensor(shape_c, data_type, 1); - Tensor dst = create_tensor(output_shape, data_type, 1); - - ARM_COMPUTE_EXPECT(a.info()->is_resizable(), framework::LogLevel::ERRORS); - ARM_COMPUTE_EXPECT(b.info()->is_resizable(), framework::LogLevel::ERRORS); - ARM_COMPUTE_EXPECT(c.info()->is_resizable(), framework::LogLevel::ERRORS); - ARM_COMPUTE_EXPECT(dst.info()->is_resizable(), framework::LogLevel::ERRORS); - - // Create and configure function - NEGEMM gemm; - gemm.configure(&a, &b, &c, &dst, alpha, beta); - - //TODO(COMPMID-415): Validate valid region -} +//TODO(COMPMID-415): Validate valid region template using NEGEMMFixture = GEMMValidationFixture; -- cgit v1.2.1