(self)
| 1928 | return False |
| 1929 | |
| 1930 | def _get_info_blas(self): |
| 1931 | # Default to get the optimized BLAS implementation |
| 1932 | info = get_info('blas_opt') |
| 1933 | if not info: |
| 1934 | warnings.warn(BlasNotFoundError.__doc__ or '', stacklevel=3) |
| 1935 | info_src = get_info('blas_src') |
| 1936 | if not info_src: |
| 1937 | warnings.warn(BlasSrcNotFoundError.__doc__ or '', stacklevel=3) |
| 1938 | return {} |
| 1939 | dict_append(info, libraries=[('fblas_src', info_src)]) |
| 1940 | return info |
| 1941 | |
| 1942 | def _get_info_lapack(self): |
| 1943 | info = get_info('lapack') |
no test coverage detected