8000 ENH: enable OpenBLAS on windows. · Pull Request #9645 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

ENH: enable OpenBLAS on windows. #9645

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from Sep 30, 2017
Prev Previous commit
Next Next commit
appveyor: update documentation
  • Loading branch information
xoviat authored Sep 9, 2017
commit 67a175b604e8ebab406491488880aa4c33e1bfb8
7 changes: 4 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ install:
print(sys.platform, platform.machine(), struct.calcsize('P') * 8, )"

# Install the BLAS library
# - install "openblas.lib" to PYTHON\lib
# - install OpenBLAS.dll to MINGW\bin
# - install "openblas.a" to PYTHON\lib
- ps: |
$PYTHON_ARCH = $env:PYTHON_ARCH
$PYTHON = $env:PYTHON
Expand Down Expand Up @@ -132,10 +131,12 @@ install:
# Upgrade to the latest pip.
- '%CMD_IN_ENV% python -m pip install -U pip setuptools wheel'

# Install the scipy test dependencies.
# Install the numpy test dependencies.
- '%CMD_IN_ENV% pip install -U --timeout 5 --retries 2 -r tools/ci/appveyor/requirements.txt'

build_script:
# Here, we add MinGW to the path to be able to link an OpenBLAS.dll
# We then use the import library from the DLL to compile with MSVC
- ps: |
$PYTHON_ARCH = $env:PYTHON_ARCH
If ($PYTHON_ARCH -eq 32) {
Expand Down
0