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
f9c38ab1
"tests/vscode:/vscode.git/clone" did not exist on "f190714e7766b7b9dca2b0b3126182b90e814f9a"
Commit
f9c38ab1
authored
Jun 16, 2021
by
rusty1s
Browse files
[skip ci] python 3.9 wheels
parent
cf887f24
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
7 deletions
+11
-7
.github/workflows/building.yml
.github/workflows/building.yml
+11
-7
No files found.
.github/workflows/building.yml
View file @
f9c38ab1
...
@@ -9,10 +9,15 @@ jobs:
...
@@ -9,10 +9,15 @@ jobs:
strategy
:
strategy
:
matrix
:
matrix
:
os
:
[
macos-10.15
]
#[ubuntu-18.04]
os
:
[
macos-10.15
,
ubuntu-18.04
]
python-version
:
[
3.6
,
3.7
,
3.8
,
3.9
]
python-version
:
[
3.9
]
torch-version
:
[
1.9.0
]
torch-version
:
[
1.8.0
]
cuda-version
:
[
'
cpu'
]
cuda-version
:
[
'
cpu'
,
'
cu102'
,
'
cu111'
]
exclude
:
-
os
:
macos-10.15
cuda-version
:
'
cu102'
-
os
:
macos-10.15
cuda-version
:
'
cu111'
steps
:
steps
:
-
uses
:
actions/checkout@v2
-
uses
:
actions/checkout@v2
...
@@ -23,7 +28,6 @@ jobs:
...
@@ -23,7 +28,6 @@ jobs:
-
name
:
Update pip
-
name
:
Update pip
run
:
|
run
:
|
echo ${{ runner.os }}
pip install --upgrade pip
pip install --upgrade pip
-
name
:
Install CUDA ${{ matrix.cuda-version }}
-
name
:
Install CUDA ${{ matrix.cuda-version }}
...
@@ -32,12 +36,12 @@ jobs:
...
@@ -32,12 +36,12 @@ jobs:
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}.sh
source .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 != 'mac
os
' }}
if
:
${{ runner.os != 'mac
OS
' }}
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 }} on macOS
if
:
${{ runner.os == 'mac
os
' }}
if
:
${{ runner.os == 'mac
OS
' }}
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
...
...
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