Skip to content

Commit 19f3f4e

Browse files
bobbolisyuoni
andauthored
[https://nvbugs/5637037][chore] Update waive lists. (#9386)
Signed-off-by: Bo Li <22713281+bobboli@users.noreply.github.com> Signed-off-by: Enwei Zhu <21126786+syuoni@users.noreply.github.com> Co-authored-by: Enwei Zhu <21126786+syuoni@users.noreply.github.com>
1 parent 85b4c92 commit 19f3f4e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

tests/integration/test_lists/waives.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,6 @@ examples/test_multimodal.py::test_llm_multimodal_general[nougat-base-pp:1-tp:1-b
352352
accuracy/test_llm_api_pytorch_multimodal.py::TestNVILA_8B::test_auto_dtype SKIP (https://nvbugs/5648441)
353353
accuracy/test_llm_api_pytorch_multimodal.py::TestVILA1_5_3B::test_auto_dtype SKIP (https://nvbugs/5648441)
354354
accuracy/test_disaggregated_serving.py::TestDeepSeekV3Lite::test_nixl_backend SKIP (https://nvbugs/5651824)
355-
unittest/_torch/modules SKIP (https://nvbugs/5637037)
356355
accuracy/test_disaggregated_serving.py::TestQwen3_8B::test_auto_dtype[False] SKIP (https://nvbugs/5651854)
357356
accuracy/test_disaggregated_serving.py::TestQwen3_8B::test_auto_dtype[True] SKIP (https://nvbugs/5651854)
358357
disaggregated/test_disaggregated.py::test_disaggregated_deepseek_v3_lite_bf16_empty_batch[DeepSeek-V3-Lite-bf16] SKIP (https://nvbugs/5601682)

tests/unittest/_torch/modules/test_fused_moe.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1353,8 +1353,13 @@ def test_fused_moe_nvfp4(dtype, moe_backend):
13531353

13541354
if moe_backend == "TRTLLM" and dtype == torch.float16:
13551355
pytest.skip("TRTLLM NVFP4 MoE backend does not support float16 yet")
1356-
if moe_backend == "CUTEDSL" and dtype == torch.float16:
1357-
pytest.skip("CUTEDSL NVFP4 MoE backend does not support float16 yet")
1356+
if moe_backend == "CUTEDSL":
1357+
if dtype == torch.float16:
1358+
pytest.skip(
1359+
"CUTEDSL NVFP4 MoE backend does not support float16 yet")
1360+
if get_sm_version() != 100:
1361+
pytest.skip(
1362+
"CUTEDSL NVFP4 MoE backend is only supported on SM 100 GPUs")
13581363

13591364
test_all_kernels = True
13601365
if get_sm_version() == 120:

0 commit comments

Comments
 (0)