diff --git a/unsloth/models/_utils.py b/unsloth/models/_utils.py index bd40fbd2..692f4848 100644 --- a/unsloth/models/_utils.py +++ b/unsloth/models/_utils.py @@ -691,8 +691,8 @@ def patch_compiling_bitsandbytes(): import peft.tuners.lora.bnb peft.tuners.lora.bnb.Linear4bit.forward = \ torch._disable_dynamo(peft.tuners.lora.bnb.Linear4bit.forward) - peft.tuners.lora.bnb.Linear8bit.forward = \ - torch._disable_dynamo(peft.tuners.lora.bnb.Linear8bit.forward) + peft.tuners.lora.bnb.Linear8bitLt.forward = \ + torch._disable_dynamo(peft.tuners.lora.bnb.Linear8bitLt.forward) return pass # =============================================