[bugfix][DCP] fix block_size of hash in DCP prefix caching (#26296)

Signed-off-by: Chen Zhang <zhangch99@outlook.com>
This commit is contained in:
Chen Zhang
2025-10-10 18:02:49 +08:00
committed by GitHub
parent 720d3cd0f0
commit 606b00e80f
5 changed files with 12 additions and 10 deletions

View File

@ -1411,6 +1411,7 @@ def create_scheduler_with_priority(
kv_cache_config=kv_cache_config,
log_stats=True,
structured_output_manager=StructuredOutputManager(vllm_config),
block_size=block_size,
)

View File

@ -129,6 +129,7 @@ def create_scheduler(
return scheduler_cls(
vllm_config=vllm_config,
kv_cache_config=kv_cache_config,
block_size=block_size,
log_stats=True,
structured_output_manager=StructuredOutputManager(vllm_config),
)

View File

@ -138,6 +138,7 @@ def create_scheduler(
kv_cache_config=kv_cache_config,
log_stats=True,
structured_output_manager=StructuredOutputManager(vllm_config),
block_size=block_size,
)