Skip to content

Commit

Permalink
Allow block size 256 (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
szutenberg authored Jul 24, 2024
1 parent 260c710 commit 067a243
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 @@ -257,7 +257,7 @@ def add_cli_args(
parser.add_argument('--block-size',
type=int,
default=EngineArgs.block_size,
choices=[8, 16, 32, 64, 128],
choices=[8, 16, 32, 64, 128, 256],
help='Token block size for contiguous chunks of '
'tokens.')

Expand Down

0 comments on commit 067a243

Please sign in to comment.