Skip to content

Commit

Permalink
[Bugfix] Fix block size validation (#10938)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenqianfzh authored Dec 16, 2024
1 parent da6f409 commit 69ba344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vllm/engine/arg_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ def add_cli_args(parser: FlexibleArgumentParser) -> FlexibleArgumentParser:
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')
Expand Down

0 comments on commit 69ba344

Please sign in to comment.