-
Notifications
You must be signed in to change notification settings - Fork 27.7k
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 transformers
' DeepSpeed CI job
#23463
Conversation
@@ -26,6 +26,9 @@ RUN python3 -m pip install --no-cache-dir ./transformers[deepspeed-testing] | |||
|
|||
RUN python3 -m pip install --no-cache-dir git+https://github.com/huggingface/accelerate@main#egg=accelerate | |||
|
|||
# Uninstall `transformer-engine` shipped with the base image | |||
RUN python3 -m pip uninstall -y transformer-engine |
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.
wasn't in the previous base docker image (cu117)
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.
Thanks for fixing!
The documentation is not available anymore as the PR was closed or merged. |
Going to merge. cc @stas00 so you know now we are using CUDA 118 on CI (as you mentioned/requested once before) |
super! thank you for the heads up, @ydshieh! |
* fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
* fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
What does this PR do?
The new (cu118) base docker image has pre-installed
transformer-engine
(which wasn't the case in the previous base image). This causes DeepSpeed CI job fails from the beginning withThis PR uninstall
transformer-engine
so @ydshieh won't be the breaking bad.