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
fae69430
Unverified
Commit
fae69430
authored
Nov 28, 2025
by
Didier Durand
Committed by
GitHub
Nov 28, 2025
Browse files
[Doc]: fixing typos in multiple files. (#29685)
Signed-off-by:
Didier Durand
<
durand.didier@gmail.com
>
parent
3bcbb30c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
6 deletions
+6
-6
vllm/compilation/sequence_parallelism.py
vllm/compilation/sequence_parallelism.py
+1
-1
vllm/model_executor/models/nano_nemotron_vl.py
vllm/model_executor/models/nano_nemotron_vl.py
+1
-1
vllm/model_executor/models/stablelm.py
vllm/model_executor/models/stablelm.py
+1
-1
vllm/utils/gc_utils.py
vllm/utils/gc_utils.py
+1
-1
vllm/v1/spec_decode/ngram_proposer.py
vllm/v1/spec_decode/ngram_proposer.py
+1
-1
vllm/v1/worker/ec_connector_model_runner_mixin.py
vllm/v1/worker/ec_connector_model_runner_mixin.py
+1
-1
No files found.
vllm/compilation/sequence_parallelism.py
View file @
fae69430
...
@@ -304,7 +304,7 @@ class SequenceParallelismPass(VllmPatternMatcherPass):
...
@@ -304,7 +304,7 @@ class SequenceParallelismPass(VllmPatternMatcherPass):
def
__init__
(
self
,
config
:
VllmConfig
):
def
__init__
(
self
,
config
:
VllmConfig
):
super
().
__init__
(
config
)
super
().
__init__
(
config
)
# Used to cleanup redundant views created temporarily
# Used to clean
up redundant views created temporarily
# to circumvent residual shape change issues
# to circumvent residual shape change issues
self
.
noop_cleanup
=
NoOpEliminationPass
(
config
)
self
.
noop_cleanup
=
NoOpEliminationPass
(
config
)
self
.
noop_cleanup
.
pass_name
=
f
"
{
self
.
pass_name
}
.
{
self
.
noop_cleanup
.
pass_name
}
"
self
.
noop_cleanup
.
pass_name
=
f
"
{
self
.
pass_name
}
.
{
self
.
noop_cleanup
.
pass_name
}
"
...
...
vllm/model_executor/models/nano_nemotron_vl.py
View file @
fae69430
...
@@ -1472,7 +1472,7 @@ class NemotronH_Nano_VL_V2(
...
@@ -1472,7 +1472,7 @@ class NemotronH_Nano_VL_V2(
return
[]
return
[]
# # The result multimodal_embeddings is tuple of tensors, with each
# # The result multimodal_embeddings is tuple of tensors, with each
# tensor correspo
e
nding to a multimodal data item (image or video).
# tensor corresponding to a multimodal data item (image or video).
multimodal_embeddings
:
tuple
[
torch
.
Tensor
,
...]
=
()
multimodal_embeddings
:
tuple
[
torch
.
Tensor
,
...]
=
()
# NOTE: It is important to iterate over the keys in this dictionary
# NOTE: It is important to iterate over the keys in this dictionary
...
...
vllm/model_executor/models/stablelm.py
View file @
fae69430
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
# This code is based off the following work:
# This code is based off the following work:
# https://huggingface.co/stabilityai/stablelm-3b-4e1t/blob/main/modeling_stablelm_epoch.py
# https://huggingface.co/stabilityai/stablelm-3b-4e1t/blob/main/modeling_stablelm_epoch.py
# https://huggingface.co/stabilityai/stablelm-3b-4e1t/blob/main/config.json
# https://huggingface.co/stabilityai/stablelm-3b-4e1t/blob/main/config.json
"""Inference-only StabeLM (https://github.com/Stability-AI/StableLM)
"""Inference-only Stab
l
eLM (https://github.com/Stability-AI/StableLM)
model compatible with HuggingFace weights."""
model compatible with HuggingFace weights."""
from
collections.abc
import
Iterable
from
collections.abc
import
Iterable
...
...
vllm/utils/gc_utils.py
View file @
fae69430
...
@@ -17,7 +17,7 @@ class GCDebugConfig:
...
@@ -17,7 +17,7 @@ class GCDebugConfig:
"""
"""
Config for GC Debugger.
Config for GC Debugger.
- 0: disable GC debugger
- 0: disable GC debugger
- 1: enable GC debugger with gc.collect el
p
ased times
- 1: enable GC debugger with gc.collect ela
p
sed times
- '{"top_objects":5}': enable GC debugger with top 5 collected objects
- '{"top_objects":5}': enable GC debugger with top 5 collected objects
"""
"""
...
...
vllm/v1/spec_decode/ngram_proposer.py
View file @
fae69430
...
@@ -269,7 +269,7 @@ def _find_longest_matched_ngram_and_propose_tokens(
...
@@ -269,7 +269,7 @@ def _find_longest_matched_ngram_and_propose_tokens(
prev_lps
=
lps
[
max_ngram
-
1
]
prev_lps
=
lps
[
max_ngram
-
1
]
i
+=
1
i
+=
1
elif
prev_lps
!=
0
:
elif
prev_lps
!=
0
:
# Token mismatch: try the second
longest prefix
# Token mismatch: try the second
-
longest prefix
# among all suffix of tokens[:i],
# among all suffix of tokens[:i],
# which is the longest prefix of tokens[:prev_lps]
# which is the longest prefix of tokens[:prev_lps]
prev_lps
=
lps
[
prev_lps
-
1
]
prev_lps
=
lps
[
prev_lps
-
1
]
...
...
vllm/v1/worker/ec_connector_model_runner_mixin.py
View file @
fae69430
...
@@ -59,7 +59,7 @@ class ECConnectorModelRunnerMixin:
...
@@ -59,7 +59,7 @@ class ECConnectorModelRunnerMixin:
)
)
# This context manager must be used within an active forward context.
# This context manager must be used within an active forward context.
# It encapsulates the entire EC conector lifecycle within execute_model
# It encapsulates the entire EC con
n
ector lifecycle within execute_model
@
staticmethod
@
staticmethod
@
contextmanager
@
contextmanager
def
_get_ec_connector_output
(
def
_get_ec_connector_output
(
...
...
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