diff options
author | bigbear <ns@bigbear.dk> | 2024-02-08 03:13:01 +0100 |
---|---|---|
committer | bigbear <ns@bigbear.dk> | 2024-02-08 19:52:53 +0100 |
commit | 590da61f2e3fbcdb7493485f3e2ea359ccc0ac89 (patch) | |
tree | 11942c329bc695e1360f3746217a8b382c4f8637 /modules/benchmark/fftbench.c | |
parent | 1372520972daf599fbaa1f6f0d61a4a8c736db39 (diff) |
FIX new benchmarks working for slow & fast machines
Diffstat (limited to 'modules/benchmark/fftbench.c')
-rw-r--r-- | modules/benchmark/fftbench.c | 6 |
1 files changed, 3 insertions, 3 deletions
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) { |