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 cb737a5 commit cf4f4e8Copy full SHA for cf4f4e8
tests/unittest/_torch/auto_deploy/unit/singlegpu/transformations/library/test_moe_fusion.py
@@ -280,10 +280,13 @@ def get_input(self, device):
280
torch.ops.auto_deploy.torch_quant_fp4_moe,
281
0.05,
282
0.01,
283
- marks=pytest.mark.skipif(
284
- not fp4_compatible() or not trtllm_ops_available(),
285
- reason="Requires FP4 + TRTLLM support",
286
- ),
+ marks=[
+ pytest.mark.skipif(
+ not fp4_compatible() or not trtllm_ops_available(),
+ reason="Requires FP4 + TRTLLM support",
287
+ ),
288
+ pytest.mark.skip("https://nvbugs/5410946"),
289
+ ],
290
id="fp4",
291
),
292
],
0 commit comments