Commit a49ba37d authored by rusty1s's avatar rusty1s
Browse files

update cuda

parent b111a8cb
...@@ -83,6 +83,7 @@ if [ "${TRAVIS_OS_NAME}" = "windows" ] && [ "${IDX}" != "cpu" ]; then ...@@ -83,6 +83,7 @@ if [ "${TRAVIS_OS_NAME}" = "windows" ] && [ "${IDX}" != "cpu" ]; then
ls /c/Program\ Files/NVIDIA\ GPU\ Computing\ Toolkit ls /c/Program\ Files/NVIDIA\ GPU\ Computing\ Toolkit
ls /c/Program\ Files/NVIDIA\ GPU\ Computing\ Toolkit/CUDA ls /c/Program\ Files/NVIDIA\ GPU\ Computing\ Toolkit/CUDA
ls /c/Program\ Files/NVIDIA\ GPU\ Computing\ Toolkit/CUDA/v${CUDA_SHORT} ls /c/Program\ Files/NVIDIA\ GPU\ Computing\ Toolkit/CUDA/v${CUDA_SHORT}
PATH=/c/Program\ Files/NVIDIA\ GPU\ Computing\ Toolkit/CUDA/v${CUDA_SHORT}/bin:$PATH CUDA_HOME=/c/Program\ Files/NVIDIA\ GPU\ Computing\ Toolkit/CUDA/v${CUDA_SHORT}
PATH=${CUDA_HOME}/bin:$PATH
nvcc --version nvcc --version
fi fi
...@@ -14,6 +14,6 @@ for wheel in wheels: ...@@ -14,6 +14,6 @@ for wheel in wheels:
continue continue
names = name.split('-') names = name.split('-')
name = '-'.join(names[:-5] + [names[-5] + '%2B' + idx] + names[-4:]) name = '-'.join(names[:-4] + [idx] + names[-4:])
new_wheel = osp.join(*wheel.split(osp.sep)[:-1], name) new_wheel = osp.join(*wheel.split(osp.sep)[:-1], name)
os.rename(wheel, new_wheel) os.rename(wheel, new_wheel)
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