this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prevent stack corruption with parallelized use.

If the length of the data set for the transform is a prime, then the OpenMP parallelization results
in a recursion loop until the stack is corrupted or exhausted.
This resolves #1.

authored by

wolfbeast and committed by
Mark Borgerding
f4496dc0 3050076a

+1 -1
+1 -1
kiss_fft.c
··· 246 246 #ifdef _OPENMP 247 247 // use openmp extensions at the 248 248 // top-level (not recursive) 249 - if (fstride==1 && p<=5) 249 + if (fstride==1 && p<=5 && m!=1) 250 250 { 251 251 int k; 252 252