diff options
author | Matthew Badin <mbadin@apple.com> | 2021-04-30 14:03:55 -0700 |
---|---|---|
committer | Matthew Badin <mbadin@apple.com> | 2021-04-30 14:03:55 -0700 |
commit | ee56322f91788c97d4a41fdf4ae66aa45310553c (patch) | |
tree | 54fa69ea8865c6d48818d147e976f44d60daaca3 /numpy/distutils/system_info.py | |
parent | e28da7a3d50862fa99b8b704d60fc6543b5af631 (diff) | |
download | numpy-ee56322f91788c97d4a41fdf4ae66aa45310553c.tar.gz |
BLD: Address lint issues and reviewer comments.
Diffstat (limited to 'numpy/distutils/system_info.py')
-rw-r--r-- | numpy/distutils/system_info.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 082b029d7..7a031bf9e 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1750,7 +1750,8 @@ class lapack_opt_info(system_info): notfounderror = LapackNotFoundError # List of all known LAPACK libraries, in the default order - lapack_order = ['accelerate', 'mkl', 'openblas', 'flame', 'atlas', 'lapack'] + lapack_order = ['mkl', 'openblas', 'flame', + 'accelerate', 'atlas', 'lapack'] order_env_var_name = 'NPY_LAPACK_ORDER' def _calc_info_accelerate(self): @@ -1926,7 +1927,8 @@ class blas_opt_info(system_info): notfounderror = BlasNotFoundError # List of all known BLAS libraries, in the default order - blas_order = ['accelerate', 'mkl', 'blis', 'openblas', 'atlas', 'blas'] + blas_order = ['mkl', 'blis', 'openblas', + 'accelerate', 'atlas', 'blas'] order_env_var_name = 'NPY_BLAS_ORDER' def _calc_info_accelerate(self): |