Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
9c99e487
Unverified
Commit
9c99e487
authored
Sep 03, 2025
by
Isotr0py
Committed by
GitHub
Sep 03, 2025
Browse files
[Misc] Clean up deadcode for legacy processing pipeline (#24153)
Signed-off-by:
Isotr0py
<
mozf@mail2.sysu.edu.cn
>
parent
70549c12
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
7 deletions
+1
-7
tests/models/multimodal/processing/test_tensor_schema.py
tests/models/multimodal/processing/test_tensor_schema.py
+0
-3
vllm/multimodal/utils.py
vllm/multimodal/utils.py
+1
-4
No files found.
tests/models/multimodal/processing/test_tensor_schema.py
View file @
9c99e487
...
...
@@ -41,9 +41,6 @@ ARCH_NEEDS_EXTRAS = [
]
REPO_ID_TO_SKIP
=
{
"nm-testing/pixtral-12b-FP8-dynamic"
:
"duplicated test"
,
# FIXME(Isotr0py): enable GPT-OSS based InternVL3.5 model
# after support PP for GPT-OSS
"OpenGVLab/InternVL3_5-GPT-OSS-20B-A4B-Preview"
:
"Broken model"
,
}
ImageInput
=
list
[
Image
.
Image
]
...
...
vllm/multimodal/utils.py
View file @
9c99e487
...
...
@@ -378,10 +378,7 @@ def group_mm_inputs_by_modality(
elif
len
(
mm_input
)
==
1
:
return
next
(
iter
(
mm_input
.
keys
()))
# FIXME(Isotr0py): Modality of mm_input from legacy pipeline is empty,
# this is used to make InternVL with legacy pipeline still work with v1.
else
:
return
""
raise
AssertionError
(
"This line should be unreachable."
)
return
[
list
(
group
)
for
_
,
group
in
groupby
(
mm_inputs
,
key
=
modality_group_func
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment