(self)
| 2494 | notfounderror = BlasNotFoundError |
| 2495 | |
| 2496 | def calc_info(self): |
| 2497 | lib_dirs = self.get_lib_dirs() |
| 2498 | opt = self.get_option_single('blis_libs', 'libraries') |
| 2499 | blis_libs = self.get_libs(opt, self._lib_names) |
| 2500 | info = self.check_libs2(lib_dirs, blis_libs, []) |
| 2501 | if info is None: |
| 2502 | return |
| 2503 | |
| 2504 | # Add include dirs |
| 2505 | incl_dirs = self.get_include_dirs() |
| 2506 | dict_append(info, |
| 2507 | language='c', |
| 2508 | define_macros=[('HAVE_CBLAS', None)], |
| 2509 | include_dirs=incl_dirs) |
| 2510 | self.set_info(**info) |
| 2511 | |
| 2512 | |
| 2513 | class flame_info(system_info): |
nothing calls this directly
no test coverage detected