Skip to content

Commit

Permalink
Add workflows for testing torch versions 2.2 and 2.3 (sony#95)
Browse files Browse the repository at this point in the history
Co-authored-by: reuvenp <reuvenp@altair-semi.com>
  • Loading branch information
reuvenperetz and reuvenp authored Jun 19, 2024
1 parent 3f1032d commit 73ec996
Show file tree
Hide file tree
Showing 6 changed files with 74 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/run_comp_test_torch22_v14.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Run Backward Compatibility Test - Pytorch 2.2 MCTQ v1.4.0
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *

jobs:
run-comp-torch-2_2-v1_4:
uses: ./.github/workflows/compatibility_torch_tests.yml
with:
save_version: "v1.4.0"
python_version: "3.10"
torch_version: "2.2.*"
13 changes: 13 additions & 0 deletions .github/workflows/run_comp_test_torch23_v14.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Run Backward Compatibility Test - Pytorch 2.3 MCTQ v1.4.0
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *

jobs:
run-comp-torch-2_3-v1_4:
uses: ./.github/workflows/compatibility_torch_tests.yml
with:
save_version: "v1.4.0"
python_version: "3.10"
torch_version: "2.3.*"
13 changes: 13 additions & 0 deletions .github/workflows/run_forward_comp_test_torch22_v14.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Run Forward Compatibility Test - Pytorch 2.2 MCTQ v1.4.0
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *

jobs:
run-comp-torch-2_2-v1_4:
uses: ./.github/workflows/forward_compatibility_torch_tests.yml
with:
load_version: "v1.4.0"
python_version: "3.10"
torch_version: "2.2.*"
13 changes: 13 additions & 0 deletions .github/workflows/run_forward_comp_test_torch23_v14.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Run Forward Compatibility Test - Pytorch 2.3 MCTQ v1.4.0
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *

jobs:
run-comp-torch-2_3-v1_4:
uses: ./.github/workflows/forward_compatibility_torch_tests.yml
with:
load_version: "v1.4.0"
python_version: "3.10"
torch_version: "2.3.*"
11 changes: 11 additions & 0 deletions .github/workflows/run_tests_torch2_2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Run Tests - PyTorch 2.2
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *

jobs:
run-pytorch-2_2:
uses: ./.github/workflows/run_pytorch_tests.yml
with:
torch-version: "2.2.*"
11 changes: 11 additions & 0 deletions .github/workflows/run_tests_torch2_3.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Run Tests - PyTorch 2.3
on:
workflow_dispatch: # Allow manual triggers
schedule:
- cron: 0 0 * * *

jobs:
run-pytorch-2_3:
uses: ./.github/workflows/run_pytorch_tests.yml
with:
torch-version: "2.3.*"

0 comments on commit 73ec996

Please sign in to comment.