From 189146e389baef9f4c6bb83cd8c165fbaafc744f Mon Sep 17 00:00:00 2001 From: Daniel Han Date: Mon, 3 Mar 2025 17:17:25 -0800 Subject: [PATCH] Update utils.py --- unsloth/kernels/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/unsloth/kernels/utils.py b/unsloth/kernels/utils.py index 6bb44fbd1f..e699e632fe 100644 --- a/unsloth/kernels/utils.py +++ b/unsloth/kernels/utils.py @@ -452,6 +452,7 @@ pass def matmul_lora(X, W, W_quant, A, B, s, out = None): dtype = X.dtype W = fast_dequantize(W.t(), W_quant, use_global_buffer = False) + print(W) if X.device != W.device: print(X.device, W.device, torch.cuda.current_device())