"src/diffusers/models/controlnets/controlnet_hunyuan.py" did not exist on "beb1c017adca5b090e656ebe3fdb7f64215aefa0"
Unverified Commit 36fc9260 authored by Baron Liu's avatar Baron Liu Committed by GitHub
Browse files

[bugfix] fix import path in HiCacheController (#8749)

parent fee0ab0f
......@@ -243,12 +243,12 @@ class HiCacheController:
self.storage_backend = HiCacheFile()
self.get_hash_str = get_hash_str
elif storage_backend == "nixl":
from sglang.srt.mem_cache.nixl.hicache_nixl import HiCacheNixl
from sglang.srt.mem_cache.storage.nixl.hicache_nixl import HiCacheNixl
self.storage_backend = HiCacheNixl()
self.get_hash_str = get_hash_str
elif storage_backend == "mooncake":
from sglang.srt.mem_cache.mooncake_store.mooncake_store import (
from sglang.srt.mem_cache.storage.mooncake_store.mooncake_store import (
MooncakeStore,
get_hash_str_mooncake,
)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment