diff options
-rwxr-xr-x | .jenkins/pytorch/win-build.sh | 6 | ||||
-rw-r--r-- | docs/source/notes/windows.rst | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.jenkins/pytorch/win-build.sh b/.jenkins/pytorch/win-build.sh index 3724d181bc..60ef43fa18 100755 --- a/.jenkins/pytorch/win-build.sh +++ b/.jenkins/pytorch/win-build.sh @@ -58,11 +58,11 @@ set LIB=%TMP_DIR_WIN%\\mkl\\lib;%LIB :: Install MAGMA if "%REBUILD%"=="" ( if "%BUILD_ENVIRONMENT%"=="" ( - curl -k https://s3.amazonaws.com/ossci-windows/magma_2.4.0_cuda90_release.7z --output %TMP_DIR_WIN%\\magma_2.4.0_cuda90_release.7z + curl -k https://s3.amazonaws.com/ossci-windows/magma_2.5.0_cuda90_release.7z --output %TMP_DIR_WIN%\\magma_2.5.0_cuda90_release.7z ) else ( - aws s3 cp s3://ossci-windows/magma_2.4.0_cuda90_release.7z %TMP_DIR_WIN%\\magma_2.4.0_cuda90_release.7z --quiet + aws s3 cp s3://ossci-windows/magma_2.5.0_cuda90_release.7z %TMP_DIR_WIN%\\magma_2.5.0_cuda90_release.7z --quiet ) - 7z x -aoa %TMP_DIR_WIN%\\magma_2.4.0_cuda90_release.7z -o%TMP_DIR_WIN%\\magma + 7z x -aoa %TMP_DIR_WIN%\\magma_2.5.0_cuda90_release.7z -o%TMP_DIR_WIN%\\magma ) set MAGMA_HOME=%TMP_DIR_WIN%\\magma diff --git a/docs/source/notes/windows.rst b/docs/source/notes/windows.rst index 57976fdf7c..d8648b33f9 100644 --- a/docs/source/notes/windows.rst +++ b/docs/source/notes/windows.rst @@ -19,9 +19,9 @@ 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 cuda90/cuda92/cuda100 is also available in the following line. - set CUDA_PREFIX=cuda80 - curl -k https://s3.amazonaws.com/ossci-windows/magma_2.4.0_%CUDA_PREFIX%_release.7z -o magma.7z + REM cuda100 is also available in the following line. There are also 2.4.0 binaries for cuda80/cuda92. + set CUDA_PREFIX=cuda90 + curl -k https://s3.amazonaws.com/ossci-windows/magma_2.5.0_%CUDA_PREFIX%_release.7z -o magma.7z 7z x -aoa magma.7z -omagma REM Setting essential environment variables |