File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -210,13 +210,13 @@ subroutine spectral_utilities_init()
210
210
end if
211
211
212
212
select case (num_grid_fft% get_asStr(' FFTW_plan_mode' ,defaultVal= ' FFTW_MEASURE' ))
213
- case (' fftw_estimate ' , ' FFTW_ESTIMATE' ) ! ordered from slow execution (but fast plan creation) to fast execution
213
+ case (' FFTW_ESTIMATE' ) ! ordered from slow execution (but fast plan creation) to fast execution
214
214
FFTW_planner_flag = FFTW_ESTIMATE
215
- case (' fftw_measure ' , ' FFTW_MEASURE' )
215
+ case (' FFTW_MEASURE' )
216
216
FFTW_planner_flag = FFTW_MEASURE
217
- case (' fftw_patient ' , ' FFTW_PATIENT' )
217
+ case (' FFTW_PATIENT' )
218
218
FFTW_planner_flag = FFTW_PATIENT
219
- case (' fftw_exhaustive ' , ' FFTW_EXHAUSTIVE' )
219
+ case (' FFTW_EXHAUSTIVE' )
220
220
FFTW_planner_flag = FFTW_EXHAUSTIVE
221
221
case default
222
222
call IO_warning(47 ,' using default FFTW_MEASURE instead of "' // trim (num_grid_fft% get_asStr(' FFTW_plan_mode' ))// ' "' )
You can’t perform that action at this time.
0 commit comments