forked from sony/mct_quantizers
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflows for testing torch versions 2.2 and 2.3 (sony#95)
Co-authored-by: reuvenp <reuvenp@altair-semi.com>
- Loading branch information
1 parent
3f1032d
commit 73ec996
Showing
6 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.*" |