-
Notifications
You must be signed in to change notification settings - Fork 27.6k
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
[MLU] remove deepspeed-mlu dependency #34362
base: main
Are you sure you want to change the base?
Conversation
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.
Nice ! Thanks for your work on mlu and deepspeed !
The CI failing is unrelated to this PR ! |
if is_torch_mlu_available(): | ||
_ = importlib_metadata.metadata("deepspeed-mlu") | ||
return True |
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.
This is indeed not required anymore with the latest version of deepspeed but it will be breaking for users that doesn't have it yet ! If you don't want to rely on deepspeed-mlu anymore, you should inform the users that they need to install the latest deepspeed
The docs for this PR live here. All of your documentation changes will be reflected on that endpoint. The docs are available until 30 days after the last update. |
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.
Yep, we can just check the deepseed version, and check MLU accordingly
What does this PR do?
Remove deepspeed-mlu dependency. # (microsoft/DeepSpeed#6472)
Before submitting
Pull Request section?
to it if that's the case.
documentation guidelines, and
here are tips on formatting docstrings.
Who can review?
Anyone in the community is free to review the PR once the tests have passed. Feel free to tag
members/contributors who may be interested in your PR.
@muellerzr @SunMarc