-
Notifications
You must be signed in to change notification settings - Fork 2
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
updated #50
base: fix-shutdown
Are you sure you want to change the base?
updated #50
Conversation
…11632) Signed-off-by: Roger Wang <ywang@roblox.com> Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk> Signed-off-by: Isotr0py <2037008807@qq.com> Co-authored-by: DarkLight1337 <tlleungac@connect.ust.hk> Co-authored-by: Isotr0py <2037008807@qq.com>
Signed-off-by: ApostaC <yihua98@uchicago.edu> Co-authored-by: KuntaiDu <kuntai@uchicago.edu>
…1660) Signed-off-by: Joe Runde <Joseph.Runde@ibm.com>
…llm-project#11661) Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk> Signed-off-by: Roger Wang <ywang@roblox.com> Co-authored-by: Roger Wang <ywang@roblox.com>
Signed-off-by: Jee Jee Li <pandaleefree@gmail.com>
Signed-off-by: Lu Fang <lufang@fb.com>
Signed-off-by: Kazuhiro Serizawa <nserihiro@gmail.com>
Signed-off-by: Woosuk Kwon <woosuk.kwon@berkeley.edu>
…essor (vllm-project#11669) Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk> Signed-off-by: Isotr0py <2037008807@qq.com> Co-authored-by: Isotr0py <2037008807@qq.com>
…llm-project#11674) Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
Signed-off-by: Tobias Pitters <tobias.pitters@gmail.com>
Signed-off-by: DarkLight1337 <tlleungac@connect.ust.hk>
… sequence group. (vllm-project#10013) Signed-off-by: Kathy Yu <feiyangyu@google.com>
Signed-off-by: Woosuk Kwon <woosuk.kwon@berkeley.edu>
…roject#11688) Signed-off-by: bjmsong <bjmsong@126.com> Co-authored-by: bjmsong <bjmsong@126.com>
Signed-off-by: wchen61 <wchen61@foxmail.com>
…ject#11673) Signed-off-by: Lu Fang <lufang@fb.com>
Co-authored-by: Aurick Qiao <aurick.qiao@snowflake.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:
🚀 |
@@ -34,10 +35,25 @@ | |||
class MultiprocExecutor(Executor): | |||
|
|||
def __init__(self, vllm_config: VllmConfig) -> None: | |||
# Call self.shutdown at exit to clean up |
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.
NOTE: removed this because this creates a circular reference that can prevent us from being gced
(finalizer shutdown function cannot be a bound method of self
+ EngineCore
calls already calls executor.shutdown()
at its exit.
Co-authored-by: Tyler Michael Smith <tyler@neuralmagic.com>
Co-authored-by: Tyler Michael Smith <tyler@neuralmagic.com>
SUMMARY:
This is what the stack trace looks like after this PR: