aneeshm44's picture
Add files using upload-large-folder tool
f618189 verified
Raw
History Blame Contribute Delete
45.4 kB
# Copyright 2024-2025 ModelCloud.ai
# Copyright 2024-2025 qubitium@modelcloud.ai
# Contact: qubitium@modelcloud.ai, x.com/qubitium
#
# 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.
from __future__ import annotations
import collections
import functools
import hashlib
import json
import operator
import os
import re
import shutil
import threading
import time
from concurrent.futures import ThreadPoolExecutor
from enum import Enum
from typing import Any, Dict, List, Optional, Tuple, Type, Union
import accelerate
import threadpoolctl as tctl
import torch
import torch.nn as nn
import transformers
from gptqmodel.nn_modules.qlinear.exllama_eora import ExllamaEoraQuantLinear
from gptqmodel.nn_modules.qlinear.marlin import MarlinQuantLinear
from gptqmodel.nn_modules.qlinear.qqq import QQQQuantLinear
from huggingface_hub import HfApi, hf_hub_download
from packaging import version
from torch.nn.modules.conv import _ConvNd
from transformers import PretrainedConfig
from transformers.pytorch_utils import id_tensor_storage
from transformers.utils.hub import cached_file
from ..adapter.adapter import Adapter
from ..looper.named_module import NamedModule
from ..models._const import (CPU, DEVICE, EXLLAMA_DEFAULT_MAX_INPUT_LENGTH,
EXPERT_INDEX_PLACEHOLDER, SUPPORTS_MODULE_TYPES)
from ..nn_modules.qlinear import BaseQuantLinear
from ..nn_modules.qlinear.exllama import ExllamaQuantLinear
from ..nn_modules.qlinear.exllamav2 import ExllamaV2QuantLinear
from ..nn_modules.qlinear.ipex import HAS_IPEX, IPEXQuantLinear
from ..quantization import FORMAT, QuantizeConfig
from ..quantization.config import FORMAT_FIELD_JSON, QUANT_METHOD, dynamic_get
from . import has_gil_disabled
from .backend import BACKEND
from .importer import select_quant_linear
from .logger import setup_logger
from .torch import torch_empty_cache, torch_new_stream_ctx
log = setup_logger()
def recurse_getattr(obj, attr: str):
"""
Recursive `getattr`.
Args:
obj:
A class instance holding the attribute.
attr (`str`):
The attribute that is to be retrieved, e.g. 'attribute1.attribute2'.
"""
def _getattr(obj, attr):
return getattr(obj, attr)
return functools.reduce(_getattr, [obj] + attr.split("."))
def recurse_setattr(module, name, value):
"""A function to recursively set attributes to a module."""
if "." not in name:
setattr(module, name, value)
else:
name, rest = name.split(".", 1)
recurse_setattr(getattr(module, name), rest, value)
def get_device(obj: torch.Tensor | nn.Module):
if isinstance(obj, torch.Tensor):
return obj.device
params = list(obj.parameters()) # Convert generator to list
if len(params) > 0:
return params[0].device
else:
log.warn(f"Quantize: Unable to determine device of `{obj}`. default to `cpu`")
return torch.device('cpu') # or raise an exception
def move_to(obj: torch.Tensor | nn.Module, device: torch.device, dtype: torch.dtype = None, stream: bool = False):
if get_device(obj) != device:
if stream:
# we cannot support changing dtype and stream at the same time
assert dtype is None, f"streaming does not support changing dtype: actual = `{dtype}"
if not isinstance(obj, torch.Tensor):
raise NotImplementedError(
f"Streaming `move_to` is not supported for non-Tensors: actual = `{obj.__class__.__name__}`")
if device == CPU:
# print(f" streaming from non-CPU to CPU...nonblocking")
obj_copy = torch.zeros_like(obj, device=CPU, pin_memory=True)
streamCtx = torch_new_stream_ctx()
if streamCtx:
# use streaming context with pinned cpu memory
with streamCtx:
obj_copy.copy_(obj, non_blocking=True)
return obj_copy
else:
# does not support streaming context
obj = obj.to(device=device, non_blocking=True)
else:
# cpu to non-cpu or non-cpu to non-cpu uses normal .to() api
obj = obj.to(device=device, non_blocking=True)
else:
obj = obj.to(device=device, dtype=dtype, non_blocking=False)
return obj
def nested_move_to(v, device, dtype: torch.dtype = None, stream: bool = False):
if isinstance(v, torch.Tensor):
return move_to(v, device=device, dtype=dtype, stream=stream)
elif isinstance(v, (list, tuple)):
return type(v)([nested_move_to(e, device=device, dtype=dtype, stream=stream) for e in v])
else:
return v
def find_modules(module: nn.Module, layers=None, name: str="") -> Dict[str, nn.Module]:
if not layers:
layers = SUPPORTS_MODULE_TYPES
if isinstance(module, tuple(layers)):
return {name: module}
res = {}
for name1, child in module.named_children():
res.update(find_modules(child, layers=layers, name=name + "." + name1 if name != "" else name1))
return res
def get_module_by_name_prefix(model, module_name: Union[List[str], str]):
module_name_list = module_name if isinstance(module_name, list) else [module_name]
for name, module in model.named_modules():
for prefix in module_name_list:
if name.startswith(prefix):
return module, prefix
return None, ""
def get_module_by_name_suffix(model, module_name: str):
for name, module in model.named_modules():
if name.endswith(module_name):
return module
def get_module(module, key):
"""Get module from model by key name.
Args:
module (torch.nn.Module): original model
key (str): module name to be replaced
"""
name_list = key.split(".")
for name in name_list:
module = getattr(module, name, None)
return module
def make_quant(
module,
quant_result: Dict[str, Dict[str, Any]],
qcfg: QuantizeConfig,
backend: BACKEND,
lm_head_name: str,
pack: bool = False,
device: DEVICE = None,
from_quantized: bool = False,
) -> Type[BaseQuantLinear]:
bits = qcfg.bits
group_size =qcfg.group_size
extension = qcfg.adapter
format = qcfg.format
desc_act = qcfg.desc_act
sym = qcfg.sym
dynamic = qcfg.dynamic
pack_dtype = qcfg.pack_dtype
# returns multiple validated kernels
quant_linear_candidates = select_quant_linear(
bits=bits,
group_size=group_size,
desc_act=desc_act,
sym=sym,
backend=backend,
format=format,
pack=pack,
dynamic=dynamic,
device=device,
pack_dtype=pack_dtype,
multi_select=True,
adapter=extension,
)
log.info(f"Kernel: candidates -> `[{', '.join(cls.__name__ for cls in quant_linear_candidates)}]`")
# loop over actual QLinear init, catch errors and use fallbacks if applicable
for cls in quant_linear_candidates:
try:
# if linear is not selectedQLinear:
# logger.info(f"make_quant: Faild linear: `{selectedQLinear}` failed, trying to use fallback: `{linear}`")
# else:
# logger.info("make_quant: Testing linear: {linear}")
linear_cls = create_quant_layer(
linear_cls=cls,
bits=bits,
desc_act=desc_act,
dynamic=dynamic,
group_size=group_size,
module=module,
quant_result=quant_result,
sym=sym,
device=device,
lm_head_name=lm_head_name,
pack_dtype=pack_dtype,
backend=backend,
adapter=qcfg.adapter,
)
log.info(f"Kernel: selected -> `{linear_cls.__name__}`.")
return linear_cls
except NotImplementedError as e:
log.info(f"Kernel: skipped -> `{cls}`.")
# only fallback to other quant linears when backend is auto.
if backend not in [BACKEND.AUTO, BACKEND.AUTO_TRAINABLE]:
raise e
raise ValueError(f"No compatible quant linear was found for this module: {module.__class__.__name__}")
def create_quant_layer(
linear_cls: Type[BaseQuantLinear],
bits: int,
desc_act: bool,
dynamic,
group_size: int,
module,
quant_result: Dict[str, Dict[str, Any]],
sym: bool,
device: DEVICE,
lm_head_name: str,
pack_dtype: torch.dtype,
backend: BACKEND,
adapter: Optional[Adapter] = None,
) -> Type[BaseQuantLinear]:
if isinstance(module, linear_cls):
return linear_cls
for name, submodule in module.named_modules():
# skip non-quantized modules
if name not in quant_result:
continue
# submodule may be BaseQuantLinear, and the next QuantLinear is selected because of in_features/out_features
# mismatch and other reasons.
# In this case, need to call list_buffer() to get the device.
if not isinstance(submodule, BaseQuantLinear):
ori_layer_device = next(submodule.parameters()).device
else:
ori_layer_device = submodule.list_buffers()[0].device
if isinstance(submodule, NamedModule):
in_features = submodule.state.get("in_features")
out_features = submodule.state.get("out_features")
elif isinstance(submodule, nn.Linear):
in_features = submodule.in_features
out_features = submodule.out_features
elif isinstance(submodule, _ConvNd):
in_features = submodule.in_channels
out_features = submodule.out_channels
elif isinstance(submodule, transformers.Conv1D):
in_features = submodule.weight.shape[0]
out_features = submodule.weight.shape[1]
elif isinstance(submodule, BaseQuantLinear):
# if submodule is already a quant layer, we need to get in_features and out_features from the submodule
in_features = submodule.in_features
out_features = submodule.out_features
else:
raise NotImplementedError(f"Unsupported module {submodule}")
bias = submodule.bias is not None
# need copies as dynamic config may override these in for loop
tmp_bits = bits
tmp_group_size = group_size
tmp_desc_act = desc_act
tmp_sym = sym
tmp_pack_dtype = pack_dtype
# dynamic bits, group_size, sym, pack_dtype for each layer/module
if dynamic is not None:
overrides = dynamic_get(dynamic=dynamic, module_name=name)
# negative module match, skip this module
if overrides == False: # noqa: E712
continue
# positive module match
if overrides:
# override base QuantizeConfig for every quant config key/value
tmp_bits = overrides.get("bits", bits)
tmp_group_size = overrides.get("group_size", group_size)
tmp_desc_act = overrides.get("desc_act", desc_act)
tmp_sym = overrides.get("sym", sym)
tmp_pack_dtype = overrides.get("pack_dtype", pack_dtype)
# when loading a quantized model, device is target device passed in GPTQModel.load()
# check in_features and out_features validate
_, err = linear_cls.validate(
bits=tmp_bits,
group_size=tmp_group_size,
desc_act=tmp_desc_act,
sym=tmp_sym,
pack_dtype=tmp_pack_dtype,
in_features=in_features,
out_features=out_features,
device=device,
adapter=adapter, # TODO FIX ME..need to pass Eora if loaded
)
if err is not None:
raise err
new_layer = linear_cls(
bits=tmp_bits,
group_size=tmp_group_size,
desc_act=tmp_desc_act,
sym=tmp_sym,
in_features=in_features,
out_features=out_features,
pack_dtype=tmp_pack_dtype,
bias=bias,
#weight_dtype=submodule.qweight.dtype if isinstance(submodule, BaseQuantLinear) else submodule.weight.dtype,
name=name,
lm_head_name=lm_head_name,
backend=backend,
adapter=adapter,
)
new_layer.device = ori_layer_device
recurse_setattr(module, name, new_layer.to(ori_layer_device))
return linear_cls
# public/stable api exposed to transformer/optimum
def hf_convert_gptq_v1_to_v2_format(
model: nn.Module,
bits: int,
qlinear_kernel: Type[BaseQuantLinear],
checkpoint_format: str,
meta: Optional[Dict[str, any]],
) -> Tuple[nn.Module, bool]:
if checkpoint_format == "gptq":
# skip v1 to v2 conversion for kernels that can only operate on sym=True (gptq_v1)
if qlinear_kernel in [IPEXQuantLinear, MarlinQuantLinear, ExllamaEoraQuantLinear]:
return model, False
cfg = QuantizeConfig(bits=bits)
return convert_gptq_v1_to_v2_format(model, cfg, qlinear_kernel), True
else:
return model, False
def convert_gptq_v1_to_v2_format_module(module: BaseQuantLinear, bits: int, pack_dtype: torch.dtype) -> nn.Module:
assert isinstance(module, BaseQuantLinear)
log.info.once("Format: Converting GPTQ v1 to v2")
# v1 checkpoint format used to do `qzeros = qzeros -= 1` before serialization, thus the
# additions here do not overflow.
# v1 checkpoint format with sym=False saved via convert_gptq_v2_to_v1_format() will
# overflow ~<=13% based on testing
if bits == 2:
if pack_dtype == torch.int64:
module.qzeros.data += 0b0101010101010101010101010101010101010101010101010101010101010101
elif pack_dtype == torch.int32:
module.qzeros.data += 0b01010101010101010101010101010101
elif pack_dtype == torch.int16:
module.qzeros.data += 0b0101010101010101
elif pack_dtype == torch.int8:
module.qzeros.data += 0b01010101
elif bits == 3:
# range 0 offset
if pack_dtype == torch.int64:
offset = 0b0010010010010010010010010010010000100100100100100100100100100100
elif pack_dtype == torch.int32:
offset = 0b00100100100100100100100100100100
elif pack_dtype == torch.int16:
offset = 0b0010010010010010
elif pack_dtype == torch.int8:
offset = 0b00100100
module.qzeros.data[:, range(0, module.qzeros.data.shape[1], 3)] += (
offset
)
# range 1 offset
if pack_dtype == torch.int64:
offset = 0b1001001001001001001001001001001010010010010010010010010010010010
elif pack_dtype == torch.int32:
offset = 0b10010010010010010010010010010010
elif pack_dtype == torch.int16:
offset = 0b1001001001001001
elif pack_dtype == torch.int8:
offset = 0b10010010
module.qzeros.data[:, range(1, module.qzeros.data.shape[1], 3)] += (
offset
)
# range 2 offset
if pack_dtype == torch.int64:
offset = 0b0100100100100100100100100100100101001001001001001001001001001001
elif pack_dtype == torch.int32:
offset = 0b01001001001001001001001001001001
elif pack_dtype == torch.int16:
offset = 0b0100100100100100
elif pack_dtype == torch.int8:
offset = 0b01001001
module.qzeros.data[:, range(2, module.qzeros.data.shape[1], 3)] += (
offset
)
elif bits == 4:
if pack_dtype == torch.int64:
module.qzeros.data += 0b0001000100010001000100010001000100010001000100010001000100010001
elif pack_dtype == torch.int32:
module.qzeros.data += 0b00010001000100010001000100010001
elif pack_dtype == torch.int16:
module.qzeros.data += 0b0001000100010001
elif pack_dtype == torch.int8:
module.qzeros.data += 0b00010001
elif bits == 8:
if pack_dtype == torch.int64:
module.qzeros.data += 0b0000000100000001000000010000000100000001000000010000000100000001
elif pack_dtype == torch.int32:
module.qzeros.data += 0b00000001000000010000000100000001
elif pack_dtype == torch.int16:
module.qzeros.data += 0b0000000100000001
elif pack_dtype == torch.int8:
module.qzeros.data += 0b00000001
else:
raise NotImplementedError("Only 2,3,4,8 bits are supported.")
# change format id
module.qzero_format(format=2)
# Optionally convert weight from gptq_v1 to v2 format if Kernel is compatible with v2
def convert_gptq_v1_to_v2_format(
model,
cfg: QuantizeConfig,
qlinear_kernel: Type[BaseQuantLinear],
):
# skip v2 to v1 conversion for gptq_v1 kernels
if qlinear_kernel in [IPEXQuantLinear, MarlinQuantLinear, ExllamaEoraQuantLinear, QQQQuantLinear]:
log.info(
f"Format: Skipped v1 to v2 conversion due to Kernel `{qlinear_kernel}`.")
return model
# Limit thread usage to avoid auto-parallizataion regression
with tctl.threadpool_limits(limits=1):
t = time.time()
log.info(
f"Format: Converting `{FORMAT_FIELD_JSON}` from `{FORMAT.GPTQ}` to internal `{FORMAT.GPTQ_V2}`.")
for _, submodule in model.named_modules():
# v1 checkpoint format used to do `qzeros = qzeros -= 1` before serialization, thus the
# additions here do not overflow.
# v1 checkpoint format with sym=False saved via convert_gptq_v2_to_v1_format() will
# overflow ~<=13% based on testing
if isinstance(submodule, qlinear_kernel):
convert_gptq_v1_to_v2_format_module(module=submodule, bits=cfg.bits, pack_dtype=cfg.pack_dtype)
log.info(f"Format: Conversion complete: {time.time() - t}s")
return model
# public/stable api exposed to transformer/optimum
def hf_convert_gptq_v2_to_v1_format(
model: nn.Module,
sym: bool,
bits: int,
qlinear_kernel: Type[BaseQuantLinear],
checkpoint_format: str,
meta: Optional[Dict[str, any]],
) -> Tuple[nn.Module, bool]:
# note: sym=False is valid for gptq_v2 for all gptqmodel and gptq(v1) for gptqmodel >= `0.9.0`
if sym and checkpoint_format == "gptq_v2":
quantize_config = QuantizeConfig(bits=bits)
return convert_gptq_v2_to_v1_format(model, quantize_config, qlinear_kernel), True
else:
return model, False
def convert_gptq_v2_to_v1_format_module(
module: BaseQuantLinear,
quantize_config: QuantizeConfig,
):
assert isinstance(module, BaseQuantLinear)
log.info.once("Format: Converting GPTQ v2 to v1")
if quantize_config.bits == 2:
module.qzeros.data -= 0b01010101010101010101010101010101
elif quantize_config.bits == 3:
module.qzeros.data[:, range(0, module.qzeros.data.shape[1], 3)] -= (
0b00100100100100100100100100100100
)
module.qzeros.data[:, range(1, module.qzeros.data.shape[1], 3)] -= (
0b10010010010010010010010010010010
)
module.qzeros.data[:, range(2, module.qzeros.data.shape[1], 3)] -= (
0b01001001001001001001001001001001
)
elif quantize_config.bits == 4:
module.qzeros.data -= 0b00010001000100010001000100010001
elif quantize_config.bits == 8:
module.qzeros.data -= 0b00000001000000010000000100000001
else:
raise NotImplementedError("Only 2,3,4,8 bits are supported.")
module.qzero_format(format=1)
# Optionally convert weight from gptq_v2 to v1 export format if Kernel is compatible with v2
def convert_gptq_v2_to_v1_format(
model,
quantize_config: QuantizeConfig,
qlinear_kernel: Type[BaseQuantLinear],
):
# skip v2 to v1 conversion for gptq_v1 kernels
if qlinear_kernel in [IPEXQuantLinear, MarlinQuantLinear, ExllamaEoraQuantLinear, QQQQuantLinear]:
return model
# Limit thread usage to avoid auto-parallizataion regression
with tctl.threadpool_limits(limits=1):
for _, submodule in model.named_modules():
# sym=False has underflow probability of ~<=13% during testing. No underflow possible for sym=True.
if isinstance(submodule, qlinear_kernel):
convert_gptq_v2_to_v1_format_module(module=submodule, quantize_config=quantize_config)
return model
def pack_module(name, qModules, quant_result: Dict[str, Dict[str, Any]], layers, quant_linear_cls, lock: threading.Lock):
# Limit pack() thread usage to avoid auto-parallizataion regression
with tctl.threadpool_limits(limits=1):
with lock:
r = quant_result[name]
scale, zero, g_idx = r["scale"], r["zero"], r["g_idx"] # TODO FIX ME: use const, not string for field names
module = qModules[name]
layer = layers[name]
module = module.to(CPU)
layer = layer.to(CPU)
scale = scale.to(CPU)
zero = zero.to(CPU)
g_idx = g_idx.to(CPU) if g_idx is not None else None
with lock:
qModules[name] = module
layers[name] = layer
if quant_linear_cls.QUANT_TYPE == "qqq":
with lock:
scale_extra = r["scale_extra"]
scale_extra = scale_extra.to(CPU)
module.pack(linear=layer, scales=scale, s_extra=scale_extra)
else:
module.pack(linear=layer, scales=scale, zeros=zero, g_idx=g_idx)
# TODO: why move it back to gpu?
# start = time.time()
# qModules[name].to(layer_device)
# log.info(f"Pack: moving module back to `{layer_device}` cost = {time.time()-start} seconds")
def pack_model(
model,
quant_result: Dict[str, Dict[str, Any]],
bits,
group_size,
backend: BACKEND,
format: str | FORMAT,
quant_method: str | QUANT_METHOD,
lm_head_name: str,
desc_act=False,
sym: bool = True,
dynamic=None,
parallel_packing: bool = True,
pack_dtype: torch.dtype = None,
):
qcfg = QuantizeConfig(
bits=bits,
group_size=group_size,
format=format,
quant_method=quant_method,
desc_act=desc_act,
sym=sym,
dynamic=dynamic,
pack_dtype=pack_dtype,
)
model.to(CPU)
log.info("Packing model...")
modules = find_modules(model)
modules = {n: modules[n] for n in quant_result}
quant_linear_cls = make_quant(
model,
quant_result=quant_result,
qcfg=qcfg,
backend=backend,
lm_head_name=lm_head_name,
pack=True,
)
qModules = find_modules(model, [quant_linear_cls])
assert len(qModules) > 0, f"No quantizeed modules[{quant_linear_cls}] found in the model."
names = list(qModules.keys())
lock = threading.Lock()
if has_gil_disabled():
from device_smi import Device
cpu = Device("cpu")
max_packers = cpu.count * cpu.cores
else:
max_packers = 1 # due to gil, there is no point packing with more than 1 thread
with ThreadPoolExecutor(max_workers=max_packers) as executor:
with log.pb(names).manual() as pb:
def wrapper(name):
# TODO FIX, thread pool executor does not advance iterator
pb.next()
pb.title(f"Packing {name}").draw()
pack_module(name=name, qModules=qModules, quant_result=quant_result, layers=modules,
quant_linear_cls=quant_linear_cls, lock=lock)
for _ in executor.map(wrapper, names):
pass
log.info("Model packed.")
return quant_linear_cls
def verify_model_hash(file_path: str, verify_hash: str):
if not isinstance(verify_hash, str):
raise ValueError("model verify_hash must be a string")
if ':' not in verify_hash:
raise ValueError("verify_hash must be in the format 'hash_type:hash_value'")
hash_type, hash_value = verify_hash.split(':', 1)
hash_func = getattr(hashlib, hash_type, None)
if not hash_func:
raise ValueError(f"No hash function found for type: {hash_type}")
with open(file_path, "rb") as f:
file_hash = hash_func(f.read()).hexdigest()
return file_hash == hash_value
def verify_sharded_model_hashes(jsonPath: str, verify_hash: List[str]):
if not isinstance(verify_hash, list):
raise ValueError("sharded model verify_hash must be a list")
with open(jsonPath, 'r') as f:
index_data = json.load(f)
weight_map = index_data['weight_map']
shard_files = set(weight_map.values())
if len(shard_files) != len(verify_hash):
raise ValueError("Number of shards and number of hash values do not match.")
for shard_file, expected_hash in zip(shard_files, verify_hash):
if not verify_model_hash(shard_file, expected_hash):
log.info(f"Hash verification failed for {shard_file}")
return False
return True
def simple_dispatch_model(model, device_map):
from accelerate.hooks import AlignDevicesHook, add_hook_to_module
if "" in device_map:
d = device_map[""]
model = model.to(torch.device(d))
model.hf_device_map = device_map
return model
tied_params = accelerate.utils.modeling.find_tied_parameters(model)
if set(device_map.values()) == {"cpu"} or set(device_map.values()) == {
"cpu",
"disk",
}:
main_device = "cpu"
else:
main_device = [d for d in device_map.values() if d not in ["cpu", "disk"]][0]
cpu_offload_group = [(n, d) for n, d in device_map.items() if d == "cpu"]
prev_hook = None
for idx, (n, d) in enumerate(cpu_offload_group):
m = get_module_by_name_suffix(model, n)
_, prev_hook = accelerate.cpu_offload_with_hook(m, execution_device=main_device, prev_module_hook=prev_hook)
# set first cpu offload module's prev_module_hook to the last cpu offload module's hook
if len(cpu_offload_group) > 1:
get_module_by_name_suffix(model, cpu_offload_group[0][0])._hf_hook.prev_module_hook = prev_hook
for n, d in device_map.items():
m = get_module_by_name_suffix(model, n)
if d != "cpu":
d = torch.device(d)
hook = AlignDevicesHook(d, io_same_device=True, place_submodules=True)
add_hook_to_module(m, hook)
accelerate.utils.modeling.retie_parameters(model, tied_params)
model.hf_device_map = device_map
return model
# public/stable api exposed to transformer/optimum
def hf_gptqmodel_post_init(model, use_act_order: bool, quantize_config: QuantizeConfig = None,
max_input_length: Optional[int] = None):
return gptqmodel_post_init(model, use_act_order, quantize_config, max_input_length)
def gptqmodel_post_init(model, use_act_order: bool, quantize_config: QuantizeConfig = None,
max_input_length: Optional[int] = None):
"""
The max_input_length argument is specific to the exllama backend, that requires to initialize a buffer temp_state.
"""
# post init for bitblas backend.
device_to_buffers_size = {}
# exllama
model_uses_exllama = False
# exllamav2
fixed_bytes = {}
model_uses_exllamav2 = False
for name, submodule in model.named_modules():
if isinstance(submodule, ExllamaV2QuantLinear):
model_uses_exllamav2 = True
device = submodule.qweight.device
scratch_fixed = submodule.scratch_space_fixed()
fixed_bytes[device] = max(scratch_fixed, fixed_bytes.get(device, 0))
elif isinstance(submodule, ExllamaQuantLinear):
model_uses_exllama = True
device = submodule.qweight.device
if device not in device_to_buffers_size:
device_to_buffers_size[device] = {
"max_dq_buffer_size": 1,
"max_inner_outer_dim": 1,
}
submodule._use_act_order = True if use_act_order else False
# Disable this heuristic for detecting act_order, but it could be used instead of the config.
"""
if submodule.g_idx is None:
submodule.act_order = False
elif submodule.g_idx is not None and ((submodule.g_idx == 0).all() or torch.equal(submodule.g_idx.cpu(), torch.tensor([i // submodule.group_size for i in range(submodule.g_idx.shape[0])], dtype=torch.int32))):
submodule.g_idx = None
submodule.act_order = False
else:
submodule.act_order = True
"""
device_to_buffers_size[device]["max_dq_buffer_size"] = max(
device_to_buffers_size[device]["max_dq_buffer_size"],
submodule.qweight.numel() * 8,
)
if use_act_order:
device_to_buffers_size[device]["max_inner_outer_dim"] = max(
device_to_buffers_size[device]["max_inner_outer_dim"],
submodule.in_features,
submodule.out_features,
)
if model_uses_exllama:
# To be honest this is quite ugly, not proud of this.
from gptqmodel_exllama_kernels import prepare_buffers, set_tuning_params
device_to_buffers = {}
if use_act_order:
if max_input_length is None:
max_input_len = EXLLAMA_DEFAULT_MAX_INPUT_LENGTH
else:
max_input_len = max_input_length
else:
if max_input_length is not None:
log.info(
"Using exllama backend without act-order, the parameter max_input_length was set although not needed, it will be ignored."
)
max_input_len = 1
for device, buffers_size in device_to_buffers_size.items():
# The temp_state buffer is required to reorder X in the act-order case.
# The temp_dq buffer is required to dequantize weights when using cuBLAS, typically for the prefill.
device_to_buffers[device] = {
"temp_state": torch.zeros(
(max_input_len, buffers_size["max_inner_outer_dim"]),
dtype=torch.float16,
device=device,
),
"temp_dq": torch.zeros(
(1, buffers_size["max_dq_buffer_size"]),
dtype=torch.float16,
device=device,
),
"max_dq_buffer_size": buffers_size["max_dq_buffer_size"],
"max_inner_outer_dim": buffers_size["max_inner_outer_dim"],
}
# Buffers need to be persistent to avoid any bug.
model.device_to_buffers = device_to_buffers
for device, buffers in model.device_to_buffers.items():
prepare_buffers(device, buffers["temp_state"], buffers["temp_dq"])
# Using the default from exllama repo here.
matmul_recons_thd = 16
matmul_fused_remap = False
matmul_no_half2 = False
set_tuning_params(matmul_recons_thd, matmul_fused_remap, matmul_no_half2)
if model_uses_exllamav2:
from ..nn_modules.qlinear.exllamav2 import ExLlamaV2DeviceTensors
device_tensors = {}
for device, scratch_bytes in fixed_bytes.items():
device_tensors[device] = ExLlamaV2DeviceTensors(device.index, scratch_bytes)
# have persistent buffers, otherwise we will get OOM
model.device_tensors = device_tensors
# The buffers need to have been initialized first before calling make_q4.
for _, submodule in model.named_modules():
if isinstance(submodule, ExllamaV2QuantLinear):
device = submodule.qweight.device
submodule.post_init(temp_dq=model.device_tensors[device])
elif isinstance(submodule, BaseQuantLinear):
submodule.post_init()
torch_empty_cache()
# if use_act_order and max_input_length and isinstance(submodule, ExllamaQuantLinear):
# model = exllama_set_max_input_length(model, max_input_length)
return model
def get_checkpoints(model_id_or_path: str, extensions: List[str], possible_model_basenames: List[str], **cached_file_kwargs):
"""
Retrives (and if necessary downloads from Hugging Face Hub) the model checkpoint. Sharding is supported. All the `possible_model_basenames` (e.g. `["model", "model-4bit-gptq"]`) will be explored over all `extensions` (e.g. `[".bin", ".safetensors"]`).
"""
searched_files = []
resolved_archive_file = None
true_model_basename = None
if os.path.isdir(model_id_or_path):
for ext in extensions:
for possible_model_basename in possible_model_basenames:
shard_index_name = possible_model_basename + ext + ".index.json"
searched_files.append(shard_index_name)
possible_index_file = os.path.join(model_id_or_path, shard_index_name)
if os.path.isfile(possible_index_file):
# The model is sharded over several checkpoints.
possible_model_basename = possible_index_file.replace(ext + ".index.json", "")
return True, possible_index_file, possible_model_basename
else:
model_save_name = os.path.join(model_id_or_path, possible_model_basename)
searched_files.append(possible_model_basename + ext)
if os.path.isfile(model_save_name + ext):
resolved_archive_file = model_save_name + ext
return False, resolved_archive_file, possible_model_basename
else:
temp = None
for ext in extensions:
for possible_model_basename in possible_model_basenames:
shard_index_name = possible_model_basename + ext + ".index.json"
shard_index = cached_file(
model_id_or_path,
shard_index_name,
**cached_file_kwargs,
)
searched_files.append(shard_index_name)
if shard_index is not None:
# The model is sharded over several checkpoints.
with open(str(shard_index)) as f:
index_json = json.load(f)
# Download the shards from the index.json.
shards = list(set(index_json["weight_map"].values()))
for shard in shards:
resolved_archive_file = cached_file(
model_id_or_path,
shard,
**cached_file_kwargs,
)
return True, shard_index, possible_model_basename
else:
resolved_archive_file = cached_file(
model_id_or_path,
possible_model_basename + ext,
**cached_file_kwargs,
)
if resolved_archive_file is None:
resolved_archive_file = temp
searched_files.append(possible_model_basename + ext)
if resolved_archive_file is not None:
temp = resolved_archive_file
return False, resolved_archive_file, possible_model_basename
if resolved_archive_file is None:
raise FileNotFoundError(
f"Could not find a model in {model_id_or_path} with a name in {', '.join(searched_files)}. Please specify the argument model_basename to use a custom file name."
)
return False, resolved_archive_file, true_model_basename
# return the most stable tensor dtype for quantization while minimizing vram
def auto_dtype(config: PretrainedConfig,
device: DEVICE,
quant_inference: bool = False) -> torch.dtype:
assert isinstance(device, DEVICE)
# TODO: both MPS and XPU are locked to float16
# XPU stack is missing bfloat16 (hardware supports it)
# MPS stack has bfloat16 bugs in pytorch
if device in [DEVICE.MPS, DEVICE.XPU]:
log.info("Loader: Auto dtype (MPS or XPU): `torch.float16`")
return torch.float16
# IPEX for CPU is optimized for bfloat16
if device in [DEVICE.CPU] and HAS_IPEX:
log.info("Loader: Auto dtype (CPU + IPEX): `torch.bfloat16`")
return torch.bfloat16
# Update: latest kernel accuracies have shown, with multiple ranges of shapes
# There are no accuracy issues with bf16 vs fp16. The only kernel with severe
# regression in bf16 is MARLIN_FP16 (reduce math in fp16) which is not auto-selectable
# # for inference, always use FP16 for max accuracy
# # check test_kernel_outputs for validation between fp16 and b16 in terms of kernel accuracy
# if quant_inference:
# log.info("Loader: Auto dtype: `torch.float16` due to inference mode. If you wish to use `bfloat16`, please pass in `torch_dtype` arg to `loader()`.")
# return torch.float16
# get dtype from config
dtype = getattr(config, "torch_dtype")
if dtype and not isinstance(dtype, torch.dtype):
raise ValueError(f"torch_dtype in config must be a torch.dtype, but got {dtype}")
if dtype in [torch.float32, torch.float64]:
log.info("Loader: Auto dtype (float32 down-cast): `torch.bfloat16`")
return torch.bfloat16
elif dtype == torch.float16:
log.info("Loader: Auto dtype (native float16): `torch.float16`")
return torch.float16
elif dtype == torch.bfloat16:
log.info("Loader: Auto dtype (native bfloat16): `torch.bfloat16`")
return torch.bfloat16
else:
# TODO: extract weights from model file to check their original type, instead of forcing bfloat16
# up/down-cast everything else to bfloat16 if not already in bfloat16
log.info(f"Loader: Auto dtype (native = `{dtype}`): `torch.bfloat16`")
return torch.bfloat16
# generate layer modules for moe models with experts
def get_moe_layer_modules(layer_modules: List, num_experts: int) -> List:
new_inside_layer_modules = []
for names in layer_modules:
new_inside_layer_modules.append([])
for n in names:
if EXPERT_INDEX_PLACEHOLDER in n:
for index in range(num_experts):
new_inside_layer_modules[-1].append(n.replace(EXPERT_INDEX_PLACEHOLDER, str(index)))
else:
new_inside_layer_modules[-1].append(n)
return new_inside_layer_modules
def check_to_quantized(config):
if isinstance(config, dict):
if config["bits"] > 8 or "fp" in config["data_type"] or "float" in config["data_type"]:
return False
return True
else:
if config.bits > 8 or "fp" in config.data_type or "float" in config.data_type:
return False
return True
def copy_py_files(save_dir, file_extension=".py", model_id_or_path=""):
os.makedirs(save_dir, exist_ok=True)
if os.path.isdir(model_id_or_path):
py_files = [f for f in os.listdir(model_id_or_path) if f.endswith('.py')]
for file in py_files:
shutil.copy2(os.path.join(model_id_or_path, file), save_dir)
else:
api = HfApi()
model_info = api.model_info(model_id_or_path)
for file in model_info.siblings:
if file.rfilename.endswith(file_extension):
_ = hf_hub_download(repo_id=model_id_or_path, filename=file.rfilename,
local_dir=save_dir)
def get_model_files_size(pre_quantized_model_path, file_extension=['.bin', '.safetensors', '.pth', '.pt', '.ckpt', '.h5', '.pb', '.onnx']):
if os.path.isdir(pre_quantized_model_path):
pre_quantized_size_bytes = sum(
os.path.getsize(os.path.join(pre_quantized_model_path, f))
for f in os.listdir(pre_quantized_model_path)
if os.path.isfile(os.path.join(pre_quantized_model_path, f)) and os.path.splitext(f)[
1] in file_extension
)
else:
api = HfApi()
files_data = api.list_repo_files(pre_quantized_model_path)
pre_quantized_size_bytes = 0
for file_info in files_data:
if any(file_info.endswith(ext) for ext in file_extension):
file_metadata = api.model_info(pre_quantized_model_path, files_metadata=True)
for file_data in file_metadata.siblings:
if file_data.rfilename == file_info:
pre_quantized_size_bytes += file_data.size
pre_quantized_size_mb = pre_quantized_size_bytes / (1024 * 1024)
return pre_quantized_size_mb
def check_requires_version(requires_version, current_version):
OPERATOR_MAP = {
"<=": operator.le,
">=": operator.ge,
"==": operator.eq,
"<": operator.lt,
">": operator.gt,
}
match = re.match(r"(<=|>=|==|<|>)\s*([\d\.]+)", requires_version)
if match:
op_symbol, required_version = match.groups()
current_version = version.parse(current_version)
required_version = version.parse(required_version)
return OPERATOR_MAP[op_symbol](current_version, required_version)
else:
return None
class MODALITY(str, Enum):
TEXT = "text"
IMAGE_TO_TEXT = "image_to_text"
# TEXT_TO_IMAGE = "text_to_image"
def get_state_dict_for_save(model: nn.Module) -> Dict:
"""
Filter weight-sharing tensors.
Referenced from transformers.modeling_utils.PreTrainedModel.save_pretrained.
See https://github.com/huggingface/transformers/blob/v4.38.2/src/transformers/modeling_utils.py#L2369
"""
state_dict = model.state_dict()
# Safetensors does not allow tensor aliasing.
# We're going to remove aliases before saving
ptrs = collections.defaultdict(list)
for name, tensor in state_dict.items():
# Sometimes in the state_dict we have non-tensor objects.
# e.g. in bitsandbytes we have some `str` objects in the state_dict
if isinstance(tensor, torch.Tensor):
ptrs[id_tensor_storage(tensor)].append(name)
else:
# In the non-tensor case, fall back to the pointer of the object itself
ptrs[id(tensor)].append(name)
# These are all the pointers of shared tensors.
shared_ptrs = {ptr: names for ptr, names in ptrs.items() if len(names) > 1}
warn_names = set()
for names in shared_ptrs.values():
# Removing the keys which are declared as known duplicates on
# load. This allows to make sure the name which is kept is consistent.
if model._tied_weights_keys is not None:
found = 0
for name in sorted(names):
matches_pattern = any(re.search(pat, name) for pat in model._tied_weights_keys)
if matches_pattern and name in state_dict:
found += 1
if found < len(names):
del state_dict[name]
# When not all duplicates have been cleaned, still remove those keys, but put a clear warning.
# If the link between tensors was done at runtime then `from_pretrained` will not get
# the key back leading to random tensor. A proper warning will be shown
# during reload (if applicable), but since the file is not necessarily compatible with
# the config, better show a proper warning.
found = 0
for name in names:
if name in state_dict:
found += 1
if found > 1:
del state_dict[name]
warn_names.add(name)
if len(warn_names) > 0:
log.warn.once(
f"Removed shared tensor {warn_names} while saving. This should be OK, but check by verifying that you don't receive any warning while reloading",
)
return state_dict
# Call tied_weights() after load_checkpoint_in_model() to have the weights tied correctly.
def load_checkpoint_in_model_then_tie_weights(model, *args, **kwargs):
accelerate.load_checkpoint_in_model(model, *args, **kwargs)
model.tie_weights()
def find_config_seq_len(config_dict, target_keys):
for k, v in config_dict.items():
if k in target_keys:
return v
if isinstance(v, dict):
found = find_config_seq_len(v, target_keys)
if found is not None:
return found
return None