Skip to content

Commit cf4f4e8

Browse files
authored
[AutoDeploy] disable flaky MoE nvfp4 test (#6302)
Signed-off-by: Lucas Liebenwein <[email protected]>
1 parent cb737a5 commit cf4f4e8

File tree

1 file changed

+7
-4
lines changed
  • tests/unittest/_torch/auto_deploy/unit/singlegpu/transformations/library

1 file changed

+7
-4
lines changed

tests/unittest/_torch/auto_deploy/unit/singlegpu/transformations/library/test_moe_fusion.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -280,10 +280,13 @@ def get_input(self, device):
280280
torch.ops.auto_deploy.torch_quant_fp4_moe,
281281
0.05,
282282
0.01,
283-
marks=pytest.mark.skipif(
284-
not fp4_compatible() or not trtllm_ops_available(),
285-
reason="Requires FP4 + TRTLLM support",
286-
),
283+
marks=[
284+
pytest.mark.skipif(
285+
not fp4_compatible() or not trtllm_ops_available(),
286+
reason="Requires FP4 + TRTLLM support",
287+
),
288+
pytest.mark.skip("https://nvbugs/5410946"),
289+
],
287290
id="fp4",
288291
),
289292
],

0 commit comments

Comments
 (0)