diff options
author | Pauli Virtanen <pav@iki.fi> | 2018-05-08 21:30:58 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2018-05-08 21:44:53 +0200 |
commit | 98e6ecf1195f7eb54045d0b66933bbc33a061f5f (patch) | |
tree | 9f0618ee3b60b9ae79d8fdcb39da5f5c24d7fc4d /site.cfg.example | |
parent | ed6d6dc52764c8d6a44f0b1bb731a20bca75401d (diff) | |
download | numpy-98e6ecf1195f7eb54045d0b66933bbc33a061f5f.tar.gz |
MAINT: distutils.system_info: handle Accelerate like any other library
Remove the special-cased handling of OSX Accelerate/vecLib libraries,
and move the code (which was duplicated in two places) to a new
accelerate_info class, which is used in the same way as openblas/etc
libs.
Also add a configuration section and an environment variable for
controlling whether Accelerate/vecLib is to be used or not. Previously,
it was not possible to use generic BLAS/LAPACK instead of Accelerate on
OSX.
Diffstat (limited to 'site.cfg.example')
-rw-r--r-- | site.cfg.example | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/site.cfg.example b/site.cfg.example index 645b48543..21609a332 100644 --- a/site.cfg.example +++ b/site.cfg.example @@ -180,6 +180,14 @@ # mkl_libs = mkl_rt # lapack_libs = +# ACCELERATE +# ---------- +# Accelerate/vecLib is an OSX framework providing a BLAS and LAPACK implementations. +# +# [accelerate] +# libraries = Accelerate, vecLib +# #libraries = None + # UMFPACK # ------- # The UMFPACK library is used in scikits.umfpack to factor large sparse matrices. |