MCPcopy Create free account
hub / github.com/numpy/numpy / calc_info

Method calc_info

numpy/distutils/system_info.py:1085–1094  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1083class 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
1097class fftw_info(system_info):

Callers

nothing calls this directly

Calls 3

set_infoMethod · 0.80
get_infoFunction · 0.70
dict_appendFunction · 0.70

Tested by

no test coverage detected