Add PyTorch 1.11 to past CI (#18302)
Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
This commit is contained in:
@@ -15,7 +15,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
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
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
|
|||||||
10
.github/workflows/self-past-caller.yml
vendored
10
.github/workflows/self-past-caller.yml
vendored
@@ -6,9 +6,19 @@ on:
|
|||||||
- run-past-ci*
|
- run-past-ci*
|
||||||
|
|
||||||
jobs:
|
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:
|
run_past_ci_pytorch_1-10:
|
||||||
name: PyTorch 1.10
|
name: PyTorch 1.10
|
||||||
if: always()
|
if: always()
|
||||||
|
needs: [run_past_ci_pytorch_1-11]
|
||||||
uses: ./.github/workflows/self-past.yml
|
uses: ./.github/workflows/self-past.yml
|
||||||
with:
|
with:
|
||||||
framework: pytorch
|
framework: pytorch
|
||||||
|
|||||||
@@ -4,6 +4,17 @@ import os
|
|||||||
|
|
||||||
past_versions_testing = {
|
past_versions_testing = {
|
||||||
"pytorch": {
|
"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": {
|
"1.10": {
|
||||||
"torch": "1.10.2",
|
"torch": "1.10.2",
|
||||||
"torchvision": "0.11.3",
|
"torchvision": "0.11.3",
|
||||||
|
|||||||
Reference in New Issue
Block a user