diff options
author | peter <peterghost86@gmail.com> | 2019-03-14 10:05:53 -0700 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2019-03-14 10:15:57 -0700 |
commit | 9af65640602838be28d7b91921d42ee1d4b923ba (patch) | |
tree | ae1aef6502d67ac3dcb15469c232b27a52f8d213 /docs | |
parent | bba906c2cb166c4c303989383ba814c6392543b9 (diff) | |
download | pytorch-9af65640602838be28d7b91921d42ee1d4b923ba.tar.gz pytorch-9af65640602838be28d7b91921d42ee1d4b923ba.tar.bz2 pytorch-9af65640602838be28d7b91921d42ee1d4b923ba.zip |
Add magma debug version for Windows
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/18008
Differential Revision: D14455117
Pulled By: soumith
fbshipit-source-id: 29d9a2e0b36d72bece0bb1870bbdc740c4d1f9d6
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/notes/windows.rst | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/source/notes/windows.rst b/docs/source/notes/windows.rst index 428932b7ec..e9f7acd305 100644 --- a/docs/source/notes/windows.rst +++ b/docs/source/notes/windows.rst @@ -19,9 +19,11 @@ MKL and MAGMA. Here are the steps to build with them. 7z x -aoa mkl_2018.2.185.7z -omkl REM Download MAGMA files - REM cuda100 is also available in the following line. There are also 2.4.0 binaries for cuda80/cuda92. + REM cuda100 is also available for `CUDA_PREFIX`. There are also 2.4.0 binaries for cuda80/cuda92. + REM The configuration could be `debug` or `release` for 2.5.0. Only `release` is available for 2.4.0. set CUDA_PREFIX=cuda90 - curl -k https://s3.amazonaws.com/ossci-windows/magma_2.5.0_%CUDA_PREFIX%_release.7z -o magma.7z + set CONFIG=release + curl -k https://s3.amazonaws.com/ossci-windows/magma_2.5.0_%CUDA_PREFIX%_%CONFIG%.7z -o magma.7z 7z x -aoa magma.7z -omagma REM Setting essential environment variables |