Skip to content

Commit eeef644

Browse files
Allow block_sizes: 64 and 128 (vllm-project#28)
1 parent 90dfa92 commit eeef644

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/engine/arg_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ def add_cli_args(
249249
parser.add_argument('--block-size',
250250
type=int,
251251
default=EngineArgs.block_size,
252-
choices=[8, 16, 32],
252+
choices=[8, 16, 32, 64, 128],
253253
help='Token block size for contiguous chunks of '
254254
'tokens.')
255255

0 commit comments

Comments
 (0)