mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-12 21:25:42 +08:00
[Misc] Fix a config typo in disable_hybrid_kv_cache_manager configuration (#19383)
Signed-off-by: Siyuan Liu <lsiyuan@google.com>
This commit is contained in:
parent
8058c91108
commit
3a7cd627a8
@ -4497,13 +4497,13 @@ class VllmConfig:
|
|||||||
# warning message here and will log it later.
|
# warning message here and will log it later.
|
||||||
if not (current_platform.is_cuda() or current_platform.is_rocm()):
|
if not (current_platform.is_cuda() or current_platform.is_rocm()):
|
||||||
# Hybrid KV cache manager is not supported on non-GPU platforms.
|
# Hybrid KV cache manager is not supported on non-GPU platforms.
|
||||||
self.disable_hybrid_kv_cache_manager = True
|
self.scheduler_config.disable_hybrid_kv_cache_manager = True
|
||||||
if self.kv_transfer_config is not None:
|
if self.kv_transfer_config is not None:
|
||||||
# Hybrid KV cache manager is not compatible with KV transfer.
|
# Hybrid KV cache manager is not compatible with KV transfer.
|
||||||
self.disable_hybrid_kv_cache_manager = True
|
self.scheduler_config.disable_hybrid_kv_cache_manager = True
|
||||||
if self.kv_events_config is not None:
|
if self.kv_events_config is not None:
|
||||||
# Hybrid KV cache manager is not compatible with KV events.
|
# Hybrid KV cache manager is not compatible with KV events.
|
||||||
self.disable_hybrid_kv_cache_manager = True
|
self.scheduler_config.disable_hybrid_kv_cache_manager = True
|
||||||
|
|
||||||
def update_sizes_for_sequence_parallelism(self,
|
def update_sizes_for_sequence_parallelism(self,
|
||||||
possible_sizes: list) -> list:
|
possible_sizes: list) -> list:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user