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
09dc7c69
Unverified
Commit
09dc7c69
authored
Dec 25, 2025
by
Cyrus Leung
Committed by
GitHub
Dec 24, 2025
Browse files
[Chore][1/2] Drop `v0.14` deprecations (#31285)
Signed-off-by:
DarkLight1337
<
tlleungac@connect.ust.hk
>
parent
506eb0f4
Changes
22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
22 deletions
+0
-22
vllm/v1/engine/processor.py
vllm/v1/engine/processor.py
+0
-20
vllm/v1/worker/gpu_model_runner.py
vllm/v1/worker/gpu_model_runner.py
+0
-2
No files found.
vllm/v1/engine/processor.py
deleted
100644 → 0
View file @
506eb0f4
# SPDX-License-Identifier: Apache-2.0
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
import
warnings
def
__getattr__
(
name
:
str
):
if
name
==
"Processor"
:
from
.input_processor
import
InputProcessor
warnings
.
warn
(
"`vllm.v1.engine.processor.Processor` has been moved to "
"`vllm.v1.engine.input_processor.InputProcessor`. "
"The old name will be removed in v0.14."
,
DeprecationWarning
,
stacklevel
=
2
,
)
return
InputProcessor
raise
AttributeError
(
f
"module
{
__name__
!
r
}
has no attribute
{
name
!
r
}
"
)
vllm/v1/worker/gpu_model_runner.py
View file @
09dc7c69
...
@@ -1090,13 +1090,11 @@ class GPUModelRunner(
...
@@ -1090,13 +1090,11 @@ class GPUModelRunner(
mm_kwargs
.
append
(
feature
.
data
)
mm_kwargs
.
append
(
feature
.
data
)
# Input all modalities at once
# Input all modalities at once
model
=
cast
(
SupportsMultiModal
,
self
.
model
)
mm_kwargs_combined
:
BatchedTensorInputs
=
{}
mm_kwargs_combined
:
BatchedTensorInputs
=
{}
for
_
,
_
,
mm_kwargs_group
in
group_mm_kwargs_by_modality
(
for
_
,
_
,
mm_kwargs_group
in
group_mm_kwargs_by_modality
(
mm_kwargs
,
mm_kwargs
,
device
=
self
.
device
,
device
=
self
.
device
,
pin_memory
=
self
.
pin_memory
,
pin_memory
=
self
.
pin_memory
,
merge_by_field_config
=
model
.
merge_by_field_config
,
):
):
mm_kwargs_combined
.
update
(
mm_kwargs_group
)
mm_kwargs_combined
.
update
(
mm_kwargs_group
)
...
...
Prev
1
2
Next
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