From 75da170fbd79219faf2a70f4f9a22a47fd75a9dd Mon Sep 17 00:00:00 2001 From: mancini <mancini@astron.nl> Date: Fri, 7 Feb 2025 11:08:22 +0100 Subject: [PATCH] Reduce the number of tests --- benchmarks/convolution.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/benchmarks/convolution.cpp b/benchmarks/convolution.cpp index ae82e9f..d1dbb4a 100644 --- a/benchmarks/convolution.cpp +++ b/benchmarks/convolution.cpp @@ -35,11 +35,6 @@ BENCHMARK_DEFINE_F(InitializeInput, ConvolveReference) } } BENCHMARK_REGISTER_F(InitializeInput, ConvolveReference) - ->Args({64, 32}) - ->Args({128, 64}) - ->Args({256, 126}) - ->Args({512, 754}) - ->Args({1024, 124}) ->Args({2048, 1000}) ->Args({4096, 5000}); @@ -53,10 +48,5 @@ BENCHMARK_DEFINE_F(InitializeInput, ConvolveSerial) } BENCHMARK_REGISTER_F(InitializeInput, ConvolveSerial) - ->Args({64, 32}) - ->Args({128, 64}) - ->Args({256, 126}) - ->Args({512, 754}) - ->Args({1024, 124}) ->Args({2048, 1000}) ->Args({4096, 5000}); -- GitLab