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
69f32b7f
Commit
69f32b7f
authored
Jun 16, 2021
by
rusty1s
Browse files
[skip ci] some updates
parent
070850cf
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
23 additions
and
23 deletions
+23
-23
.github/workflows/building.yml
.github/workflows/building.yml
+5
-5
.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/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/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/building.yml
View file @
69f32b7f
...
@@ -38,15 +38,15 @@ jobs:
...
@@ -38,15 +38,15 @@ jobs:
-
name
:
Install CUDA ${{ matrix.cuda-version }}
-
name
:
Install CUDA ${{ matrix.cuda-version }}
if
:
${{ matrix.cuda-version != 'cpu' }}
if
:
${{ matrix.cuda-version != 'cpu' }}
run
:
|
run
:
|
source
.github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}.sh
./
.github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}.sh
-
name
:
Install PyTorch ${{ matrix.torch-version }}+${{ matrix.cuda-version }}
-
name
:
Install PyTorch ${{ matrix.torch-version }}+${{ matrix.cuda-version }}
if
:
${{ runner.os != 'macOS' }}
if
:
${{ runner.os != 'macOS'
&& (matrix.torch-version != '1.8.0' || matrix.cuda-version != 'cu102')
}}
run
:
|
run
:
|
pip install torch==${{ matrix.torch-version}}+${{ matrix.cuda-version }} -f https://download.pytorch.org/whl/torch_stable.html
pip install torch==${{ matrix.torch-version}}+${{ matrix.cuda-version }} -f https://download.pytorch.org/whl/torch_stable.html
-
name
:
Install PyTorch ${{ matrix.torch-version }}+${{ matrix.cuda-version }}
on macOS
-
name
:
Install PyTorch ${{ matrix.torch-version }}+${{ matrix.cuda-version }}
if
:
${{ runner.os == 'macOS' }}
if
:
${{ runner.os == 'macOS'
|| (matrix.torch-version == '1.8.0' && matrix.cuda-version == 'cu102')
}}
run
:
|
run
:
|
pip install torch==${{ matrix.torch-version}} -f https://download.pytorch.org/whl/torch_stable.html
pip install torch==${{ matrix.torch-version}} -f https://download.pytorch.org/whl/torch_stable.html
...
@@ -59,7 +59,7 @@ jobs:
...
@@ -59,7 +59,7 @@ jobs:
-
name
:
Install main package with CUDA
-
name
:
Install main package with CUDA
if
:
${{ matrix.cuda-version != 'cpu' }}
if
:
${{ matrix.cuda-version != 'cpu' }}
run
:
|
run
:
|
source
.github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
./
.github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}-env.sh
FORCE_CUDA=1 pip install -e .
FORCE_CUDA=1 pip install -e .
ls -lah torch_scatter/
ls -lah torch_scatter/
...
...
.github/workflows/cuda/cu101-Linux-env.sh
View file @
69f32b7f
#!/bin/bash
#!/bin/bash
CUDA_HOME
=
/usr/local/cuda-10.1
export
CUDA_HOME
=
/usr/local/cuda-10.1
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
export
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
export
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
.github/workflows/cuda/cu101-Windows-env.sh
View file @
69f32b7f
#!/bin/bash
#!/bin/bash
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v10.1
export
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v10.1
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
export
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
export
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
.github/workflows/cuda/cu102-Linux-env.sh
View file @
69f32b7f
#!/bin/bash
#!/bin/bash
CUDA_HOME
=
/usr/local/cuda-10.2
export
CUDA_HOME
=
/usr/local/cuda-10.2
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
export
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
export
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
.github/workflows/cuda/cu102-Windows-env.sh
View file @
69f32b7f
#!/bin/bash
#!/bin/bash
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v10.2
export
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v10.2
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
export
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
export
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
.github/workflows/cuda/cu111-Linux-env.sh
View file @
69f32b7f
#!/bin/bash
#!/bin/bash
CUDA_HOME
=
/usr/local/cuda-11.1
export
CUDA_HOME
=
/usr/local/cuda-11.1
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
export
LD_LIBRARY_PATH
=
${
CUDA_HOME
}
/lib64:
${
LD_LIBRARY_PATH
}
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
export
PATH
=
${
CUDA_HOME
}
/bin:
${
PATH
}
.github/workflows/cuda/cu111-Windows-env.sh
View file @
69f32b7f
#!/bin/bash
#!/bin/bash
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v11.1
export
CUDA_HOME
=
/c/Program
\
Files/NVIDIA
\
GPU
\
Computing
\
Toolkit/CUDA/v11.1
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
export
PATH
=
${
CUDA_HOME
}
/bin:
$PATH
PATH
=
/c/Program
\
Files
\ \(
x86
\)
/Microsoft
\
Visual
\
Studio/2017/BuildTools/MSBuild/15.0/Bin:
$PATH
export
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