-
Notifications
You must be signed in to change notification settings - Fork 27.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add RoCm scheduled CI & upgrade RoCm CI to PyTorch 2.1 (#26940)
* add scheduled ci on amdgpu * fix likely typo * more tests, avoid parallelism * precise comment * fix report channel * trigger docker build on this branch * fix * fix * run rocm scheduled ci * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix --------- Co-authored-by: ydshieh <[email protected]>
- Loading branch information
Showing
6 changed files
with
505 additions
and
13 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
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
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,25 @@ | ||
name: Self-hosted runner (AMD scheduled CI caller) | ||
|
||
on: | ||
schedule: | ||
- cron: "17 2 * * *" | ||
push: | ||
branches: | ||
- run_amd_scheduled_ci_caller* | ||
|
||
jobs: | ||
run_amd_ci_mi210: | ||
name: AMD mi210 | ||
if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_scheduled_ci_caller'))) | ||
uses: ./.github/workflows/self-scheduled-amd.yml | ||
with: | ||
gpu_flavor: mi210 | ||
secrets: inherit | ||
|
||
run_amd_ci_mi250: | ||
name: AMD mi250 | ||
if: (cancelled() != true) && ((github.event_name == 'schedule') || ((github.event_name == 'push') && startsWith(github.ref_name, 'run_amd_scheduled_ci_caller'))) | ||
uses: ./.github/workflows/self-scheduled-amd.yml | ||
with: | ||
gpu_flavor: mi250 | ||
secrets: inherit |
Oops, something went wrong.