From ed43bcb0fe4b08f35987d65363fc5937d62fb52a Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Tue, 25 Nov 2025 07:11:30 -0800 Subject: [PATCH] Update fp8.py --- unsloth/kernels/fp8.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unsloth/kernels/fp8.py b/unsloth/kernels/fp8.py index 0b8d12a462..7968c2c429 100644 --- a/unsloth/kernels/fp8.py +++ b/unsloth/kernels/fp8.py @@ -541,9 +541,9 @@ def test_has_fbgemm(): except Exception as e: e = str(e) if "cutlass cannot initialize" in e.lower(): - print(f"Unsloth: FBGEMM on the current GPU cannot load - will switch to slower Triton kernels") + print(f"Unsloth: FBGEMM on the current GPU cannot load - will switch to Triton kernels") else: - print(f"Unsloth: FBGEMM on the current GPU cannot load with error = {e} - will switch to slower Triton kernels") + print(f"Unsloth: FBGEMM on the current GPU cannot load with error = {e} - will switch to Triton kernels") has_fbgemm = False del block_scale, xq torch.cuda.empty_cache()