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

Method calc_info

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

Source from the content-addressed store, hash-verified

1633 notfounderror = LapackNotFoundError
1634
1635 def calc_info(self):
1636 lib_dirs = self.get_lib_dirs()
1637
1638 opt = self.get_option_single('lapack_libs', 'libraries')
1639 lapack_libs = self.get_libs(opt, self._lib_names)
1640 info = self.check_libs(lib_dirs, lapack_libs, [])
1641 if info is None:
1642 return
1643 info['language'] = 'f77'
1644 self.set_info(**info)
1645
1646
1647class lapack_src_info(system_info):

Callers

nothing calls this directly

Calls 5

get_lib_dirsMethod · 0.80
get_option_singleMethod · 0.80
get_libsMethod · 0.80
check_libsMethod · 0.80
set_infoMethod · 0.80

Tested by

no test coverage detected