Skip to content

Commit

Permalink
make FFTW_PATIENT the default for suggestions. FFTW_MEASURE isn't fas…
Browse files Browse the repository at this point in the history
…t enough for the RX888 on Pi5
  • Loading branch information
ka9q committed Apr 2, 2024
1 parent 131b3a8 commit fcb7fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ static int loadconfig(char const * const file){
Verbose = config_getint(Configtable,global,"verbose",Verbose);
FFTW_plan_timelimit = config_getdouble(Configtable,global,"fft-time-limit",FFTW_plan_timelimit);
{
char const *cp = config_getstring(Configtable,global,"fft-plan-level","measure");
char const *cp = config_getstring(Configtable,global,"fft-plan-level","patient");
if(strcasecmp(cp,"estimate") == 0){
FFTW_planning_level = FFTW_ESTIMATE;
} else if(strcasecmp(cp,"measure") == 0){
Expand Down

0 comments on commit fcb7fb3

Please sign in to comment.