forked from vllm-project/vllm
-
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
Open
robertgshaw2-redhat
wants to merge
44
commits into
fix-shutdown
Choose a base branch
from
tp-shutdown
base: fix-shutdown
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
updated #50
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
e7c7c5e
[V1][VLM] V1 support for selected single-image models. (#11632)
ywang96 0c6f998
[Benchmark] Add benchmark script for CPU offloading (#11533)
ApostaC 4db72e5
[Bugfix][Refactor] Unify model management in frontend (#11660)
joerunde 365801f
[VLM] Add max-count checking in data parser for single image models (…
DarkLight1337 11d8a09
[Misc] Optimize Qwen2-VL LoRA test (#11663)
jeejeelee f962f42
[Misc] Replace space with - in the file names (#11667)
houseroad 6d70198
[Doc] Fix typo (#11666)
serihiro 7300144
[V1] Implement Cascade Attention (#11635)
WoosukKwon a115ac4
[VLM] Move supported limits and max tokens to merged multi-modal proc…
DarkLight1337 23c1b10
[VLM][Bugfix] Multi-modal processor compatible with V1 multi-input (#…
DarkLight1337 b6087a6
[mypy] Pass type checking in vllm/inputs (#11680)
CloseChoice 8c38ee7
[VLM] Merged multi-modal processor for LLaVA-NeXT (#11682)
DarkLight1337 84c35c3
According to vllm.EngineArgs, the name should be distributed_executor…
chunyang-wen 2f38518
[Bugfix] Free cross attention block table for preempted-for-recompute…
kathyyu-google b55ed6e
[V1][Minor] Optimize token_ids_cpu copy (#11692)
WoosukKwon 187e329
[Bugfix] Change kv scaling factor by param json on nvidia gpu (#11688)
bjmsong 5dba257
Resolve race conditions in Marlin kernel (#11493)
wchen61 68d3780
[Misc] Minimum requirements for SageMaker compatibility (#11576)
nathan-az 2f1e8e8
Update default max_num_batch_tokens for chunked prefill (#11694)
SachinVarghese 07064cb
[Bugfix] Check chain_speculative_sampling before calling it (#11673)
houseroad fd3a62a
[perf-benchmark] Fix dependency for steps in benchmark pipeline (#11710)
khluu e1a5c2f
[Model] Whisper model implementation (#11280)
aurickq 1c4b92a
updated
robertgshaw2-redhat eb9b00b
stash
robertgshaw2-redhat 80c751e
[V1] Simplify Shutdown (#11659)
robertgshaw2-redhat 1da99a8
updated
robertgshaw2-redhat ca7b92d
Merge branch 'main' into tp-shutdown
robertgshaw2-redhat 2743166
updated
robertgshaw2-redhat 8e257c1
stash
robertgshaw2-redhat b7c50dc
revert spurious change
robertgshaw2-redhat dcfd3b8
updated
robertgshaw2-redhat 6e0e0d4
stash
robertgshaw2-redhat 55a6195
updated
robertgshaw2-redhat aa6954f
updated
robertgshaw2-redhat 1d15ae0
remove cruft
robertgshaw2-redhat 0347baa
Update vllm/v1/executor/multiproc_executor.py
robertgshaw2-redhat 20b8fa2
stash
robertgshaw2-redhat 32840f2
Merge branch 'tp-shutdown' of https://github.com/neuralmagic/vllm int…
robertgshaw2-redhat 884879a
switch to SIGUSR1
robertgshaw2-redhat bb86a03
updated
robertgshaw2-redhat 405bcc1
Update vllm/v1/engine/core_client.py
robertgshaw2-redhat 25e0fea
update message
robertgshaw2-redhat efd6270
updated
robertgshaw2-redhat a5a306e
fixed!
robertgshaw2-redhat File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 ofself
+EngineCore
calls already callsexecutor.shutdown()
at its exit.