diff options
author | Tyler Reddy <tyler.je.reddy@gmail.com> | 2019-08-21 13:57:27 -0600 |
---|---|---|
committer | Tyler Reddy <tyler.je.reddy@gmail.com> | 2019-08-21 13:57:27 -0600 |
commit | 8fa9c0d75481ce2886b1a1f9547c5da8527c5f94 (patch) | |
tree | 4b29c641e49560d93ba0c34115774a3c815a1815 /tools/openblas_support.py | |
parent | e39f7fb83efb69c111fb7f83af6b424315152903 (diff) | |
download | numpy-8fa9c0d75481ce2886b1a1f9547c5da8527c5f94.tar.gz |
TST, MAINT: bump to OpenBLAS 0.3.7 stable
* for those cases where our CI uses an OpenBLAS backend
for testing it has now been updated to use v0.3.7 stable release
instead of a commit hash on the development branch preceding that
release
* the pre-built OpenBLAS binaries are pulled in from either the
MacPython ecosystem (most architectures) or from a custom build
script for ARMv8 and ppc64le architectures used on gcc compile farm machines
(documented in openblas_support module)
Diffstat (limited to 'tools/openblas_support.py')
-rw-r--r-- | tools/openblas_support.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py index ac4abb3f0..964adce6e 100644 --- a/tools/openblas_support.py +++ b/tools/openblas_support.py @@ -14,8 +14,8 @@ from tempfile import mkstemp, gettempdir import zipfile import tarfile -OPENBLAS_V = '6a8b426' -OPENBLAS_LONG = 'v0.3.5-274-g6a8b4269' +OPENBLAS_V = 'v0.3.7' +OPENBLAS_LONG = 'v0.3.7' BASE_LOC = '' RACKSPACE = 'https://3f23b170c54c2533c070-1c8a9b3114517dc5fe17b7c3f8c63a43.ssl.cf2.rackcdn.com' ARCHITECTURES = ['', 'windows', 'darwin', 'arm', 'x86', 'ppc64'] @@ -47,7 +47,7 @@ def download_openblas(target, arch): # https://github.com/tylerjereddy/openblas-static-gcc/tree/master/ARMv8 # build done on GCC compile farm machine named gcc115 # tarball uploaded manually to an unshared Dropbox location - filename = ('https://www.dropbox.com/s/zsp1wb3tq4n9g0b/' + filename = ('https://www.dropbox.com/s/vdeckao4omss187/' 'openblas-{}-armv8.tar.gz?dl=1'.format(OPENBLAS_V)) typ = 'tar.gz' elif arch == 'ppc64': @@ -55,7 +55,7 @@ def download_openblas(target, arch): # https://github.com/tylerjereddy/openblas-static-gcc/blob/master/power8 # built on GCC compile farm machine named gcc112 # manually uploaded tarball to an unshared Dropbox location - filename = ('https://www.dropbox.com/s/k9uabwoi8bekjwe/' + filename = ('https://www.dropbox.com/s/yt0d2j86x1j8nh1/' 'openblas-{}-ppc64le-power8.tar.gz?dl=1'.format(OPENBLAS_V)) typ = 'tar.gz' elif arch == 'darwin': |