[Bugfix][TPU] Correct env variable for XLA cache path (#7544)

This commit is contained in:
Woosuk Kwon
2024-08-15 00:02:29 -07:00
committed by GitHub
parent 22b39e11f2
commit fc93e56143

View File

@ -334,7 +334,7 @@ environment_variables: Dict[str, Callable[[], Any]] = {
"VLLM_XLA_CACHE_PATH":
lambda: os.path.expanduser(
os.getenv(
"VLLM_ASSETS_CACHE",
"VLLM_XLA_CACHE_PATH",
os.path.join(get_default_cache_root(), "vllm", "xla_cache"),
)),
"VLLM_FUSED_MOE_CHUNK_SIZE":