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
4ac510f4
Unverified
Commit
4ac510f4
authored
Sep 17, 2025
by
bnellnm
Committed by
GitHub
Sep 17, 2025
Browse files
[Kernels] Enable DeepGEMM by default (#24462)
Signed-off-by:
Bill Nell
<
bnell@redhat.com
>
parent
7fb2a5be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/envs.py
vllm/envs.py
+2
-2
No files found.
vllm/envs.py
View file @
4ac510f4
...
@@ -135,7 +135,7 @@ if TYPE_CHECKING:
...
@@ -135,7 +135,7 @@ if TYPE_CHECKING:
VLLM_TPU_BUCKET_PADDING_GAP
:
int
=
0
VLLM_TPU_BUCKET_PADDING_GAP
:
int
=
0
VLLM_TPU_MOST_MODEL_LEN
:
Optional
[
int
]
=
None
VLLM_TPU_MOST_MODEL_LEN
:
Optional
[
int
]
=
None
VLLM_TPU_USING_PATHWAYS
:
bool
=
False
VLLM_TPU_USING_PATHWAYS
:
bool
=
False
VLLM_USE_DEEP_GEMM
:
bool
=
Fals
e
VLLM_USE_DEEP_GEMM
:
bool
=
Tru
e
VLLM_USE_DEEP_GEMM_E8M0
:
bool
=
True
VLLM_USE_DEEP_GEMM_E8M0
:
bool
=
True
VLLM_USE_DEEP_GEMM_E8M0_HOPPER
:
bool
=
False
VLLM_USE_DEEP_GEMM_E8M0_HOPPER
:
bool
=
False
VLLM_SKIP_DEEP_GEMM_WARMUP
:
bool
=
False
VLLM_SKIP_DEEP_GEMM_WARMUP
:
bool
=
False
...
@@ -1044,7 +1044,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
...
@@ -1044,7 +1044,7 @@ environment_variables: dict[str, Callable[[], Any]] = {
# Allow use of DeepGemm kernels for fused moe ops.
# Allow use of DeepGemm kernels for fused moe ops.
"VLLM_USE_DEEP_GEMM"
:
"VLLM_USE_DEEP_GEMM"
:
lambda
:
bool
(
int
(
os
.
getenv
(
"VLLM_USE_DEEP_GEMM"
,
"
0
"
))),
lambda
:
bool
(
int
(
os
.
getenv
(
"VLLM_USE_DEEP_GEMM"
,
"
1
"
))),
# Whether to use E8M0 scaling when DeepGEMM is used on Blackwell GPUs.
# Whether to use E8M0 scaling when DeepGEMM is used on Blackwell GPUs.
"VLLM_USE_DEEP_GEMM_E8M0"
:
"VLLM_USE_DEEP_GEMM_E8M0"
:
...
...
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