whoops
This commit is contained in:
@@ -28,10 +28,7 @@ def cutlass_nvfp4_blockscaled_gemm(
|
||||
"""Single NVFP4 block-scaled GEMM using CUTLASS."""
|
||||
if not _CUTLASS_AVAILABLE:
|
||||
raise RuntimeError("CUTLASS NVFP4 GEMM extension not available")
|
||||
result = _C.forward(A_packed, SFA, B_packed, SFB, M, N, K, alpha)
|
||||
if result < 0:
|
||||
raise RuntimeError(f"CUTLASS NVFP4 GEMM failed with code {result} — can_implement may have rejected the problem (M={M} N={N} K={K})")
|
||||
return result
|
||||
return _C.forward(A_packed, SFA, B_packed, SFB, M, N, K, alpha)
|
||||
|
||||
|
||||
def cutlass_grouped_nvfp4_gemm(
|
||||
|
||||
Reference in New Issue
Block a user