| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| import json |
| import os |
| from collections.abc import Mapping |
| from typing import Dict, List, Optional, Union |
|
|
| import numpy as np |
| import torch |
|
|
| from ..logging import get_logger |
| from .imports import is_safetensors_available |
|
|
|
|
| logger = get_logger(__name__) |
|
|
|
|
| def offload_weight(weight, weight_name, offload_folder, index=None): |
| dtype = None |
| |
| if str(weight.dtype) == "torch.bfloat16": |
| |
| weight = weight.view(torch.int16) |
| dtype = "bfloat16" |
| array = weight.cpu().numpy() |
| tensor_file = os.path.join(offload_folder, f"{weight_name}.dat") |
| if index is not None: |
| if dtype is None: |
| dtype = str(array.dtype) |
| index[weight_name] = {"dtype": dtype, "shape": list(array.shape)} |
| if array.ndim == 0: |
| array = array[None] |
| file_array = np.memmap(tensor_file, dtype=array.dtype, mode="w+", shape=array.shape) |
| file_array[:] = array[:] |
| file_array.flush() |
| return index |
|
|
|
|
| def load_offloaded_weight(weight_file, weight_info): |
| shape = tuple(weight_info["shape"]) |
| if shape == (): |
| |
| shape = (1,) |
|
|
| dtype = weight_info["dtype"] |
| if dtype == "bfloat16": |
| |
| dtype = "int16" |
|
|
| weight = np.memmap(weight_file, dtype=dtype, shape=shape, mode="r") |
|
|
| if len(weight_info["shape"]) == 0: |
| weight = weight[0] |
| weight = torch.tensor(weight) |
| if weight_info["dtype"] == "bfloat16": |
| weight = weight.view(torch.bfloat16) |
|
|
| return weight |
|
|
|
|
| def save_offload_index(index, offload_folder): |
| if index is None or len(index) == 0: |
| |
| return |
|
|
| offload_index_file = os.path.join(offload_folder, "index.json") |
| if os.path.isfile(offload_index_file): |
| with open(offload_index_file, "r", encoding="utf-8") as f: |
| current_index = json.load(f) |
| else: |
| current_index = {} |
| current_index.update(index) |
|
|
| with open(offload_index_file, "w", encoding="utf-8") as f: |
| json.dump(current_index, f, indent=2) |
|
|
|
|
| def offload_state_dict(save_dir: Union[str, os.PathLike], state_dict: Dict[str, torch.Tensor]): |
| """ |
| Offload a state dict in a given folder. |
| |
| Args: |
| save_dir (`str` or `os.PathLike`): The directory in which to offload the state dict. |
| state_dict (`Dict[str, torch.Tensor]`): The dictionary of tensors to offload. |
| """ |
| os.makedirs(save_dir, exist_ok=True) |
| index = {} |
| for name, parameter in state_dict.items(): |
| index = offload_weight(parameter, name, save_dir, index=index) |
|
|
| |
| save_offload_index(index, save_dir) |
|
|
|
|
| class PrefixedDataset(Mapping): |
| """ |
| Will access keys in a given dataset by adding a prefix. |
| |
| Args: |
| dataset (`Mapping`): Any map with string keys. |
| prefix (`str`): A prefix to add when trying to access any element in the underlying dataset. |
| """ |
|
|
| def __init__(self, dataset: Mapping, prefix: str): |
| self.dataset = dataset |
| self.prefix = prefix |
|
|
| def __getitem__(self, key): |
| return self.dataset[f"{self.prefix}{key}"] |
|
|
| def __iter__(self): |
| return iter([key for key in self.dataset if key.startswith(self.prefix)]) |
|
|
| def __len__(self): |
| return len(self.dataset) |
|
|
|
|
| class OffloadedWeightsLoader(Mapping): |
| """ |
| A collection that loads weights stored in a given state dict or memory-mapped on disk. |
| |
| Args: |
| state_dict (`Dict[str, torch.Tensor]`, *optional*): |
| A dictionary parameter name to tensor. |
| save_folder (`str` or `os.PathLike`, *optional*): |
| The directory in which the weights are stored (by `offload_state_dict` for instance). |
| index (`Dict`, *optional*): |
| A dictionary from weight name to their information (`dtype`/ `shape` or safetensors filename). Will default |
| to the index saved in `save_folder`. |
| """ |
|
|
| def __init__( |
| self, |
| state_dict: Dict[str, torch.Tensor] = None, |
| save_folder: Optional[Union[str, os.PathLike]] = None, |
| index: Mapping = None, |
| device=None, |
| ): |
| if state_dict is None and save_folder is None: |
| raise ValueError("Need either a `state_dict` or a `save_folder` containing offloaded weights.") |
|
|
| self.state_dict = {} if state_dict is None else state_dict |
| self.save_folder = save_folder |
| if index is None and save_folder is not None: |
| with open(os.path.join(save_folder, "index.json")) as f: |
| index = json.load(f) |
| self.index = {} if index is None else index |
| self.all_keys = list(self.state_dict.keys()) |
| self.all_keys.extend([key for key in self.index if key not in self.all_keys]) |
| self.device = device |
|
|
| def __getitem__(self, key: str): |
| |
| if key in self.state_dict: |
| return self.state_dict[key] |
| weight_info = self.index[key] |
| if weight_info.get("safetensors_file") is not None: |
| if not is_safetensors_available(): |
| raise ImportError("These offloaded weights require the use of safetensors: `pip install safetensors`.") |
|
|
| if "SAFETENSORS_FAST_GPU" not in os.environ: |
| logger.info("Enabling fast loading with safetensors by setting `SAFETENSORS_FAST_GPU` to 1.") |
| os.environ["SAFETENSORS_FAST_GPU"] = "1" |
|
|
| from safetensors import safe_open |
|
|
| device = "cpu" if self.device is None else self.device |
| with safe_open(weight_info["safetensors_file"], framework="pt", device=device) as f: |
| tensor = f.get_tensor(weight_info.get("weight_name", key)) |
|
|
| if "dtype" in weight_info: |
| return tensor.to(getattr(torch, weight_info["dtype"])) |
| else: |
| return tensor |
|
|
| weight_file = os.path.join(self.save_folder, f"{key}.dat") |
| return load_offloaded_weight(weight_file, weight_info) |
|
|
| def __iter__(self): |
| return iter(self.all_keys) |
|
|
| def __len__(self): |
| return len(self.all_keys) |
|
|
|
|
| def extract_submodules_state_dict(state_dict: Dict[str, torch.Tensor], submodule_names: List[str]): |
| """ |
| Extract the sub state-dict corresponding to a list of given submodules. |
| |
| Args: |
| state_dict (`Dict[str, torch.Tensor]`): The state dict to extract from. |
| submodule_names (`List[str]`): The list of submodule names we want to extract. |
| """ |
| result = {} |
| for module_name in submodule_names: |
| |
| |
| result.update( |
| { |
| key: param |
| for key, param in state_dict.items() |
| if key == module_name or key.startswith(module_name + ".") |
| } |
| ) |
| return result |
|
|