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
9d7ae3fc
Unverified
Commit
9d7ae3fc
authored
Jan 15, 2026
by
Ning Xie
Committed by
GitHub
Jan 15, 2026
Browse files
[code clean] remove duplicate check (#32376)
Signed-off-by:
Andy Xie
<
andy.xning@gmail.com
>
parent
3c268564
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
9 deletions
+3
-9
vllm/multimodal/registry.py
vllm/multimodal/registry.py
+1
-1
vllm/v1/engine/async_llm.py
vllm/v1/engine/async_llm.py
+1
-4
vllm/v1/engine/llm_engine.py
vllm/v1/engine/llm_engine.py
+1
-4
No files found.
vllm/multimodal/registry.py
View file @
9d7ae3fc
...
@@ -254,7 +254,7 @@ class MultiModalRegistry:
...
@@ -254,7 +254,7 @@ class MultiModalRegistry:
observability_config
:
"ObservabilityConfig | None"
=
None
,
observability_config
:
"ObservabilityConfig | None"
=
None
,
tokenizer
:
TokenizerLike
|
None
=
None
,
tokenizer
:
TokenizerLike
|
None
=
None
,
)
->
InputProcessingContext
:
)
->
InputProcessingContext
:
if
tokenizer
is
None
and
not
model_config
.
skip_tokenizer_init
:
if
tokenizer
is
None
:
tokenizer
=
cached_tokenizer_from_config
(
model_config
)
tokenizer
=
cached_tokenizer_from_config
(
model_config
)
return
InputProcessingContext
(
return
InputProcessingContext
(
...
...
vllm/v1/engine/async_llm.py
View file @
9d7ae3fc
...
@@ -106,10 +106,7 @@ class AsyncLLM(EngineClient):
...
@@ -106,10 +106,7 @@ class AsyncLLM(EngineClient):
"enabling logging without default stat loggers."
"enabling logging without default stat loggers."
)
)
if
self
.
model_config
.
skip_tokenizer_init
:
tokenizer
=
cached_tokenizer_from_config
(
self
.
model_config
)
tokenizer
=
None
else
:
tokenizer
=
cached_tokenizer_from_config
(
self
.
model_config
)
self
.
input_processor
=
InputProcessor
(
self
.
vllm_config
,
tokenizer
)
self
.
input_processor
=
InputProcessor
(
self
.
vllm_config
,
tokenizer
)
self
.
io_processor
=
get_io_processor
(
self
.
io_processor
=
get_io_processor
(
...
...
vllm/v1/engine/llm_engine.py
View file @
9d7ae3fc
...
@@ -84,10 +84,7 @@ class LLMEngine:
...
@@ -84,10 +84,7 @@ class LLMEngine:
self
.
dp_group
=
None
self
.
dp_group
=
None
self
.
should_execute_dummy_batch
=
False
self
.
should_execute_dummy_batch
=
False
if
self
.
model_config
.
skip_tokenizer_init
:
tokenizer
=
cached_tokenizer_from_config
(
self
.
model_config
)
tokenizer
=
None
else
:
tokenizer
=
cached_tokenizer_from_config
(
self
.
model_config
)
self
.
input_processor
=
InputProcessor
(
self
.
vllm_config
,
tokenizer
)
self
.
input_processor
=
InputProcessor
(
self
.
vllm_config
,
tokenizer
)
self
.
io_processor
=
get_io_processor
(
self
.
io_processor
=
get_io_processor
(
...
...
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