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

windows cuda

parent e1522b17
...@@ -62,7 +62,16 @@ jobs: ...@@ -62,7 +62,16 @@ jobs:
env: env:
- TORCH=${TORCH_VERSION}+cpu - TORCH=${TORCH_VERSION}+cpu
- PATH=/c/Python37:/c/Python37/Scripts:$PATH - 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: before_install:
- choco install python --version 3.7.6 - choco install python --version 3.7.6
......
...@@ -14,3 +14,8 @@ if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${FORCE_CUDA}" == "1" ]; then ...@@ -14,3 +14,8 @@ if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${FORCE_CUDA}" == "1" ]; then
PATH=${CUDA_HOME}/bin:${PATH} PATH=${CUDA_HOME}/bin:${PATH}
nvcc --version nvcc --version
fi 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