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 eb21f7a commit 79577c0Copy full SHA for 79577c0
vllm_spyre/envs.py
@@ -117,7 +117,7 @@ def _backend_backwards_compat() -> str:
117
# memory usage.
118
# Set to 0 to allow any number of processes
119
"VLLM_SPYRE_MAX_LOAD_PROCESSES":
120
- lambda: bool(int(os.getenv("VLLM_SPYRE_MAX_LOAD_PROCESSES", "0"))),
+ lambda: int(os.getenv("VLLM_SPYRE_MAX_LOAD_PROCESSES", "0")),
121
122
# If set, redirects all stdout and stderr from worker processes to files
123
# within this director. This is useful for debugging card-specific errors
0 commit comments