File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,6 @@ examples/test_multimodal.py::test_llm_multimodal_general[nougat-base-pp:1-tp:1-b
352352accuracy/test_llm_api_pytorch_multimodal.py::TestNVILA_8B::test_auto_dtype SKIP (https://nvbugs/5648441)
353353accuracy/test_llm_api_pytorch_multimodal.py::TestVILA1_5_3B::test_auto_dtype SKIP (https://nvbugs/5648441)
354354accuracy/test_disaggregated_serving.py::TestDeepSeekV3Lite::test_nixl_backend SKIP (https://nvbugs/5651824)
355- unittest/_torch/modules SKIP (https://nvbugs/5637037)
356355accuracy/test_disaggregated_serving.py::TestQwen3_8B::test_auto_dtype[False] SKIP (https://nvbugs/5651854)
357356accuracy/test_disaggregated_serving.py::TestQwen3_8B::test_auto_dtype[True] SKIP (https://nvbugs/5651854)
358357disaggregated/test_disaggregated.py::test_disaggregated_deepseek_v3_lite_bf16_empty_batch[DeepSeek-V3-Lite-bf16] SKIP (https://nvbugs/5601682)
Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments