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
69ba344d
Unverified
Commit
69ba344d
authored
Dec 15, 2024
by
chenqianfzh
Committed by
GitHub
Dec 15, 2024
Browse files
[Bugfix] Fix block size validation (#10938)
parent
da6f4092
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
vllm/engine/arg_utils.py
vllm/engine/arg_utils.py
+1
-1
No files found.
vllm/engine/arg_utils.py
View file @
69ba344d
...
...
@@ -425,7 +425,7 @@ class EngineArgs:
parser
.
add_argument
(
'--block-size'
,
type
=
int
,
default
=
EngineArgs
.
block_size
,
choices
=
[
8
,
16
,
32
,
64
,
128
],
choices
=
[
8
,
16
,
32
],
help
=
'Token block size for contiguous chunks of '
'tokens. This is ignored on neuron devices and '
'set to max-model-len'
)
...
...
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