"examples/vscode:/vscode.git/clone" did not exist on "e667545da55017d5dbbd3f243d986506284d3e41"
Commit 4a2233db authored by rusty1s's avatar rusty1s
Browse files

windows cuda

parent e1522b17
......@@ -62,7 +62,16 @@ jobs:
env:
- TORCH=${TORCH_VERSION}+cpu
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
- EXTRA_COMPILE_ARGS="-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\include"
# - EXTRA_COMPILE_ARGS="-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\include"
before_install:
- choco install python --version 3.7.6
- name: windows/cu101
os: windows
language: shell # `language: python` is an error on Travis CI Windows
env:
- TORCH=${TORCH_VERSION}
- PATH=/c/Python37:/c/Python37/Scripts:$PATH
# - EXTRA_COMPILE_ARGS="-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\include"
before_install:
- choco install python --version 3.7.6
......
......@@ -14,3 +14,8 @@ if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${FORCE_CUDA}" == "1" ]; then
PATH=${CUDA_HOME}/bin:${PATH}
nvcc --version
fi
if [ "${TRAVIS_OS_NAME}" = "windows" ] && [ "${FORCE_CUDA}" == "1" ]; then
wget -q http://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda_10.1.243_426.00_win10.exe
./cuda_10.1.243_426.00_win10.exe
fi
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment