diff options
author | Pauli Virtanen <pav@iki.fi> | 2019-12-07 14:40:48 +0200 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2019-12-14 14:14:37 +0200 |
commit | 669cd13c692cfe8476e24dad3d42bbbd94547727 (patch) | |
tree | c16e68e20ff92c8389c446c4e96eb6d39e8a164e /numpy/testing/_private/utils.py | |
parent | a92039db1edf9d85059ddadc10134f434ae82ce7 (diff) | |
download | numpy-669cd13c692cfe8476e24dad3d42bbbd94547727.tar.gz |
ENH: update BLAS symbol suffix/prefix handling in cblasfuncs & linalg
Revise the BLAS name mangling to support the general scheme.
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r-- | numpy/testing/_private/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py index 8599222d3..23267a9e1 100644 --- a/numpy/testing/_private/utils.py +++ b/numpy/testing/_private/utils.py @@ -54,7 +54,7 @@ verbose = 0 IS_PYPY = platform.python_implementation() == 'PyPy' HAS_REFCOUNT = getattr(sys, 'getrefcount', None) is not None -HAS_LAPACK64 = hasattr(numpy.__config__, 'lapack64__opt_info') +HAS_LAPACK64 = hasattr(numpy.__config__, 'lapack_ilp64_opt_info') def import_nose(): |