diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2019-12-15 12:25:21 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-15 12:25:21 -0800 |
commit | de06954b19a6c0980d48e4397adabfd15d808660 (patch) | |
tree | abc7efcf50ca558d67f6eb13a040cffcca29e14e /numpy/testing/_private/utils.py | |
parent | 740c7f5a089adceebd445b444f32d87ad09c7c14 (diff) | |
parent | 85447b1ed7df98aff0ed9d666a92f8714f08c2ee (diff) | |
download | numpy-de06954b19a6c0980d48e4397adabfd15d808660.tar.gz |
Merge pull request #15069 from pv/blas-ilp64
ENH: add support for ILP64 OpenBLAS (without symbol suffix)
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(): |