From 5ce99a28e247374140c7ffb0b3baf536b8ceed52 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Fri, 25 Jan 2019 14:17:49 +0000 Subject: COMPMID-1652 Cleanup some nighly tests Removed some tests as they add no real value such as LargeShapes in elementwise operations etc. Change-Id: I97870c947ea2d668997f2fca58c1f9e4087efd16 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/583 Reviewed-by: Isabella Gottardi Tested-by: Arm Jenkins --- tests/validation/CL/DirectConvolutionLayer.cpp | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'tests/validation/CL/DirectConvolutionLayer.cpp') diff --git a/tests/validation/CL/DirectConvolutionLayer.cpp b/tests/validation/CL/DirectConvolutionLayer.cpp index dbbaab39e4..437d5bac8c 100644 --- a/tests/validation/CL/DirectConvolutionLayer.cpp +++ b/tests/validation/CL/DirectConvolutionLayer.cpp @@ -61,18 +61,13 @@ const auto data = combine(datasets::SmallDirectConvolutionShapes(), combin const auto data_small = combine(datasets::SmallDirectConvolutionShapes(), combine(data_strides_small, data_ksize_one_small)); /** Direct convolution nightly data set. */ -const auto data_nightly = combine(data, framework::dataset::make("NumKernels", { 1, 4, 8, 16 })); +const auto data_nightly = combine(data, framework::dataset::make("NumKernels", { 1, 4 })); /** Direct convolution precommit data set. */ const auto data_precommit = combine(data_small, framework::dataset::make("NumKernels", { 1 })); /** Activation function Dataset*/ const auto ActivationFunctionsDataset = framework::dataset::make("ActivationInfo", -{ - ActivationLayerInfo(), - ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::RELU), - ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::BOUNDED_RELU, 0.5f), - ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 0.5f) -}); +{ ActivationLayerInfo(ActivationLayerInfo::ActivationFunction::LU_BOUNDED_RELU, 0.5f) }); } // namespace TEST_SUITE(CL) -- cgit v1.2.1