-
Notifications
You must be signed in to change notification settings - Fork 106
Add ovis models support with default buckets #846
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
Open
testdig
wants to merge
23
commits into
vllm-project:main
Choose a base branch
from
testdig:ovis
base: main
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.
+21
−0
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
45106e9
Add ovis model support step 1
testdig f90e1c0
Update the format to pass pre-commit
testdig 415d992
Add copyright header
testdig def8760
Added Qwen3 Test (#736)
slokesha dc2de8b
Interleaved sliding window fix (#805)
rsmyrek b1560d0
[GAUDISW-245665] fix diverge from vllm in multiModalBudget (#837)
linoybu 29c17ff
KV cache sharing for HPU (#834)
jakub-sochacki 13d0aa3
Fix for #32077 (#851)
iboiko-habana 830dc2c
Resolve qwen25 vl accuracy regression (#831)
tvoas d675017
DP: Fix for torch.compile (#722)
xinyu-intel 95b0536
Remove unused test utils (#864)
microslaw 2314f85
Add support for chunked attention (#821)
kfojcik-intel 66a19e8
Fix Llama4 shape mismatch for 32k+ context window (#842) (#855)
afierka-intel e29844b
Fix HPU model runner profile_run to work with dynamic kv-cache scales…
dudilester 756eaf6
Revert "skip HPU graphs for long prefills" (#850)
adobrzyn 2e43dcb
Implement bucket corrector for Mamba chunk size (#886)
jbyczkow 0ca1436
Draft: Add FlashAttention online merge in Unified Attention (#785)
kzawora-intel 406c869
Enable support for prefill side kv_layout and block_size update (#867)
yeonsily eb02dd2
Merge branch 'main' into ovis
testdig f1e4bd3
Merge branch 'main' into ovis
testdig 691e11e
Fix an incorrect prefix
testdig 9ad424c
Merge branch 'main' into ovis
testdig 37ec32f
Merge branch 'main' into ovis
michalkuligowski 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 hidden or 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
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| from vllm.config import VllmConfig | ||
| from vllm.model_executor.models.ovis import (Ovis, OvisMultiModalProcessor, OvisProcessingInfo, OvisDummyInputsBuilder) | ||
| from vllm.multimodal import MULTIMODAL_REGISTRY | ||
|
|
||
|
|
||
| @MULTIMODAL_REGISTRY.register_processor(OvisMultiModalProcessor, | ||
| info=OvisProcessingInfo, | ||
| dummy_inputs=OvisDummyInputsBuilder) | ||
| class HpuOvis(Ovis): | ||
|
|
||
| def __init__(self, *, vllm_config: VllmConfig, prefix: str = ""): | ||
| super().__init__(vllm_config=vllm_config, prefix=prefix) | ||
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.
Copyright header missing
Uh oh!
There was an error while loading. Please reload this page.
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.
updated, thanks for the review