10000 BUG: do not link to Accelerate if OpenBLAS, MKL or BLIS are found. by charris · Pull Request #8320 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BUG: do not link to Accelerate if OpenBLAS, MKL or BLIS are found. #8320

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 26, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions numpy/distutils/system_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -1488,7 +1488,8 @@ def calc_info(self):
if not atlas_info:
atlas_info = get_info('atlas')

if sys.platform == 'darwin' and not atlas_info:
if sys.platform == 'darwin' and not (atlas_info or openblas_info or
lapack_mkl_info):
# Use the system lapack from Accelerate or vecLib under OSX
args = []
link_args = []
Expand Down Expand Up @@ -1593,7 +1594,8 @@ def calc_info(self):
if not atlas_info:
atlas_info = get_info('atlas_blas')

if sys.platform == 'darwin' and not atlas_info:
if sys.platform == 'darwin' and not (atlas_info or openblas_info or
blas_mkl_info or blis_info):
# Use the system BLAS from Accelerate or vecLib under OSX
args = []
link_args = []
Expand Down
0