gptq.py 8.28 KB
Newer Older
CHU Tianxiang's avatar
CHU Tianxiang committed
1
2
import enum
from enum import Enum
3
from fractions import Fraction
4
from typing import Any, Dict, List, Optional
CHU Tianxiang's avatar
CHU Tianxiang committed
5
6
7
8

import torch
from torch.nn.parameter import Parameter

9
from vllm import _custom_ops as ops
10
from vllm.model_executor.layers.linear import LinearBase, LinearMethodBase
CHU Tianxiang's avatar
CHU Tianxiang committed
11
12
from vllm.model_executor.layers.quantization.base_config import (
    QuantizationConfig)
13
from vllm.model_executor.layers.vocab_parallel_embedding import ParallelLMHead
14
from vllm.model_executor.utils import set_weight_attrs
CHU Tianxiang's avatar
CHU Tianxiang committed
15
16
17
18
19
20
21
22
23
24
25
26
27


class GPTQConfig(QuantizationConfig):
    """Config class for GPTQ.

    Reference: https://arxiv.org/abs/2210.17323
    """

    def __init__(
        self,
        weight_bits: int,
        group_size: int,
        desc_act: bool,
28
        lm_head_quantized: bool,
CHU Tianxiang's avatar
CHU Tianxiang committed
29
30
31
32
    ) -> None:
        self.weight_bits = weight_bits
        self.group_size = group_size
        self.desc_act = desc_act
33
        self.lm_head_quantized = lm_head_quantized
34
35
        self.pack_factor = Fraction(32, self.weight_bits)
        if self.weight_bits not in [2, 3, 4, 8]:
CHU Tianxiang's avatar
CHU Tianxiang committed
36
            raise ValueError(
37
38
                "Currently, only 2/3/4/8-bit weight quantization is "
                f"supported for GPTQ, but got {self.weight_bits} bits.")
CHU Tianxiang's avatar
CHU Tianxiang committed
39
40
41
42

    def __repr__(self) -> str:
        return (f"GPTQConfig(weight_bits={self.weight_bits}, "
                f"group_size={self.group_size}, "
43
44
                f"desc_act={self.desc_act}),"
                f"lm_head_quantized={self.lm_head_quantized}")
CHU Tianxiang's avatar
CHU Tianxiang committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67

    @classmethod
    def get_name(cls) -> str:
        return "gptq"

    @classmethod
    def get_supported_act_dtypes(cls) -> List[torch.dtype]:
        return [torch.half]

    @classmethod
    # Need to figure it out
    def get_min_capability(cls) -> int:
        return 60

    @classmethod
    def get_config_filenames(cls) -> List[str]:
        return ["quantize_config.json"]

    @classmethod
    def from_config(cls, config: Dict[str, Any]) -> "GPTQConfig":
        weight_bits = cls.get_from_keys(config, ["bits"])
        group_size = cls.get_from_keys(config, ["group_size"])
        desc_act = cls.get_from_keys(config, ["desc_act"])
68
69
70
        lm_head_quantized = cls.get_from_keys_or(config, ["lm_head"],
                                                 default=False)
        return cls(weight_bits, group_size, desc_act, lm_head_quantized)
CHU Tianxiang's avatar
CHU Tianxiang committed
71

72
73
    def get_quant_method(self, layer: torch.nn.Module,
                         prefix: str) -> Optional["GPTQLinearMethod"]:
74
75
        if (isinstance(layer, LinearBase) or
            (isinstance(layer, ParallelLMHead) and self.lm_head_quantized)):
76
77
            return GPTQLinearMethod(self)
        return None
CHU Tianxiang's avatar
CHU Tianxiang committed
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101

    def get_scaled_act_names(self) -> List[str]:
        return []


class ExllamaState(Enum):

    UNUSED = enum.auto()
    UNINITIALIZED = enum.auto()
    READY = enum.auto()


class GPTQLinearMethod(LinearMethodBase):
    """Linear method for GPTQ.

    Args:
        quant_config: The GPTQ quantization config.
    """

    def __init__(self, quant_config: GPTQConfig):
        self.quant_config = quant_config

    def create_weights(
        self,
102
        layer: torch.nn.Module,
CHU Tianxiang's avatar
CHU Tianxiang committed
103
        input_size_per_partition: int,
James Fleming's avatar
James Fleming committed
104
        output_partition_sizes: List[int],
CHU Tianxiang's avatar
CHU Tianxiang committed
105
106
107
        input_size: int,
        output_size: int,
        params_dtype: torch.dtype,
108
109
        **extra_weight_attrs,
    ):
CHU Tianxiang's avatar
CHU Tianxiang committed
110
111
112
113
114
115
        del output_size  # Unused.
        if input_size_per_partition % self.quant_config.group_size != 0:
            raise ValueError(
                "The input size is not aligned with the quantized "
                "weight shape. This can be caused by too large "
                "tensor parallel size.")
James Fleming's avatar
James Fleming committed
116
        output_size_per_partition = sum(output_partition_sizes)
117
118
        if (output_size_per_partition % self.quant_config.pack_factor.numerator
                != 0):
CHU Tianxiang's avatar
CHU Tianxiang committed
119
120
121
122
123
124
125
126
127
128
129
130
            raise ValueError(
                "The output size is not aligned with the quantized "
                "weight shape. This can be caused by too large "
                "tensor parallel size.")

        if self.quant_config.group_size != -1:
            group_size = self.quant_config.group_size
        else:
            group_size = input_size
        exllama_state = ExllamaState.UNINITIALIZED
        scale_and_zero_size = input_size // group_size
        scale_and_zero_input_dim = None
131
132
        if (input_size != input_size_per_partition
                and self.quant_config.group_size != -1):
CHU Tianxiang's avatar
CHU Tianxiang committed
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
            # For act-order models, we cannot use Exllama for row parallel layer
            if self.quant_config.desc_act:
                exllama_state = ExllamaState.UNUSED
            else:
                # we need to partition qzeros and scales for exllama kernel
                scale_and_zero_size = input_size_per_partition // group_size
                scale_and_zero_input_dim = 0

        qweight = Parameter(
            torch.empty(
                input_size_per_partition // self.quant_config.pack_factor,
                output_size_per_partition,
                dtype=torch.int32,
            ),
            requires_grad=False,
        )
        set_weight_attrs(
            qweight, {
                "input_dim": 0,
                "output_dim": 1,
                "packed_dim": 0,
                "pack_factor": self.quant_config.pack_factor,
            })
        g_idx = Parameter(
            torch.tensor(
                [
                    i // self.quant_config.group_size
                    for i in range(input_size_per_partition)
                ],
                dtype=torch.int32,
            ),
            requires_grad=False,
        )
        # Ignore warning from fused linear layers such as QKVParallelLinear.
        set_weight_attrs(g_idx, {"input_dim": 0, "ignore_warning": True})
        qzeros = Parameter(
            torch.empty(
                scale_and_zero_size,
                output_size_per_partition // self.quant_config.pack_factor,
                dtype=torch.int32,
            ),
            requires_grad=False,
        )
        set_weight_attrs(
            qzeros, {
                "input_dim": scale_and_zero_input_dim,
                "output_dim": 1,
                "packed_dim": 1,
                "pack_factor": self.quant_config.pack_factor,
            })
        scales = Parameter(
            torch.empty(
                scale_and_zero_size,
                output_size_per_partition,
                dtype=params_dtype,
            ),
            requires_grad=False,
        )
        set_weight_attrs(scales, {
            "input_dim": scale_and_zero_input_dim,
            "output_dim": 1,
        })
195
196
197
198
199
200
201
202
203
204
205

        layer.register_parameter("qweight", qweight)
        set_weight_attrs(qweight, extra_weight_attrs)
        layer.register_parameter("g_idx", g_idx)
        set_weight_attrs(g_idx, extra_weight_attrs)
        layer.register_parameter("qzeros", qzeros)
        set_weight_attrs(qzeros, extra_weight_attrs)
        layer.register_parameter("scales", scales)
        set_weight_attrs(scales, extra_weight_attrs)

        layer.exllama_state = exllama_state
CHU Tianxiang's avatar
CHU Tianxiang committed
206

207
    def process_weights_after_loading(self, layer: torch.nn.Module) -> None:
CHU Tianxiang's avatar
CHU Tianxiang committed
208
209
        # exllama needs to shuffle the weight after the weight is loaded
        # here we do the shuffle on first forward pass
210
        if layer.exllama_state == ExllamaState.UNINITIALIZED:
CHU Tianxiang's avatar
CHU Tianxiang committed
211
            if self.quant_config.desc_act:
212
                layer.g_idx.data = torch.argsort(layer.g_idx).to(torch.int)
CHU Tianxiang's avatar
CHU Tianxiang committed
213
            else:
214
                layer.g_idx.data = torch.empty((0, ),
215
                                               dtype=torch.int,
216
217
218
                                               device=layer.g_idx.device)
            layer.exllama_state = ExllamaState.READY
            ops.gptq_shuffle(layer.qweight, layer.g_idx,
219
                             self.quant_config.weight_bits)
220
221
222
223
224
225
226
227

    def apply(self,
              layer: torch.nn.Module,
              x: torch.Tensor,
              bias: Optional[torch.Tensor] = None) -> torch.Tensor:
        out_shape = x.shape[:-1] + (layer.qweight.shape[-1], )
        reshaped_x = x.reshape(-1, x.shape[-1])

228
229
230
        output = ops.gptq_gemm(reshaped_x, layer.qweight, layer.qzeros,
                               layer.scales, layer.g_idx,
                               layer.exllama_state == ExllamaState.READY,
231
                               self.quant_config.weight_bits)
CHU Tianxiang's avatar
CHU Tianxiang committed
232
        if bias is not None:
233
            output.add_(bias)
CHU Tianxiang's avatar
CHU Tianxiang committed
234
        return output.reshape(out_shape)