Skip to content

Commit 7b2acf2

Browse files
reuvenperetzreuvenp
andauthored
Add torch testing in torch 2.0 and 2.1 (#73)
Co-authored-by: reuvenp <reuvenp@altair-semi.com>
1 parent e7faa0a commit 7b2acf2

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Run Tests - PyTorch 2.0
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
7+
jobs:
8+
run-pytorch-2_0:
9+
uses: ./.github/workflows/run_pytorch_tests.yml
10+
with:
11+
torch-version: "2.0.*"
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Run Tests - PyTorch 2.1
2+
on:
3+
workflow_dispatch: # Allow manual triggers
4+
schedule:
5+
- cron: 0 0 * * *
6+
7+
jobs:
8+
run-pytorch-2_1:
9+
uses: ./.github/workflows/run_pytorch_tests.yml
10+
with:
11+
torch-version: "2.1.*"

0 commit comments

Comments
 (0)