We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a418bb6 commit 46e7801Copy full SHA for 46e7801
vllm/envs.py
@@ -673,7 +673,8 @@ def get_vllm_port() -> Optional[int]:
673
# Note that it must be an absolute path.
674
"VLLM_TORCH_PROFILER_DIR":
675
lambda: (None if os.getenv("VLLM_TORCH_PROFILER_DIR", None) is None else os
676
- .path.expanduser(os.getenv("VLLM_TORCH_PROFILER_DIR", "."))),
+ .path.abspath(os.path.expanduser(os.getenv(
677
+ "VLLM_TORCH_PROFILER_DIR", ".")))),
678
679
# Enable torch profiler to record shapes if set
680
# VLLM_TORCH_PROFILER_RECORD_SHAPES=1. If not set, torch profiler will
0 commit comments