From 590da61f2e3fbcdb7493485f3e2ea359ccc0ac89 Mon Sep 17 00:00:00 2001 From: bigbear Date: Thu, 8 Feb 2024 03:13:01 +0100 Subject: FIX new benchmarks working for slow & fast machines --- modules/benchmark/fftbench.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'modules/benchmark/fftbench.c') diff --git a/modules/benchmark/fftbench.c b/modules/benchmark/fftbench.c index 89fd5a73..9449cffd 100644 --- a/modules/benchmark/fftbench.c +++ b/modules/benchmark/fftbench.c @@ -59,9 +59,9 @@ static double random_double() return result; } -static const int N = 800; -static const int NM1 = 799; // N - 1 -static const int NP1 = 801; // N + 1 +static const int N = 100; +static const int NM1 = 99; // N - 1 +static const int NP1 = 101; // N + 1 static void lup_decompose(FFTBench *fftbench) { -- cgit v1.2.3