Skip to content

Commit ea9875e

Browse files
committed
trigger for
[v5] 🚨Refactor subprocessors handling in processors #41633 dummy
1 parent e4eabad commit ea9875e

File tree

2 files changed

+4
-65
lines changed

2 files changed

+4
-65
lines changed

.github/workflows/self-scheduled-caller.yml

Lines changed: 3 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- cron: "17 2 * * *"
77
push:
88
branches:
9-
- run_nvidia_ci*
9+
- remove-attributes-from-processors-ydshieh
1010
workflow_dispatch:
1111
inputs:
1212
prev_workflow_run_id:
@@ -23,7 +23,7 @@ on:
2323

2424
# Used for `push` to easily modify the target workflow runs to compare against
2525
env:
26-
prev_workflow_run_id: ""
26+
prev_workflow_run_id: "18640577526"
2727
other_workflow_run_id: ""
2828

2929

@@ -49,72 +49,10 @@ jobs:
4949
uses: ./.github/workflows/self-scheduled.yml
5050
with:
5151
job: run_models_gpu
52-
slack_report_channel: "#transformers-ci-daily-models"
52+
slack_report_channel: "#transformers-ci-dummy"
5353
docker: huggingface/transformers-all-latest-gpu
5454
ci_event: Daily CI
5555
runner_type: "a10"
5656
report_repo_id: hf-internal-testing/transformers_daily_ci
5757
commit_sha: ${{ github.sha }}
5858
secrets: inherit
59-
60-
torch-pipeline:
61-
name: Torch pipeline CI
62-
uses: ./.github/workflows/self-scheduled.yml
63-
with:
64-
job: run_pipelines_torch_gpu
65-
slack_report_channel: "#transformers-ci-daily-pipeline-torch"
66-
docker: huggingface/transformers-pytorch-gpu
67-
ci_event: Daily CI
68-
report_repo_id: hf-internal-testing/transformers_daily_ci
69-
commit_sha: ${{ github.sha }}
70-
secrets: inherit
71-
72-
example-ci:
73-
name: Example CI
74-
uses: ./.github/workflows/self-scheduled.yml
75-
with:
76-
job: run_examples_gpu
77-
slack_report_channel: "#transformers-ci-daily-examples"
78-
docker: huggingface/transformers-all-latest-gpu
79-
ci_event: Daily CI
80-
report_repo_id: hf-internal-testing/transformers_daily_ci
81-
commit_sha: ${{ github.sha }}
82-
secrets: inherit
83-
84-
trainer-fsdp-ci:
85-
name: Trainer/FSDP CI
86-
uses: ./.github/workflows/self-scheduled.yml
87-
with:
88-
job: run_trainer_and_fsdp_gpu
89-
slack_report_channel: "#transformers-ci-daily-training"
90-
docker: huggingface/transformers-all-latest-gpu
91-
runner_type: "a10"
92-
ci_event: Daily CI
93-
report_repo_id: hf-internal-testing/transformers_daily_ci
94-
commit_sha: ${{ github.sha }}
95-
secrets: inherit
96-
97-
deepspeed-ci:
98-
name: DeepSpeed CI
99-
uses: ./.github/workflows/self-scheduled.yml
100-
with:
101-
job: run_torch_cuda_extensions_gpu
102-
slack_report_channel: "#transformers-ci-daily-training"
103-
docker: huggingface/transformers-pytorch-deepspeed-latest-gpu
104-
ci_event: Daily CI
105-
working-directory-prefix: /workspace
106-
report_repo_id: hf-internal-testing/transformers_daily_ci
107-
commit_sha: ${{ github.sha }}
108-
secrets: inherit
109-
110-
quantization-ci:
111-
name: Quantization CI
112-
uses: ./.github/workflows/self-scheduled.yml
113-
with:
114-
job: run_quantization_torch_gpu
115-
slack_report_channel: "#transformers-ci-daily-quantization"
116-
docker: huggingface/transformers-quantization-latest-gpu
117-
ci_event: Daily CI
118-
report_repo_id: hf-internal-testing/transformers_daily_ci
119-
commit_sha: ${{ github.sha }}
120-
secrets: inherit

utils/split_model_tests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,4 +74,5 @@
7474
end = start + num_jobs_per_splits + (1 if idx < num_jobs % args.num_splits else 0)
7575
model_splits.append(d[start:end])
7676

77+
model_splits = [["models/vit"], ["models/clip"]]
7778
print(model_splits)

0 commit comments

Comments
 (0)