-
Notifications
You must be signed in to change notification settings - Fork 1
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 <[email protected]> Signed-off-by: DarkLight1337 <[email protected]> Signed-off-by: Isotr0py <[email protected]> Co-authored-by: DarkLight1337 <[email protected]> Co-authored-by: Isotr0py <[email protected]>
Signed-off-by: ApostaC <[email protected]> Co-authored-by: KuntaiDu <[email protected]>
…1660) Signed-off-by: Joe Runde <[email protected]>
…llm-project#11661) Signed-off-by: DarkLight1337 <[email protected]> Signed-off-by: Roger Wang <[email protected]> Co-authored-by: Roger Wang <[email protected]>
Signed-off-by: Jee Jee Li <[email protected]>
Signed-off-by: Lu Fang <[email protected]>
Signed-off-by: Kazuhiro Serizawa <[email protected]>
Signed-off-by: Woosuk Kwon <[email protected]>
…essor (vllm-project#11669) Signed-off-by: DarkLight1337 <[email protected]> Signed-off-by: Isotr0py <[email protected]> Co-authored-by: Isotr0py <[email protected]>
…llm-project#11674) Signed-off-by: DarkLight1337 <[email protected]>
Signed-off-by: Tobias Pitters <[email protected]>
Signed-off-by: DarkLight1337 <[email protected]>
… sequence group. (vllm-project#10013) Signed-off-by: Kathy Yu <[email protected]>
Signed-off-by: Woosuk Kwon <[email protected]>
…roject#11688) Signed-off-by: bjmsong <[email protected]> Co-authored-by: bjmsong <[email protected]>
Signed-off-by: wchen61 <[email protected]>
…ject#11673) Signed-off-by: Lu Fang <[email protected]>
Co-authored-by: Aurick Qiao <[email protected]>
👋 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 <[email protected]>
Co-authored-by: Tyler Michael Smith <[email protected]>
SUMMARY:
This is what the stack trace looks like after this PR: