-
-
Notifications
You must be signed in to change notification settings - Fork 8.5k
Improve configs - TokenizerPoolConfig
+ DeviceConfig
#16603
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
Improve configs - TokenizerPoolConfig
+ DeviceConfig
#16603
Conversation
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
👋 Hi! Thank you for contributing to the vLLM project. 💬 Join our developer Slack at https://slack.vllm.ai to discuss your PR in #pr-reviews, coordinate on features in #feat- channels, or join special interest groups in #sig- channels. Just a reminder: PRs would not trigger full CI run by default. Instead, it would only run 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 either: Add 🚀 |
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
…y` handling Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
@@ -2021,9 +2036,19 @@ def is_multi_step(self) -> bool: | |||
return self.num_scheduler_steps > 1 | |||
|
|||
|
|||
Device = Literal["auto", "cuda", "neuron", "cpu", "tpu", "xpu", "hpu"] |
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.
We can't really hard code this because OOT platforms may use different names
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 already hard coded by EngineArgs
using choices=DEVICE_OPTIONS
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.
cc @youkaichao is that intended?
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.
To summarise:
- The argparser behaviour is unchanged
- In the config we have
Literal
type hinting (no validation of the input occurrs)
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 already hard coded by EngineArgs using choices=DEVICE_OPTIONS
usually people just use device="auto"
and let the current_platform
resolve the device, so i think it should be fine.
i don't see lots of usage with explicitly adding --device=xxx
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
Signed-off-by: Harry Mellor <[email protected]>
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.
Well, he seems busy so I'll just approve this for now
…t#16603) Signed-off-by: Harry Mellor <[email protected]>
…t#16603) Signed-off-by: Harry Mellor <[email protected]> Signed-off-by: Yang Wang <[email protected]>
…t#16603) Signed-off-by: Harry Mellor <[email protected]>
…t#16603) Signed-off-by: Harry Mellor <[email protected]>
…t#16603) Signed-off-by: Harry Mellor <[email protected]> Signed-off-by: Agata Dobrzyniewicz <[email protected]>
…t#16603) Signed-off-by: Harry Mellor <[email protected]> Signed-off-by: Mu Huai <[email protected]>
Follows #16332, #16422, #16533
Notable changes:
default_factory=dict
get_kwargs
inargs_utils.py