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

Method calc_info

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

Source from the content-addressed store, hash-verified

1396 _lib_armpl = ['armpl_lp64_mp']
1397
1398 def calc_info(self):
1399 lib_dirs = self.get_lib_dirs()
1400 incl_dirs = self.get_include_dirs()
1401 armpl_libs = self.get_libs('armpl_libs', self._lib_armpl)
1402 info = self.check_libs2(lib_dirs, armpl_libs)
1403 if info is None:
1404 return
1405 dict_append(info,
1406 define_macros=[('SCIPY_MKL_H', None),
1407 ('HAVE_CBLAS', None)],
1408 include_dirs=incl_dirs)
1409 self.set_info(**info)
1410
1411class lapack_armpl_info(armpl_info):
1412 pass

Callers

nothing calls this directly

Calls 6

get_lib_dirsMethod · 0.80
get_include_dirsMethod · 0.80
get_libsMethod · 0.80
check_libs2Method · 0.80
set_infoMethod · 0.80
dict_appendFunction · 0.70

Tested by

no test coverage detected