File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
tests/unittest/_torch/modules Expand file tree Collapse file tree 1 file changed +7
-2
lines changed 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