Skip to content

Commit fc93e56

Browse files
authored
[Bugfix][TPU] Correct env variable for XLA cache path (#7544)
1 parent 22b39e1 commit fc93e56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vllm/envs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def get_default_config_root():
334334
"VLLM_XLA_CACHE_PATH":
335335
lambda: os.path.expanduser(
336336
os.getenv(
337-
"VLLM_ASSETS_CACHE",
337+
"VLLM_XLA_CACHE_PATH",
338338
os.path.join(get_default_cache_root(), "vllm", "xla_cache"),
339339
)),
340340
"VLLM_FUSED_MOE_CHUNK_SIZE":

0 commit comments

Comments
 (0)