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
ce888aa4
Commit
ce888aa4
authored
Dec 13, 2025
by
zhuwenwen
Browse files
fix optional and list
parent
9ae6a059
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
vllm/config/model.py
vllm/config/model.py
+1
-1
vllm/model_executor/layers/quantization/utils/fp8_utils.py
vllm/model_executor/layers/quantization/utils/fp8_utils.py
+2
-2
No files found.
vllm/config/model.py
View file @
ce888aa4
...
...
@@ -297,7 +297,7 @@ class ModelConfig:
definitions"""
io_processor_plugin
:
str
|
None
=
None
"""IOProcessor plugin name to load at model startup"""
enable_chunked_prefill
:
Optional
[
bool
]
=
None
enable_chunked_prefill
:
bool
|
None
=
None
"""If True, prefill requests can be chunked based
on the remaining max_num_batched_tokens."""
...
...
vllm/model_executor/layers/quantization/utils/fp8_utils.py
View file @
ce888aa4
...
...
@@ -54,7 +54,7 @@ def cutlass_scaled_mm(
B
:
torch
.
Tensor
,
As
:
torch
.
Tensor
,
Bs
:
torch
.
Tensor
,
block_size
:
L
ist
[
int
],
block_size
:
l
ist
[
int
],
output_dtype
:
torch
.
dtype
=
torch
.
float16
,
)
->
torch
.
Tensor
:
return
ops
.
cutlass_scaled_mm
(
...
...
@@ -787,7 +787,7 @@ def w8a8_triton_block_scaled_mm(
B
:
torch
.
Tensor
,
As
:
torch
.
Tensor
,
Bs
:
torch
.
Tensor
,
block_size
:
L
ist
[
int
],
block_size
:
l
ist
[
int
],
output_dtype
:
torch
.
dtype
=
torch
.
float16
,
)
->
torch
.
Tensor
:
"""This function performs matrix multiplication with block-wise
...
...
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