-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support PyTorch 2.1 and add PyTorch tests for python 3.11
- Loading branch information
elad cohen
committed
Nov 8, 2023
1 parent
7e665f5
commit a0294fd
Showing
7 changed files
with
102 additions
and
5 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,16 @@ | ||
name: Python 3.10, Pytorch 2.1 | ||
on: | ||
workflow_dispatch: # Allow manual triggers | ||
schedule: | ||
- cron: 0 0 * * * | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
|
||
jobs: | ||
run-tests: | ||
uses: ./.github/workflows/run_pytorch_tests.yml | ||
with: | ||
python-version: "3.10" | ||
torch-version: "2.1.*" |
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,16 @@ | ||
name: Python 3.11, Pytorch 1.13 | ||
on: | ||
workflow_dispatch: # Allow manual triggers | ||
schedule: | ||
- cron: 0 0 * * * | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
|
||
jobs: | ||
run-tests: | ||
uses: ./.github/workflows/run_pytorch_tests.yml | ||
with: | ||
python-version: "3.11" | ||
torch-version: "1.13.*" |
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,16 @@ | ||
name: Python 3.11, Pytorch 2.0 | ||
on: | ||
workflow_dispatch: # Allow manual triggers | ||
schedule: | ||
- cron: 0 0 * * * | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
|
||
jobs: | ||
run-tests: | ||
uses: ./.github/workflows/run_pytorch_tests.yml | ||
with: | ||
python-version: "3.11" | ||
torch-version: "2.0.*" |
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,16 @@ | ||
name: Python 3.11, Pytorch 2.1 | ||
on: | ||
workflow_dispatch: # Allow manual triggers | ||
schedule: | ||
- cron: 0 0 * * * | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
|
||
jobs: | ||
run-tests: | ||
uses: ./.github/workflows/run_pytorch_tests.yml | ||
with: | ||
python-version: "3.11" | ||
torch-version: "2.1.*" |
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,16 @@ | ||
name: Python 3.8, Pytorch 2.1 | ||
on: | ||
workflow_dispatch: # Allow manual triggers | ||
schedule: | ||
- cron: 0 0 * * * | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
|
||
jobs: | ||
run-tests: | ||
uses: ./.github/workflows/run_pytorch_tests.yml | ||
with: | ||
python-version: "3.8" | ||
torch-version: "2.1.*" |
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,16 @@ | ||
name: Python 3.9, Pytorch 2.1 | ||
on: | ||
workflow_dispatch: # Allow manual triggers | ||
schedule: | ||
- cron: 0 0 * * * | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
|
||
jobs: | ||
run-tests: | ||
uses: ./.github/workflows/run_pytorch_tests.yml | ||
with: | ||
python-version: "3.9" | ||
torch-version: "2.1.*" |
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