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
chenpangpang
transformers
Commits
c4c6b4db
Unverified
Commit
c4c6b4db
authored
Jul 26, 2022
by
Yih-Dar
Committed by
GitHub
Jul 26, 2022
Browse files
Add PyTorch 1.11 to past CI (#18302)
Co-authored-by:
ydshieh
<
ydshieh@users.noreply.github.com
>
parent
bbc28106
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
.github/workflows/build-past-ci-docker-images.yml
.github/workflows/build-past-ci-docker-images.yml
+1
-1
.github/workflows/self-past-caller.yml
.github/workflows/self-past-caller.yml
+10
-0
utils/past_ci_versions.py
utils/past_ci_versions.py
+11
-0
No files found.
.github/workflows/build-past-ci-docker-images.yml
View file @
c4c6b4db
...
...
@@ -15,7 +15,7 @@ jobs:
strategy
:
fail-fast
:
false
matrix
:
version
:
[
"
1.10"
,
"
1.9"
,
"
1.8"
,
"
1.7"
,
"
1.6"
,
"
1.5"
,
"
1.4"
]
version
:
[
"
1.11"
,
"
1.10"
,
"
1.9"
,
"
1.8"
,
"
1.7"
,
"
1.6"
,
"
1.5"
,
"
1.4"
]
runs-on
:
ubuntu-latest
steps
:
-
...
...
.github/workflows/self-past-caller.yml
View file @
c4c6b4db
...
...
@@ -6,9 +6,19 @@ on:
-
run-past-ci*
jobs
:
run_past_ci_pytorch_1-11
:
name
:
PyTorch
1.11
if
:
always()
uses
:
./.github/workflows/self-past.yml
with
:
framework
:
pytorch
version
:
"
1.11"
secrets
:
inherit
run_past_ci_pytorch_1-10
:
name
:
PyTorch
1.10
if
:
always()
needs
:
[
run_past_ci_pytorch_1-11
]
uses
:
./.github/workflows/self-past.yml
with
:
framework
:
pytorch
...
...
utils/past_ci_versions.py
View file @
c4c6b4db
...
...
@@ -4,6 +4,17 @@ import os
past_versions_testing
=
{
"pytorch"
:
{
"1.11"
:
{
"torch"
:
"1.11.0"
,
"torchvision"
:
"0.12.0"
,
"torchaudio"
:
"0.11.0"
,
"python"
:
3.9
,
"cuda"
:
"cu113"
,
"install"
:
(
"python3 -m pip install --no-cache-dir -U torch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0"
" --extra-index-url https://download.pytorch.org/whl/cu113"
),
},
"1.10"
:
{
"torch"
:
"1.10.2"
,
"torchvision"
:
"0.11.3"
,
...
...
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