Skip to content

Commit 51bcb3b

Browse files
authored
Restrict <sm130
Signed-off-by: Michael Goin <mgoin64@gmail.com>
1 parent 4cee4ac commit 51bcb3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

csrc/quantization/fp4/nvfp4_scaled_mm_entry.cu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ void cutlass_scaled_fp4_mm(torch::Tensor& D,
5353
#endif
5454

5555
#if defined(ENABLE_NVFP4_SM120) && ENABLE_NVFP4_SM120
56-
if (sm >= 120) {
56+
if (sm >= 120 && sm < 130) {
5757
cutlass_scaled_fp4_mm_sm120a(D, A, B, A_sf, B_sf, alpha);
5858
return;
5959
}

0 commit comments

Comments
 (0)