Commit f3e13c54 authored by zhuwenwen's avatar zhuwenwen
Browse files

set VLLM_USE_GLOBAL_CACHE13=False

parent a74f053c
...@@ -1087,7 +1087,7 @@ environment_variables: dict[str, Callable[[], Any]] = { ...@@ -1087,7 +1087,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
("true", "1")), ("true", "1")),
# vLLM will use global cache for moe # vLLM will use global cache for moe
"VLLM_USE_GLOBAL_CACHE13": "VLLM_USE_GLOBAL_CACHE13":
lambda: (os.environ.get("VLLM_USE_GLOBAL_CACHE13", "True").lower() in lambda: (os.environ.get("VLLM_USE_GLOBAL_CACHE13", "False").lower() in
("true", "1")), ("true", "1")),
} }
...@@ -1162,4 +1162,4 @@ def compute_hash() -> str: ...@@ -1162,4 +1162,4 @@ def compute_hash() -> str:
hash_str = hashlib.md5(str(factors).encode(), hash_str = hashlib.md5(str(factors).encode(),
usedforsecurity=False).hexdigest() usedforsecurity=False).hexdigest()
return hash_str return hash_str
\ No newline at end of file
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