-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
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
[Build] update requirements of no-device for plugin usage #12630
Conversation
Signed-off-by: Sophie du Couédic <sop@zurich.ibm.com>
👋 Hi! Thank you for contributing to the vLLM project. Once the PR is approved and ready to go, your PR reviewer(s) can run CI to test the changes comprehensively before merging. To run CI, PR reviewers can do one of these:
🚀 |
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.
LGTM
…ct#12630) Signed-off-by: Sophie du Couédic <sop@zurich.ibm.com> Signed-off-by: Felix Marty <felmarty@amd.com>
…ct#12630) Signed-off-by: Sophie du Couédic <sop@zurich.ibm.com>
…ct#12630) Signed-off-by: Sophie du Couédic <sop@zurich.ibm.com>
…ct#12630) Signed-off-by: Sophie du Couédic <sop@zurich.ibm.com>
…ct#12630) Signed-off-by: Sophie du Couédic <sop@zurich.ibm.com> Signed-off-by: Linkun Chen <github@lkchen.net>
…ct#12630) Signed-off-by: Sophie du Couédic <sop@zurich.ibm.com> Signed-off-by: saeediy <saidakbarp@gmail.com>
…ct#12630) Signed-off-by: Sophie du Couédic <sop@zurich.ibm.com>
For a lot of backend devices, the requirements consists of
requirements-common.txt
+ some other python packages. Therefore, when installing a plugin we first want to install vllm withrequirements-common.txt
in a first step, and then installrequirements-{plugin}.txt
through the plugin.When doing this,
VLLM_TARGET_DEVICE
cannot be directly set as the name of the target device (e.g. "spyre" would raise an "Unknown runtime environment" error), therefore settingVLLM_TARGET_DEVICE
asempty
is the best solution so far, but it downloads some unnecessary packages unrelated to the target device.Note: another possibility could be to add "oot" as additional accepted value for
VLLM_TARGET_DEVICE
, which would installrequirements-common.txt
only.@MengqingCao tagging you because you are the last one that modified that line.
cc @youkaichao