Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
1d7f95b8
Unverified
Commit
1d7f95b8
authored
Sep 22, 2025
by
ElizaWszola
Committed by
GitHub
Sep 22, 2025
Browse files
[Compiler] Disable Inductor standalone compile by default (#25391)
Signed-off-by:
ElizaWszola
<
ewszola@redhat.com
>
parent
cfbee3d0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
vllm/envs.py
vllm/envs.py
+3
-2
No files found.
vllm/envs.py
View file @
1d7f95b8
...
...
@@ -126,6 +126,7 @@ if TYPE_CHECKING:
VLLM_DP_RANK
:
int
=
0
VLLM_DP_RANK_LOCAL
:
int
=
-
1
VLLM_DP_SIZE
:
int
=
1
VLLM_USE_STANDALONE_COMPILE
:
bool
=
False
VLLM_DP_MASTER_IP
:
str
=
""
VLLM_DP_MASTER_PORT
:
int
=
0
VLLM_MOE_DP_CHUNK_SIZE
:
int
=
256
...
...
@@ -437,9 +438,9 @@ environment_variables: dict[str, Callable[[], Any]] = {
# Feature flag to enable/disable Inductor standalone compile.
# In torch <= 2.7 we ignore this flag; in torch >= 2.8 this is
#
en
abled by default.
#
dis
abled by default.
"VLLM_USE_STANDALONE_COMPILE"
:
lambda
:
os
.
environ
.
get
(
"VLLM_USE_STANDALONE_COMPILE"
,
"
1
"
)
==
"1"
,
lambda
:
os
.
environ
.
get
(
"VLLM_USE_STANDALONE_COMPILE"
,
"
0
"
)
==
"1"
,
# local rank of the process in the distributed setting, used to determine
# the GPU device id
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment