-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of github.com:huggingface/transformers into fix-s…
…pm-fast-models
- Loading branch information
Showing
640 changed files
with
61,749 additions
and
6,235 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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,14 @@ | ||
name: Self-hosted runner (AMD scheduled CI caller) | ||
|
||
on: | ||
schedule: | ||
- cron: "17 2 * * *" | ||
|
||
jobs: | ||
run_scheduled_amd_ci: | ||
name: Trigger Scheduled AMD CI | ||
runs-on: ubuntu-22.04 | ||
if: ${{ always() }} | ||
steps: | ||
- name: Trigger scheduled AMD CI via workflow_run | ||
run: echo "Trigger scheduled AMD CI via workflow_run" |
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,19 @@ | ||
name: Self-hosted runner (AMD mi210 scheduled CI caller) | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Self-hosted runner (AMD scheduled CI caller)"] | ||
branches: ["main"] | ||
types: [completed] | ||
push: | ||
branches: | ||
- run_amd_scheduled_ci_caller* | ||
|
||
jobs: | ||
run_amd_ci: | ||
name: AMD mi210 | ||
if: (cancelled() != true) && ((github.event_name == 'workflow_run') || ((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 |
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,19 @@ | ||
name: Self-hosted runner (AMD mi250 scheduled CI caller) | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Self-hosted runner (AMD scheduled CI caller)"] | ||
branches: ["main"] | ||
types: [completed] | ||
push: | ||
branches: | ||
- run_amd_scheduled_ci_caller* | ||
|
||
jobs: | ||
run_amd_ci: | ||
name: AMD mi250 | ||
if: (cancelled() != true) && ((github.event_name == 'workflow_run') || ((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.