summaryrefslogtreecommitdiff
path: root/tools/openblas_support.py
Commit message (Collapse)AuthorAgeFilesLines
* use the new openblas libIsuru Fernando2021-03-031-1/+1
|
* BLD: add _2_24 to valid manylinux namesmattip2021-02-281-1/+1
|
* Remove unused ARCHITECTURES variableIsuru Fernando2021-02-041-1/+0
|
* Use platform name in openblas_support and add macosx-arm64 supportIsuru Fernando2021-02-041-51/+63
| | | | instead of mixing OS name and architecture into arch variable
* BLD: update OpenBLAS to af2b0d02mattip2021-01-201-1/+1
|
* BLD: update to OpenBLAS 0.3.13mattip2020-12-171-80/+2
|
* removed dict entryjakobjakobson132020-11-301-2/+0
| | | `openblas64_-v0.3.10-win_amd64-gcc_7_1_0.zip` is already given in line 57
* BLD: use BUFFERSIZE=20 in OpenBLASmattip2020-11-121-1/+1
|
* MAINT, BLD: update to OpenBLAS v0.3.12mattip2020-10-261-4/+4
|
* BLD: update OpenBLAS buildmattip2020-07-241-8/+9
|
* BLD: update openblas hashesmattip2020-07-131-20/+24
|
* BLD: temporarily disable OpenBLAS hash checksmattip2020-07-121-1/+1
|
* STY: flake8 fixesmattip2020-07-051-51/+96
|
* BLD: add manylinux1 OpenBlAS 0.3.10 hashes and test for themmattip2020-07-041-2/+15
|
* BLD: upgrade to OpenBLAS0.3.10mattip2020-06-161-1/+17
|
* BLD: use OpenBLAS 0.3.10mattip2020-06-151-18/+22
|
* Defer ctypes import in generated _distributor_init.pySteve Dower2020-05-261-7/+7
|
* ENH: add manylinux1 openblas hashesmattip2020-05-131-0/+6
|
* ENH: add win32 hashmattip2020-05-121-0/+1
|
* ENH: backport scipy changes to openblas download scriptmattip2020-05-121-13/+51
|
* BUG: use defaultmattip2020-05-061-1/+1
|
* MAINT: Fix '2104' typo, should be '2014'.Charles Harris2020-05-061-1/+1
|
* ENH: allow choosing which manylinux artifact to downloadmattip2020-05-061-15/+19
|
* TST: use draft OpenBLAS buildmattip2020-03-301-1/+2
|
* BLD: consolidate openblas verison check to be self-containedmattip2020-02-271-5/+8
|
* BLD: update OpenBLAS to pre-0.3.9 versionmattip2020-02-271-1/+1
|
* BLD: update openblas download to new location, use manylinux2010-basemattip2020-02-251-15/+16
|
* BLD: manylinux2010 docker reports machine=i686mattip2020-02-171-4/+4
|
* MAINT: cleanup unused imports; avoid redefinition of importsMike Taves2020-02-061-1/+0
| | | | | | | * Cleanup unused imports (F401) of mostly standard Python modules, or some internal but unlikely referenced modules * Where internal imports are potentially used, mark with noqa * Avoid redefinition of imports (F811)
* Updated openblas_support.pyXavier Thomas2020-01-271-1/+1
| | | fixed issue
* Update tools/openblas_support.pyXavier Thomas2020-01-271-1/+1
| | | Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
* Update tools/openblas_support.pyXavier Thomas2020-01-271-1/+2
| | | Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
* Updated openblas_support.pyXavier Thomas2020-01-271-1/+1
|
* Made changes to openblas_support.pyXavier Thomas2020-01-251-1/+2
| | | Assigned a variable MAC_VERSION for macosx_10_9_x86_64-gf_1becaaa.tar.gz
* Updated openblas_support.pyXavier Thomas2020-01-241-1/+1
|
* Updated openblas_support.py with f-stringXavier Thomas2020-01-241-9/+7
|
* MAINT: Revise imports from urllib modulesMike Taves2020-01-241-6/+2
|
* BLD: use 0.3.8dev build of OpenBLASmattip2020-01-191-2/+2
|
* BLD: use 0.3.7 release version, add dependency on libgfortran5mattip2020-01-171-1/+1
|
* BUILD: use standard build of OpenBLAS for aarch64, ppc64lemattip2020-01-171-26/+10
|
* MAINT: Remove unnecessary 'from __future__ import ...' statementsJon Dufresne2020-01-031-1/+0
| | | | | As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior.
* MAINT: make openblas_support.py strip path prefix from archive contentsPauli Virtanen2019-12-211-11/+53
| | | | Adapt CI scripts to this.
* CI: add openblas64_ downloading to openblas_support.pyPauli Virtanen2019-12-211-13/+34
|
* TST, MAINT: bump to OpenBLAS 0.3.7 stableTyler Reddy2019-08-211-4/+4
| | | | | | | | | | | | * 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)
* MAINT: bump ARMv8 / POWER8 OpenBLAS in CITyler Reddy2019-07-201-3/+3
| | | | | * require OpenBLAS 0.3.7.dev in ARMv8 and POWER8 CI runs to match ecosystem / wheels
* TST, MAINT: expand OpenBLAS version checkingTyler Reddy2019-07-141-1/+21
| | | | | | | | | | | | | | | | | | | | | | * add a function to tools/openblas_support.py that may be used to test OpenBLAS version available through NumPy in a manner agnostic to any specific CI service * expand OpenBLAS version checking to include ppc64le and POWER8 CI runs; a separate PR will be provided to bump these versions to 0.3.7.dev * OpenBLAS install was broken on ppc64le Travis CI after migration to tools/openblas_support.py; fixed that * Azure CI config no longer uses a single-line 280-character Python "program" assigned to an environment variable to check OpenBLAS version; instead, it now leverages tools/openblas_support.py to perform the same operation using a conventional Python function
* ENH, BUILD: refactor all OpenBLAS downloads into a single, testable filemattip2019-07-091-0/+167
|
* MAINT: add script to local repomattip2019-06-201-0/+42