351 lines
13 KiB
Python
351 lines
13 KiB
Python
# Copyright 2023-present Daniel Han-Chen & the Unsloth team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import torch
|
|
from typing import Union, Optional, List, Any, Callable
|
|
import warnings
|
|
warnings.filterwarnings(action = "ignore", category = UserWarning, module = "torch")
|
|
warnings.filterwarnings(action = "ignore", category = UserWarning, module = "huggingface_hub")
|
|
warnings.filterwarnings(action = "ignore", category = RuntimeWarning, module = "subprocess")
|
|
warnings.filterwarnings(action = "ignore", category = UserWarning, module = "transformers")
|
|
warnings.filterwarnings(action = "ignore", category = FutureWarning, module = "accelerate")
|
|
import bitsandbytes as bnb
|
|
from transformers.models.llama.modeling_llama import logger
|
|
from transformers import AutoTokenizer
|
|
from platform import system as platform_system
|
|
platform_system = platform_system()
|
|
import math
|
|
import numpy as np
|
|
import os
|
|
import psutil
|
|
|
|
__version__ = "2024.4"
|
|
|
|
# Get Flash Attention v2 if Ampere (RTX 30xx, A100)
|
|
major_version, minor_version = torch.cuda.get_device_capability()
|
|
if major_version >= 8:
|
|
try:
|
|
from flash_attn import flash_attn_func
|
|
# Check for CUDA linking errors "undefined symbol: _ZNK3c106SymIntltEl"
|
|
try:
|
|
from flash_attn.flash_attn_interface import flash_attn_cuda
|
|
HAS_FLASH_ATTENTION = True
|
|
except:
|
|
logger.warning_once(
|
|
"Unsloth: Your Flash Attention 2 installation seems to be broken?\n"\
|
|
"A possible explanation is you have a new CUDA version which isn't\n"\
|
|
"yet compatible with FA2? Please file a ticket to Unsloth or FA2.\n"\
|
|
"We shall now use Xformers instead, which gets a 0.01% performance hit.\n"\
|
|
"We found this negligible impact by benchmarking on 1x A100."
|
|
)
|
|
HAS_FLASH_ATTENTION = False
|
|
except:
|
|
HAS_FLASH_ATTENTION = False
|
|
else:
|
|
# Tri Dao's benchmark shows xformers is faster for now.
|
|
HAS_FLASH_ATTENTION = False
|
|
pass
|
|
import xformers.ops.fmha as xformers
|
|
xformers_attention = xformers.memory_efficient_attention
|
|
from xformers import __version__ as xformers_version
|
|
|
|
__all__ = [
|
|
"prepare_model_for_kbit_training",
|
|
"xformers",
|
|
"xformers_attention",
|
|
"xformers_version",
|
|
"__version__",
|
|
"HAS_FLASH_ATTENTION",
|
|
"platform_system",
|
|
"patch_tokenizer",
|
|
"get_statistics",
|
|
"Unsloth_Offloaded_Gradient_Checkpointer",
|
|
]
|
|
|
|
|
|
def prepare_model_for_kbit_training(
|
|
model : Any,
|
|
use_gradient_checkpointing : Optional = True,
|
|
use_reentrant : Optional[bool] = True,
|
|
) -> Any:
|
|
"""
|
|
Calculates where to place the gradient checkpoints given n_layers.
|
|
We also freeze all other layers's gradients
|
|
|
|
Args:
|
|
model: Any LlamaModel with layers.
|
|
use_gradient_checkpointing (`bool`, *optional*):
|
|
Default enabled. Provides memory savings by not saving all activations,
|
|
but only some.
|
|
use_reentrant (`bool`, *optional*):
|
|
https://github.com/pytorch/pytorch/blob/main/torch/utils/checkpoint.py#L354
|
|
Optimal gradient checkpointing algorithm which will be the default in
|
|
future Pytorch versions.
|
|
"""
|
|
|
|
# Freeze all parameters except LoRA
|
|
import re
|
|
with torch.no_grad():
|
|
for name, param in model.named_parameters():
|
|
if ".lora_A." in name or ".lora_B." in name or ".lora_magnitude_vector" in name:
|
|
param.requires_grad_(True)
|
|
# Also must be in float32!
|
|
if param.dtype != torch.float32:
|
|
name = name.replace("base_model", "model", 1)
|
|
layer_number = re.search(r"\.[\d]{1,}\.", name).group(0)
|
|
name = name.replace(layer_number, f"[{layer_number[1:-1]}].")
|
|
name = name.replace(".weight", "", 1)
|
|
exec(f"{name}.to(torch.float32)")
|
|
pass
|
|
else:
|
|
param.requires_grad_(False)
|
|
pass
|
|
pass
|
|
|
|
# Gradient checkpointing!
|
|
if use_gradient_checkpointing == "unsloth":
|
|
|
|
# Saves VRAM!
|
|
original_model = model
|
|
while hasattr(original_model, "model"):
|
|
original_model._offloaded_gradient_checkpointing = True
|
|
original_model = original_model.model
|
|
pass
|
|
original_model._offloaded_gradient_checkpointing = True
|
|
|
|
model.gradient_checkpointing_enable()
|
|
|
|
elif use_gradient_checkpointing == True:
|
|
model.gradient_checkpointing_enable()
|
|
pass
|
|
|
|
# If use_reentrant = True which is the Pytorch default, we just make the input requires_grad.
|
|
if use_reentrant:
|
|
if hasattr(model, "enable_input_require_grads"):
|
|
model.enable_input_require_grads()
|
|
else:
|
|
def make_inputs_require_grad(module, input, output):
|
|
output.requires_grad_(True)
|
|
model.get_input_embeddings().register_forward_hook(make_inputs_require_grad)
|
|
|
|
return model
|
|
pass
|
|
|
|
|
|
def patch_tokenizer(model, tokenizer):
|
|
if model is not None:
|
|
model.config.update({"unsloth_version" : __version__})
|
|
if not hasattr(tokenizer, "pad_token") or tokenizer.pad_token is None:
|
|
# Fixes https://github.com/unslothai/unsloth/issues/5
|
|
if hasattr(tokenizer, "unk_token"):
|
|
tokenizer.add_special_tokens({"pad_token" : tokenizer.unk_token})
|
|
tokenizer.pad_token = tokenizer.unk_token
|
|
else:
|
|
name = model.config._name_or_path if model is not None else "Model"
|
|
logger.warning_one(
|
|
f"{name} does not have a padding or unknown token!\n"\
|
|
f"Will use the EOS token of id {tokenizer.eos_token_id} as padding."
|
|
)
|
|
assert(hasattr(tokenizer, "eos_token"))
|
|
tokenizer.add_special_tokens({"pad_token" : tokenizer.eos_token})
|
|
tokenizer.pad_token = tokenizer.eos_token
|
|
if model is not None:
|
|
config = model.config.update({"pad_token_id" : tokenizer.eos_token_id})
|
|
pass
|
|
return model, tokenizer
|
|
pass
|
|
|
|
|
|
# Weirdly LoraLayer.update_layer downcasts PEFT layers to float16??
|
|
# For mixed precision, we need it to be in float32 not float16.
|
|
from peft.tuners.lora.layer import LoraLayer
|
|
import inspect, re
|
|
try:
|
|
source = inspect.getsource(LoraLayer.update_layer)
|
|
text = "if weight is not None:\n"
|
|
start = source.find(text) + len(text)
|
|
end = source.find("self.to(weight.device)", start)
|
|
spaces = re.findall(r"^([ ]{1,})break", source, flags = re.MULTILINE)[0]
|
|
source = source.replace(source[start : end], spaces)
|
|
spaces = len(re.match(r"[\s]{1,}", source).group(0))
|
|
lines = source.split("\n")
|
|
source = "\n".join(x[spaces:] for x in lines)
|
|
source = re.sub("([^\.])nn\.", r"\1torch.nn.", source)
|
|
source = source.replace("def update_layer", "def LoraLayer_update_layer")
|
|
exec(source, globals())
|
|
|
|
# Fix up incorrect downcasting of LoRA weights
|
|
from peft.tuners.lora.layer import LoraLayer
|
|
LoraLayer.update_layer = LoraLayer_update_layer
|
|
from peft.tuners.lora import LoraLayer
|
|
LoraLayer.update_layer = LoraLayer_update_layer
|
|
except:
|
|
logger.warning_once(
|
|
"Unsloth unsuccessfully patched LoraLayer.update_layer. Please file a bug report.\n"\
|
|
"Luckily, your training run will still work in the meantime!"
|
|
)
|
|
pass
|
|
|
|
|
|
def get_statistics():
|
|
# We log some basic stats about which environment is being used.
|
|
# We simply download a README.md file from HF - all data is made public.
|
|
# This is simply so we can check if some envs are broken or not.
|
|
try:
|
|
from huggingface_hub import hf_hub_download
|
|
from huggingface_hub.utils import disable_progress_bars, enable_progress_bars, are_progress_bars_disabled
|
|
import psutil
|
|
n_cpus = psutil.cpu_count(logical = False)
|
|
|
|
keynames = "\n" + "\n".join(os.environ.keys())
|
|
statistics = None
|
|
if "\nCOLAB_" in keynames and n_cpus == 1: statistics = "colab"
|
|
elif "\nCOLAB_" in keynames: statistics = "colabpro"
|
|
elif "\nKAGGLE_" in keynames: statistics = "kaggle"
|
|
elif "\nRUNPOD_" in keynames: statistics = "runpod"
|
|
elif "\nAWS_" in keynames: statistics = "aws"
|
|
elif "\nAZURE_" in keynames: statistics = "azure"
|
|
elif "\nK_" in keynames or "\nFUNCTION_" in keynames: statistics = "gcp"
|
|
elif "\nINVOCATION_ID" in keynames: statistics = "lambda"
|
|
|
|
if statistics is not None:
|
|
disabled = False
|
|
if not are_progress_bars_disabled():
|
|
disable_progress_bars()
|
|
disabled = True
|
|
pass
|
|
hf_hub_download(f"unslothai/statistics-{statistics}", "README.md", force_download = True)
|
|
if disabled:
|
|
enable_progress_bars()
|
|
pass
|
|
pass
|
|
except:
|
|
pass
|
|
pass
|
|
|
|
|
|
def _calculate_n_gradient_checkpoints(
|
|
n_layers : int,
|
|
method : Optional[Union[str, int]] = "sqrt",
|
|
) -> List[int]:
|
|
assert(type(n_layers) is int and n_layers > 0)
|
|
|
|
if method is None: method = "sqrt"
|
|
|
|
if method == "sqrt":
|
|
n_checkpoints = int(n_layers**0.5)
|
|
elif type(method) is int and method > 0:
|
|
n_checkpoints = int(np.ceil(n_layers / method))
|
|
else:
|
|
raise ValueError("method must be 'sqrt' or an int >0 and <= n_layers.")
|
|
|
|
size = n_layers // n_checkpoints
|
|
sizes = np.full(n_checkpoints, size, dtype = int)
|
|
leftovers = n_layers % n_checkpoints
|
|
# We append leftovers from the right
|
|
for k in range(leftovers):
|
|
sizes[n_checkpoints-1-k] += 1
|
|
boundaries = np.hstack((0, np.cumsum(sizes)))
|
|
boundaries = boundaries.tolist()
|
|
return boundaries
|
|
pass
|
|
|
|
|
|
def calculate_n_gradient_checkpoints(
|
|
n_layers : int,
|
|
layers_per_checkpoint : Optional[Union[str, int]] = "sqrt",
|
|
) -> List[int]:
|
|
assert(type(n_layers) is int and n_layers > 0)
|
|
|
|
if layers_per_checkpoint is None or layers_per_checkpoint == 1:
|
|
return None
|
|
|
|
boundaries = _calculate_n_gradient_checkpoints(n_layers, layers_per_checkpoint)
|
|
|
|
assert(boundaries[0] == 0 and boundaries[-1] == n_layers)
|
|
assert(min(boundaries) == 0 and max(boundaries) == n_layers)
|
|
assert(np.diff(boundaries).min() >= 0)
|
|
return boundaries
|
|
pass
|
|
|
|
|
|
def prepare_n_gradient_checkpoints(
|
|
model : Any,
|
|
layers_per_checkpoint : Optional[Union[str, int]] = "sqrt",
|
|
use_reentrant : Optional[bool] = True,
|
|
) -> None:
|
|
"""
|
|
Calculates where to place the gradient checkpoints given n_layers.
|
|
|
|
Args:
|
|
model: Any LlamaModel with layers.
|
|
layers_per_checkpoint (`Union[str, int]`, *optional*):
|
|
Can either be `sqrt` or an integer for how many layers per checkpoint you want.
|
|
The more, the less memory usage, but can be slower. Default is `sqrt`.
|
|
Choose 1 for Pytorch gradient checkpointing. 2 to wrap 2 layers in 1 module etc.
|
|
use_reentrant (`bool`, *optional*):
|
|
https://github.com/pytorch/pytorch/blob/main/torch/utils/checkpoint.py#L354
|
|
Optimal gradient checkpointing algorithm `use_reentrant=False` which will
|
|
be the default in future Pytorch versions doesn't seem to work??
|
|
"""
|
|
_model = None
|
|
if hasattr(model, "layers"):
|
|
_model = model
|
|
elif hasattr(model, "model"):
|
|
if hasattr(model.model, "layers"):
|
|
_model = model.model
|
|
if _model is None:
|
|
raise TypeError("`model` or `model.model` does not have attribute `layers`. Are you sure this is a model?")
|
|
pass
|
|
|
|
if use_reentrant is False:
|
|
use_reentrant = True
|
|
pass
|
|
|
|
n_layers = len(_model.layers)
|
|
boundaries = calculate_n_gradient_checkpoints(n_layers, layers_per_checkpoint)
|
|
_model._gradient_checkpointing_boundaries = boundaries
|
|
_model._gradient_checkpointing_use_reentrant = use_reentrant
|
|
pass
|
|
|
|
|
|
class Unsloth_Offloaded_Gradient_Checkpointer(torch.autograd.Function):
|
|
"""
|
|
Saves VRAM by smartly offloading to RAM.
|
|
Tiny hit to performance, since we mask the movement via non blocking calls.
|
|
"""
|
|
@staticmethod
|
|
@torch.cuda.amp.custom_fwd
|
|
def forward(ctx, forward_function, hidden_states, *args):
|
|
saved_hidden_states = hidden_states.to("cpu", non_blocking = True)
|
|
with torch.no_grad():
|
|
(output,) = forward_function(hidden_states, *args)
|
|
ctx.save_for_backward(saved_hidden_states)
|
|
ctx.forward_function = forward_function
|
|
ctx.args = args
|
|
return output
|
|
pass
|
|
|
|
@staticmethod
|
|
@torch.cuda.amp.custom_bwd
|
|
def backward(ctx, dY):
|
|
(hidden_states,) = ctx.saved_tensors
|
|
hidden_states = hidden_states.to("cuda", non_blocking = True).detach()
|
|
hidden_states.requires_grad = True
|
|
with torch.enable_grad():
|
|
(output,) = ctx.forward_function(hidden_states, *ctx.args)
|
|
torch.autograd.backward(output, dY)
|
|
return (None, hidden_states.grad,) + (None,)*len(ctx.args)
|
|
pass
|
|
pass
|