Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
torch-scatter
Commits
40e82097
Commit
40e82097
authored
Jun 16, 2021
by
rusty1s
Browse files
update
parent
e691c780
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
22 additions
and
22 deletions
+22
-22
.github/workflows/cuda/cu101-Linux-env.sh
.github/workflows/cuda/cu101-Linux-env.sh
+3
-3
.github/workflows/cuda/cu101-Windows-env.sh
.github/workflows/cuda/cu101-Windows-env.sh
+3
-3
.github/workflows/cuda/cu101-Windows.sh
.github/workflows/cuda/cu101-Windows.sh
+2
-2
.github/workflows/cuda/cu102-Linux-env.sh
.github/workflows/cuda/cu102-Linux-env.sh
+3
-3
.github/workflows/cuda/cu102-Windows-env.sh
.github/workflows/cuda/cu102-Windows-env.sh
+3
-3
.github/workflows/cuda/cu102-Windows.sh
.github/workflows/cuda/cu102-Windows.sh
+2
-2
.github/workflows/cuda/cu111-Linux-env.sh
.github/workflows/cuda/cu111-Linux-env.sh
+3
-3
.github/workflows/cuda/cu111-Windows-env.sh
.github/workflows/cuda/cu111-Windows-env.sh
+3
-3
No files found.
.github/workflows/cuda/cu101-Linux-env.sh
View file @
40e82097
#!/bin/bash
#!/bin/bash
export
CUDA_HOME
=
/usr/local/cuda-10.1
CUDA_HOME
=
/usr/local/cuda-10.1
export
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
export
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
.github/workflows/cuda/cu101-Windows-env.sh
View file @
40e82097
#!/bin/bash
#!/bin/bash
export
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v10.1
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v10.1
export
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
export
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
.github/workflows/cuda/cu101-Windows.sh
View file @
40e82097
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Install NVIDIA drivers, see:
# Install NVIDIA drivers, see:
# https://github.com/pytorch/vision/blob/master/packaging/windows/internal/cuda_install.bat#L99-L102
# https://github.com/pytorch/vision/blob/master/packaging/windows/internal/cuda_install.bat#L99-L102
curl
-
sS
"https://drive.google.com/u/0/uc?id=1injUyo3lnarMgWyRcXqKg4UGnN0ysmuq&export=download"
--output
"/tmp/gpu_driver_dlls.zip"
curl
-
k
-L
"https://drive.google.com/u/0/uc?id=1injUyo3lnarMgWyRcXqKg4UGnN0ysmuq&export=download"
--output
"/tmp/gpu_driver_dlls.zip"
7z x
"/tmp/gpu_driver_dlls.zip"
-o
"/c/Windows/System32"
7z x
"/tmp/gpu_driver_dlls.zip"
-o
"/c/Windows/System32"
export
CUDA_SHORT
=
10.1
export
CUDA_SHORT
=
10.1
...
@@ -10,6 +10,6 @@ export CUDA_URL=https://developer.nvidia.com/compute/cuda/${CUDA_SHORT}/Prod/loc
...
@@ -10,6 +10,6 @@ export CUDA_URL=https://developer.nvidia.com/compute/cuda/${CUDA_SHORT}/Prod/loc
export
CUDA_FILE
=
cuda_
${
CUDA_SHORT
}
.105_418.96_win10.exe
export
CUDA_FILE
=
cuda_
${
CUDA_SHORT
}
.105_418.96_win10.exe
# Install CUDA:
# Install CUDA:
curl
-sS
"
${
CUDA_URL
}
/
${
CUDA_FILE
}
"
--output
"
${
CUDA_FILE
}
"
curl
"
${
CUDA_URL
}
/
${
CUDA_FILE
}
"
--output
"
${
CUDA_FILE
}
"
PowerShell
-Command
"Start-Process -FilePath
\"
${
CUDA_FILE
}
\"
-ArgumentList
\"
-s nvcc_
${
CUDA_SHORT
}
cuobjdump_
${
CUDA_SHORT
}
nvprune_
${
CUDA_SHORT
}
cupti_
${
CUDA_SHORT
}
cublas_dev_
${
CUDA_SHORT
}
cudart_
${
CUDA_SHORT
}
cufft_dev_
${
CUDA_SHORT
}
curand_dev_
${
CUDA_SHORT
}
cusolver_dev_
${
CUDA_SHORT
}
cusparse_dev_
${
CUDA_SHORT
}
npp_dev_
${
CUDA_SHORT
}
nvrtc_dev_
${
CUDA_SHORT
}
nvml_dev_
${
CUDA_SHORT
}
\"
-Wait -NoNewWindow"
PowerShell
-Command
"Start-Process -FilePath
\"
${
CUDA_FILE
}
\"
-ArgumentList
\"
-s nvcc_
${
CUDA_SHORT
}
cuobjdump_
${
CUDA_SHORT
}
nvprune_
${
CUDA_SHORT
}
cupti_
${
CUDA_SHORT
}
cublas_dev_
${
CUDA_SHORT
}
cudart_
${
CUDA_SHORT
}
cufft_dev_
${
CUDA_SHORT
}
curand_dev_
${
CUDA_SHORT
}
cusolver_dev_
${
CUDA_SHORT
}
cusparse_dev_
${
CUDA_SHORT
}
npp_dev_
${
CUDA_SHORT
}
nvrtc_dev_
${
CUDA_SHORT
}
nvml_dev_
${
CUDA_SHORT
}
\"
-Wait -NoNewWindow"
rm
-f
"
${
CUDA_FILE
}
"
rm
-f
"
${
CUDA_FILE
}
"
.github/workflows/cuda/cu102-Linux-env.sh
View file @
40e82097
#!/bin/bash
#!/bin/bash
export
CUDA_HOME
=
/usr/local/cuda-10.2
CUDA_HOME
=
/usr/local/cuda-10.2
export
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
export
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
.github/workflows/cuda/cu102-Windows-env.sh
View file @
40e82097
#!/bin/bash
#!/bin/bash
export
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v10.2
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v10.2
export
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
export
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
.github/workflows/cuda/cu102-Windows.sh
View file @
40e82097
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Install NVIDIA drivers, see:
# Install NVIDIA drivers, see:
# https://github.com/pytorch/vision/blob/master/packaging/windows/internal/cuda_install.bat#L99-L102
# https://github.com/pytorch/vision/blob/master/packaging/windows/internal/cuda_install.bat#L99-L102
curl
-
sS
"https://drive.google.com/u/0/uc?id=1injUyo3lnarMgWyRcXqKg4UGnN0ysmuq&export=download"
--output
"/tmp/gpu_driver_dlls.zip"
curl
-
k
-L
"https://drive.google.com/u/0/uc?id=1injUyo3lnarMgWyRcXqKg4UGnN0ysmuq&export=download"
--output
"/tmp/gpu_driver_dlls.zip"
7z x
"/tmp/gpu_driver_dlls.zip"
-o
"/c/Windows/System32"
7z x
"/tmp/gpu_driver_dlls.zip"
-o
"/c/Windows/System32"
export
CUDA_SHORT
=
10.2
export
CUDA_SHORT
=
10.2
...
@@ -10,6 +10,6 @@ export CUDA_URL=https://developer.download.nvidia.com/compute/cuda/${CUDA_SHORT}
...
@@ -10,6 +10,6 @@ export CUDA_URL=https://developer.download.nvidia.com/compute/cuda/${CUDA_SHORT}
export
CUDA_FILE
=
cuda_
${
CUDA_SHORT
}
.89_441.22_win10.exe
export
CUDA_FILE
=
cuda_
${
CUDA_SHORT
}
.89_441.22_win10.exe
# Install CUDA:
# Install CUDA:
curl
-sS
"
${
CUDA_URL
}
/
${
CUDA_FILE
}
"
--output
"
${
CUDA_FILE
}
"
curl
"
${
CUDA_URL
}
/
${
CUDA_FILE
}
"
--output
"
${
CUDA_FILE
}
"
PowerShell
-Command
"Start-Process -FilePath
\"
${
CUDA_FILE
}
\"
-ArgumentList
\"
-s nvcc_
${
CUDA_SHORT
}
cuobjdump_
${
CUDA_SHORT
}
nvprune_
${
CUDA_SHORT
}
cupti_
${
CUDA_SHORT
}
cublas_dev_
${
CUDA_SHORT
}
cudart_
${
CUDA_SHORT
}
cufft_dev_
${
CUDA_SHORT
}
curand_dev_
${
CUDA_SHORT
}
cusolver_dev_
${
CUDA_SHORT
}
cusparse_dev_
${
CUDA_SHORT
}
npp_dev_
${
CUDA_SHORT
}
nvrtc_dev_
${
CUDA_SHORT
}
nvml_dev_
${
CUDA_SHORT
}
\"
-Wait -NoNewWindow"
PowerShell
-Command
"Start-Process -FilePath
\"
${
CUDA_FILE
}
\"
-ArgumentList
\"
-s nvcc_
${
CUDA_SHORT
}
cuobjdump_
${
CUDA_SHORT
}
nvprune_
${
CUDA_SHORT
}
cupti_
${
CUDA_SHORT
}
cublas_dev_
${
CUDA_SHORT
}
cudart_
${
CUDA_SHORT
}
cufft_dev_
${
CUDA_SHORT
}
curand_dev_
${
CUDA_SHORT
}
cusolver_dev_
${
CUDA_SHORT
}
cusparse_dev_
${
CUDA_SHORT
}
npp_dev_
${
CUDA_SHORT
}
nvrtc_dev_
${
CUDA_SHORT
}
nvml_dev_
${
CUDA_SHORT
}
\"
-Wait -NoNewWindow"
rm
-f
"
${
CUDA_FILE
}
"
rm
-f
"
${
CUDA_FILE
}
"
.github/workflows/cuda/cu111-Linux-env.sh
View file @
40e82097
#!/bin/bash
#!/bin/bash
export
CUDA_HOME
=
/usr/local/cuda-11.1
CUDA_HOME
=
/usr/local/cuda-11.1
export
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
export
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
.github/workflows/cuda/cu111-Windows-env.sh
View file @
40e82097
#!/bin/bash
#!/bin/bash
export
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v11.1
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v11.1
export
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
export
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment