blob: fd6c909683f2cfc33c3335e256314014d6ce53d1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
Fix regression tests when OPENMP option is enabled.
--- tests/fftw-bench.c.orig 2020-12-10 12:02:44 UTC
+++ tests/fftw-bench.c
@@ -125,8 +125,6 @@ void rdwisdom(void)
if (threads_ok) {
BENCH_ASSERT(FFTW(init_threads)());
FFTW(plan_with_nthreads)(nthreads);
- BENCH_ASSERT(FFTW(planner_nthreads)() == nthreads);
- FFTW(make_planner_thread_safe)();
#ifdef _OPENMP
omp_set_num_threads(nthreads);
#endif
|