| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| 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()) |
| 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') |
|
|
| 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: |
| |
| 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: |
| |
| obj_copy = torch.zeros_like(obj, device=CPU, pin_memory=True) |
| streamCtx = torch_new_stream_ctx() |
| if streamCtx: |
| |
| with streamCtx: |
| obj_copy.copy_(obj, non_blocking=True) |
| return obj_copy |
| else: |
| |
| obj = obj.to(device=device, non_blocking=True) |
| else: |
| |
| 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 |
|
|
| |
| 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)}]`") |
|
|
| |
| for cls in quant_linear_candidates: |
| try: |
| |
| |
| |
| |
|
|
| 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}`.") |
|
|
| |
| 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(): |
| |
| if name not in quant_result: |
| continue |
|
|
| |
| |
| |
| 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): |
| |
| in_features = submodule.in_features |
| out_features = submodule.out_features |
| else: |
| raise NotImplementedError(f"Unsupported module {submodule}") |
|
|
| bias = submodule.bias is not None |
|
|
| |
| tmp_bits = bits |
| tmp_group_size = group_size |
| tmp_desc_act = desc_act |
| tmp_sym = sym |
| tmp_pack_dtype = pack_dtype |
|
|
| |
| if dynamic is not None: |
| overrides = dynamic_get(dynamic=dynamic, module_name=name) |
| |
| if overrides == False: |
| continue |
|
|
| |
| if overrides: |
| |
| 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) |
|
|
| |
| |
| _, 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, |
| ) |
| 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, |
| |
| 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 |
|
|
| |
| 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": |
| |
| 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") |
|
|
| |
| |
| |
| |
| 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: |
| |
| 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 |
| ) |
|
|
| |
| 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 |
| ) |
|
|
| |
| 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.") |
|
|
| |
| module.qzero_format(format=2) |
|
|
| |
| def convert_gptq_v1_to_v2_format( |
| model, |
| cfg: QuantizeConfig, |
| qlinear_kernel: Type[BaseQuantLinear], |
| ): |
| |
| if qlinear_kernel in [IPEXQuantLinear, MarlinQuantLinear, ExllamaEoraQuantLinear, QQQQuantLinear]: |
| log.info( |
| f"Format: Skipped v1 to v2 conversion due to Kernel `{qlinear_kernel}`.") |
| return model |
|
|
| |
| 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(): |
| |
| |
| |
| |
| 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 |
|
|
|
|
| |
| 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]: |
| |
| 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) |
|
|
| |
| def convert_gptq_v2_to_v1_format( |
| model, |
| quantize_config: QuantizeConfig, |
| qlinear_kernel: Type[BaseQuantLinear], |
| ): |
|
|
| |
| if qlinear_kernel in [IPEXQuantLinear, MarlinQuantLinear, ExllamaEoraQuantLinear, QQQQuantLinear]: |
| return model |
|
|
| |
| with tctl.threadpool_limits(limits=1): |
| for _, submodule in model.named_modules(): |
| |
| 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): |
| |
| with tctl.threadpool_limits(limits=1): |
| with lock: |
| r = quant_result[name] |
| scale, zero, g_idx = r["scale"], r["zero"], r["g_idx"] |
| 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) |
|
|
| |
| |
| |
| |
|
|
| 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 |
|
|
| with ThreadPoolExecutor(max_workers=max_packers) as executor: |
| with log.pb(names).manual() as pb: |
| def wrapper(name): |
| |
| 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) |
| |
| 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 |
|
|
|
|
| |
| 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. |
| """ |
| |
| device_to_buffers_size = {} |
| |
| model_uses_exllama = False |
|
|
| |
| 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 |
|
|
| |
| """ |
| 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: |
| |
| 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(): |
| |
| |
| 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"], |
| } |
|
|
| |
| 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"]) |
|
|
| |
| 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) |
|
|
| |
| model.device_tensors = device_tensors |
|
|
| |
| 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() |
|
|
| |
| |
|
|
| 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): |
| |
| 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: |
| |
| with open(str(shard_index)) as f: |
| index_json = json.load(f) |
| |
| 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 |
|
|
|
|
| |
| def auto_dtype(config: PretrainedConfig, |
| device: DEVICE, |
| quant_inference: bool = False) -> torch.dtype: |
|
|
| assert isinstance(device, DEVICE) |
|
|
| |
| |
| |
| if device in [DEVICE.MPS, DEVICE.XPU]: |
| log.info("Loader: Auto dtype (MPS or XPU): `torch.float16`") |
| return torch.float16 |
|
|
| |
| if device in [DEVICE.CPU] and HAS_IPEX: |
| log.info("Loader: Auto dtype (CPU + IPEX): `torch.bfloat16`") |
| return torch.bfloat16 |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| 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: |
| |
| |
| log.info(f"Loader: Auto dtype (native = `{dtype}`): `torch.bfloat16`") |
| return torch.bfloat16 |
|
|
|
|
| |
| 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" |
| |
|
|
|
|
| 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() |
|
|
| |
| |
| ptrs = collections.defaultdict(list) |
| for name, tensor in state_dict.items(): |
| |
| |
| if isinstance(tensor, torch.Tensor): |
| ptrs[id_tensor_storage(tensor)].append(name) |
| else: |
| |
| ptrs[id(tensor)].append(name) |
|
|
| |
| shared_ptrs = {ptr: names for ptr, names in ptrs.items() if len(names) > 1} |
| warn_names = set() |
| for names in shared_ptrs.values(): |
| |
| |
| 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] |
|
|
| |
| |
| |
| |
| |
| 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 |
|
|
| |
| 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 |
|
|