diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2021-05-04 15:31:41 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-04 15:31:41 -0600 |
commit | a59973902c6706cfc4e6958e69e9a9b33db333fb (patch) | |
tree | d6be2c2b035ee0c2ff7dc38b4dc0b8e26ed1401c /numpy/linalg/setup.py | |
parent | 4d753a0cd67cc381af9d096afdafda674a37c971 (diff) | |
parent | 06fffd94729a920961648dd86a8b8e86f6c25326 (diff) | |
download | numpy-a59973902c6706cfc4e6958e69e9a9b33db333fb.tar.gz |
Merge pull request #18874 from Matthew-Badin/enable-accelerate
BLD, ENH: Enable Accelerate Framework
Diffstat (limited to 'numpy/linalg/setup.py')
-rw-r--r-- | numpy/linalg/setup.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/numpy/linalg/setup.py b/numpy/linalg/setup.py index 5c9f2a4cb..e2944f38c 100644 --- a/numpy/linalg/setup.py +++ b/numpy/linalg/setup.py @@ -9,11 +9,6 @@ def configuration(parent_package='', top_path=None): config.add_subpackage('tests') - # Accelerate is buggy, disallow it. See also numpy/core/setup.py - for opt_order in (blas_opt_info.blas_order, lapack_opt_info.lapack_order): - if 'accelerate' in opt_order: - opt_order.remove('accelerate') - # Configure lapack_lite src_dir = 'lapack_lite' |