-
Notifications
You must be signed in to change notification settings - Fork 27.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix DeepSpeed
CI job link in Past CI
#22967
Conversation
job_name = f"{key} ({artifact_path['gpu']}-gpu)" | ||
if job_name_prefix: | ||
job_name = f"{job_name_prefix} / {job_name}" | ||
additional_results[key]["job_link"][artifact_path["gpu"]] = github_actions_job_links.get(job_name) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For model test jobs in Past CI, we have
transformers/utils/notification_service.py
Lines 906 to 909 in 741035f
job_name = f"Model tests ({model.replace('models_', 'models/')}, {artifact_path['gpu']}-gpu)" | |
if job_name_prefix: | |
job_name = f"{job_name_prefix} / {job_name}" | |
model_results[model]["job_link"][artifact_path["gpu"]] = github_actions_job_links.get(job_name) |
PyTorch 1.13 / Model tests (models/audio_spectrogram_transformer, multi-gpu)
In #22393, we added DeepSpeed test job to Nightly/Past CI, but I forgot to apply the same change mentioned above to this additional test jobs (i.e. not model test job), and the job links are missing for them in the Slack report. The job name should look like
PyTorch 1.13 / Torch CUDA extension tests (single-gpu)
The documentation is not available anymore as the PR was closed or merged. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thnaks for the fix!
* Fix job link * fix artifact name logic --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
* Fix job link * fix artifact name logic --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
What does this PR do?
Fix missing
DeepSpeed
CI job link in Past CI. See comment in the change.