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
79e799eb
Unverified
Commit
79e799eb
authored
Apr 16, 2026
by
bnellnm
Committed by
GitHub
Apr 16, 2026
Browse files
[Bugfix] Temporarily disable B200 fp4 MoE layer tests (#40057)
Signed-off-by:
Bill Nell
<
bnell@redhat.com
>
parent
c4e601c7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
tests/kernels/moe/test_moe_layer.py
tests/kernels/moe/test_moe_layer.py
+8
-0
No files found.
tests/kernels/moe/test_moe_layer.py
View file @
79e799eb
...
@@ -465,6 +465,14 @@ def is_valid_config(config: MoETestConfig) -> tuple[bool, str | None]:
...
@@ -465,6 +465,14 @@ def is_valid_config(config: MoETestConfig) -> tuple[bool, str | None]:
if
config
.
enable_eplb
and
config
.
ep_size
==
1
:
if
config
.
enable_eplb
and
config
.
ep_size
==
1
:
return
False
,
"EPLB only works with EP+DP"
return
False
,
"EPLB only works with EP+DP"
# Disable fp4 tests until flashinfer is updated or the Dockerfile is
# modified to install cublasLt.h. See #39525.
if
(
config
.
quantization
==
"modelopt_fp4"
and
current_platform
.
is_device_capability_family
(
100
)
):
return
False
,
"Temporarily skip until #39525 is resolved"
return
True
,
None
return
True
,
None
...
...
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