utils.py 2.6 KB
Newer Older
1
2
"""Utilities for selecting and loading models."""
import contextlib
3
4
from dataclasses import dataclass, field
from typing import Dict, List, Tuple, Type
5
6
7
8
9
10

import torch
from torch import nn

from vllm.config import ModelConfig
from vllm.model_executor.models import ModelRegistry
11
12
13
from vllm.model_executor.models.adapters import (as_classification_model,
                                                 as_embedding_model,
                                                 as_reward_model)
14
15
16
17
18
19
20
21
22
23
24
25


@contextlib.contextmanager
def set_default_torch_dtype(dtype: torch.dtype):
    """Sets the default torch dtype to the given dtype."""
    old_dtype = torch.get_default_dtype()
    torch.set_default_dtype(dtype)
    yield
    torch.set_default_dtype(old_dtype)


def get_model_architecture(
26
27
        model_config: ModelConfig) -> Tuple[Type[nn.Module], str]:
    architectures = getattr(model_config.hf_config, "architectures", [])
28

29
30
    # Special handling for quantized Mixtral.
    # FIXME(woosuk): This is a temporary hack.
31
32
33
    mixtral_supported = [
        "fp8", "compressed-tensors", "gptq_marlin", "awq_marlin"
    ]
34

35
    if (model_config.quantization is not None
36
            and model_config.quantization not in mixtral_supported
37
38
            and "MixtralForCausalLM" in architectures):
        architectures = ["QuantMixtralForCausalLM"]
39

40
    model_cls, arch = ModelRegistry.resolve_model_cls(architectures)
41
    if model_config.task == "embed":
42
        model_cls = as_embedding_model(model_cls)
43
44
45
46
    elif model_config.task == "classify":
        model_cls = as_classification_model(model_cls)
    elif model_config.task == "reward":
        model_cls = as_reward_model(model_cls)
47
48

    return model_cls, arch
49
50
51
52


def get_architecture_class_name(model_config: ModelConfig) -> str:
    return get_model_architecture(model_config)[1]
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75


@dataclass
class ParamMapping:
    """
    A class to handle parameter mapping for model weight loading.
    It creates a bidirectional mapping between packed parameters and their 
    constituent parts.
    """
    packed_mapping: Dict[str, List[str]]
    inverse_packed_mapping: Dict[str, Tuple[str,
                                            int]] = field(default_factory=dict)

    def __post_init__(self):
        for packed_name, sub_params in self.packed_mapping.items():
            # Skip self-contained cases (e.g., {"W_pack": ["W_pack"]})
            if len(sub_params) == 1 and sub_params[0] == packed_name:
                continue
            for index, param_name in enumerate(sub_params):
                self.inverse_packed_mapping[param_name] = (
                    packed_name,
                    index,
                )