diff options
author | mattip <matti.picus@gmail.com> | 2020-03-30 15:01:23 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2020-03-30 15:27:41 +0300 |
commit | a126709e304d1fa4087740d11c0777ac788ed576 (patch) | |
tree | 42a6f22d8a23821d7e6370947626d1e02246a19e /tools/openblas_support.py | |
parent | f0a74b2d4e50a1b4f9d9189c6b2e31b920913a8b (diff) | |
download | numpy-a126709e304d1fa4087740d11c0777ac788ed576.tar.gz |
TST: use draft OpenBLAS build
Diffstat (limited to 'tools/openblas_support.py')
-rw-r--r-- | tools/openblas_support.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py index c7de1fb2a..105aae51f 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -10,7 +10,8 @@ import zipfile import tarfile OPENBLAS_V = '0.3.9' -OPENBLAS_LONG = 'v0.3.7-391-gddcbed66' # the 0.3.7 is misleading +# Temporary build of OpenBLAS to test a fix for dynamic detection of CPU +OPENBLAS_LONG = 'v0.3.7-527-g79fd006c' # the 0.3.7 is misleading BASE_LOC = 'https://anaconda.org/multibuild-wheels-staging/openblas-libs' BASEURL = f'{BASE_LOC}/{OPENBLAS_LONG}/download' ARCHITECTURES = ['', 'windows', 'darwin', 'aarch64', 'x86', 'ppc64le', 's390x'] |