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-cluster
Commits
dc043ef4
Commit
dc043ef4
authored
Sep 07, 2021
by
rusty1s
Browse files
update to ubuntu-1804
parent
1d2db963
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
8 deletions
+7
-8
.github/workflows/building-conda.yml
.github/workflows/building-conda.yml
+1
-1
.github/workflows/building.yml
.github/workflows/building.yml
+1
-1
.github/workflows/cuda/cu101-Linux.sh
.github/workflows/cuda/cu101-Linux.sh
+1
-1
.github/workflows/cuda/cu102-Linux.sh
.github/workflows/cuda/cu102-Linux.sh
+1
-2
.github/workflows/cuda/cu111-Linux.sh
.github/workflows/cuda/cu111-Linux.sh
+1
-1
.github/workflows/linting.yml
.github/workflows/linting.yml
+1
-1
.github/workflows/testing.yml
.github/workflows/testing.yml
+1
-1
No files found.
.github/workflows/building-conda.yml
View file @
dc043ef4
...
@@ -10,7 +10,7 @@ jobs:
...
@@ -10,7 +10,7 @@ jobs:
strategy
:
strategy
:
fail-fast
:
false
fail-fast
:
false
matrix
:
matrix
:
os
:
[
ubuntu-1
6
.04
]
#, macos-10.15, windows-latest]
os
:
[
ubuntu-1
8
.04
]
#, macos-10.15, windows-latest]
python-version
:
[
3.6
,
3.7
,
3.8
,
3.9
]
python-version
:
[
3.6
,
3.7
,
3.8
,
3.9
]
torch-version
:
[
1.8.0
,
1.9.0
]
torch-version
:
[
1.8.0
,
1.9.0
]
cuda-version
:
[
'
cpu'
,
'
cu101'
,
'
cu102'
,
'
cu111'
]
cuda-version
:
[
'
cpu'
,
'
cu101'
,
'
cu102'
,
'
cu111'
]
...
...
.github/workflows/building.yml
View file @
dc043ef4
...
@@ -10,7 +10,7 @@ jobs:
...
@@ -10,7 +10,7 @@ jobs:
strategy
:
strategy
:
fail-fast
:
false
fail-fast
:
false
matrix
:
matrix
:
os
:
[
ubuntu-1
6
.04
,
macos-10.15
,
windows-latest
]
os
:
[
ubuntu-1
8
.04
,
macos-10.15
,
windows-latest
]
python-version
:
[
3.6
,
3.7
,
3.8
,
3.9
]
python-version
:
[
3.6
,
3.7
,
3.8
,
3.9
]
torch-version
:
[
1.8.0
,
1.9.0
]
torch-version
:
[
1.8.0
,
1.9.0
]
cuda-version
:
[
'
cpu'
,
'
cu101'
,
'
cu102'
,
'
cu111'
]
cuda-version
:
[
'
cpu'
,
'
cu101'
,
'
cu102'
,
'
cu111'
]
...
...
.github/workflows/cuda/cu101-Linux.sh
View file @
dc043ef4
#!/bin/bash
#!/bin/bash
OS
=
ubuntu1
6
04
OS
=
ubuntu1
8
04
wget
-nv
https://developer.download.nvidia.com/compute/cuda/repos/
${
OS
}
/x86_64/cuda-
${
OS
}
.pin
wget
-nv
https://developer.download.nvidia.com/compute/cuda/repos/
${
OS
}
/x86_64/cuda-
${
OS
}
.pin
sudo mv
cuda-
${
OS
}
.pin /etc/apt/preferences.d/cuda-repository-pin-600
sudo mv
cuda-
${
OS
}
.pin /etc/apt/preferences.d/cuda-repository-pin-600
...
...
.github/workflows/cuda/cu102-Linux.sh
View file @
dc043ef4
#!/bin/bash
#!/bin/bash
OS
=
ubuntu1
6
04
OS
=
ubuntu1
8
04
# Ubuntu-18.04
wget
-nv
https://developer.download.nvidia.com/compute/cuda/repos/
${
OS
}
/x86_64/cuda-
${
OS
}
.pin
wget
-nv
https://developer.download.nvidia.com/compute/cuda/repos/
${
OS
}
/x86_64/cuda-
${
OS
}
.pin
sudo mv
cuda-
${
OS
}
.pin /etc/apt/preferences.d/cuda-repository-pin-600
sudo mv
cuda-
${
OS
}
.pin /etc/apt/preferences.d/cuda-repository-pin-600
wget
-nv
https://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda-repo-
${
OS
}
-10-2-local-10
.2.89-440.33.01_1.0-1_amd64.deb
wget
-nv
https://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda-repo-
${
OS
}
-10-2-local-10
.2.89-440.33.01_1.0-1_amd64.deb
...
...
.github/workflows/cuda/cu111-Linux.sh
View file @
dc043ef4
#!/bin/bash
#!/bin/bash
OS
=
ubuntu1
6
04
OS
=
ubuntu1
8
04
wget
-nv
https://developer.download.nvidia.com/compute/cuda/repos/
${
OS
}
/x86_64/cuda-
${
OS
}
.pin
wget
-nv
https://developer.download.nvidia.com/compute/cuda/repos/
${
OS
}
/x86_64/cuda-
${
OS
}
.pin
sudo mv
cuda-
${
OS
}
.pin /etc/apt/preferences.d/cuda-repository-pin-600
sudo mv
cuda-
${
OS
}
.pin /etc/apt/preferences.d/cuda-repository-pin-600
...
...
.github/workflows/linting.yml
View file @
dc043ef4
...
@@ -9,7 +9,7 @@ jobs:
...
@@ -9,7 +9,7 @@ jobs:
strategy
:
strategy
:
matrix
:
matrix
:
os
:
[
ubuntu-
16.04
]
os
:
[
ubuntu-
latest
]
python-version
:
[
3.6
]
python-version
:
[
3.6
]
steps
:
steps
:
...
...
.github/workflows/testing.yml
View file @
dc043ef4
...
@@ -9,7 +9,7 @@ jobs:
...
@@ -9,7 +9,7 @@ jobs:
strategy
:
strategy
:
matrix
:
matrix
:
os
:
[
ubuntu-
16.04
,
windows-latest
]
os
:
[
ubuntu-
latest
,
windows-latest
]
python-version
:
[
3.6
]
python-version
:
[
3.6
]
torch-version
:
[
1.8.0
,
1.9.0
]
torch-version
:
[
1.8.0
,
1.9.0
]
...
...
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