(self)
| 1083 | class fft_opt_info(system_info): |
| 1084 | |
| 1085 | def calc_info(self): |
| 1086 | info = {} |
| 1087 | fftw_info = get_info('fftw3') or get_info('fftw2') or get_info('dfftw') |
| 1088 | djbfft_info = get_info('djbfft') |
| 1089 | if fftw_info: |
| 1090 | dict_append(info, **fftw_info) |
| 1091 | if djbfft_info: |
| 1092 | dict_append(info, **djbfft_info) |
| 1093 | self.set_info(**info) |
| 1094 | return |
| 1095 | |
| 1096 | |
| 1097 | class fftw_info(system_info): |
nothing calls this directly
no test coverage detected