lora.py 6.06 KB
Newer Older
1
from typing import List, Optional
2
from typing import Sequence as GenericSequence
3
4

import torch
5
import torch.types
6

7
from vllm.lora.peft_helper import PEFTHelper
8
from vllm.utils import is_pin_memory_available
9
10
11
12
13
14
15
16
17
18
19
20


class LoRALayerWeights:
    """LoRA weights for a layer composed of two low rank matrixes."""

    def __init__(
        self,
        module_name: str,
        rank: int,
        lora_alpha: int,
        lora_a: torch.Tensor,
        lora_b: torch.Tensor,
21
        bias: Optional[torch.Tensor] = None,
22
23
24
25
26
27
28
29
        embeddings_tensor: Optional[torch.Tensor] = None,
        scaling: Optional[float] = None,
    ) -> None:
        self.module_name = module_name
        self.rank = rank
        self.lora_alpha = lora_alpha
        self.lora_a = lora_a
        self.lora_b = lora_b
30
        self.bias = bias
31
32
33
34
35
36
37
38
39
40
        self.embeddings_tensor = embeddings_tensor

        if scaling is None:
            self.scaling = self.lora_alpha / self.rank
        else:
            self.scaling = scaling

    def optimize(self) -> "LoRALayerWeights":
        """Optimize the LoRA by merging the scaling into lora_b."""
        if self.scaling == 1:
41
            return self
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
        self.lora_b *= self.scaling
        self.scaling = 1
        return self

    @property
    def input_dim(self) -> int:
        return self.lora_a.shape[0]

    @property
    def output_dim(self) -> int:
        return self.lora_b.shape[1]

    @property
    def is_packed(self) -> bool:
        return False

    @property
    def extra_vocab_size(self) -> int:
        return self.embeddings_tensor.shape[
            0] if self.embeddings_tensor is not None else 0

63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
    @classmethod
    def from_config(
        cls,
        module_name: str,
        peft_helper: PEFTHelper,
        embeddings_tensor: Optional[torch.Tensor] = None,
    ) -> "LoRALayerWeights":
        return cls(
            module_name,
            peft_helper.r,
            peft_helper.lora_alpha,
            None,
            None,
            None,
            embeddings_tensor,
        )

80
81
82
83
84
85
86
87
    @classmethod
    def create_dummy_lora_weights(
            cls,
            module_name: str,
            input_dim: int,
            output_dim: int,
            rank: int,
            dtype: torch.dtype,
88
            device: torch.types.Device,
89
90
            embeddings_tensor_dim: Optional[int] = None,
            bias_enabled: Optional[bool] = False) -> "LoRALayerWeights":
91
        pin_memory = str(device) == "cpu" and is_pin_memory_available()
92
93
94
95
96
97
98
99
        lora_a = torch.zeros([input_dim, rank],
                             dtype=dtype,
                             device=device,
                             pin_memory=pin_memory)
        lora_b = torch.zeros([rank, output_dim],
                             dtype=dtype,
                             device=device,
                             pin_memory=pin_memory)
100
101
102
103
104
105
106
107
        if bias_enabled:
            bias = torch.zeros([output_dim],
                               dtype=dtype,
                               device=device,
                               pin_memory=pin_memory)
        else:
            bias = None

108
109
110
111
112
113
114
115
116
117
118
119
        embeddings_tensor = torch.rand(
            10,
            embeddings_tensor_dim,
            dtype=dtype,
            device=device,
            pin_memory=pin_memory) if embeddings_tensor_dim else None
        return cls(
            module_name,
            rank=rank,
            lora_alpha=1,
            lora_a=lora_a,
            lora_b=lora_b,
120
            bias=bias,
121
122
123
124
125
126
127
128
129
130
131
            embeddings_tensor=embeddings_tensor,
        )


class PackedLoRALayerWeights(LoRALayerWeights):
    """LoRA used for packed layers (eg. qkv_proj)."""

    def __init__(
        self,
        module_name: str,
        rank: int,
132
133
134
        lora_alphas: List[Optional[int]],
        lora_a: List[Optional[torch.Tensor]],
        lora_b: List[Optional[torch.Tensor]],
135
        bias: Optional[List[Optional[torch.Tensor]]] = None,
136
137
138
139
140
141
142
143
        scaling: Optional[List[float]] = None,
    ) -> None:
        super().__init__(
            module_name=module_name,
            rank=rank,
            lora_alpha=0,
            lora_a=lora_a,
            lora_b=lora_b,
144
            bias=bias,
145
            scaling=scaling,  # type: ignore
146
147
148
149
            embeddings_tensor=None,
        )
        self.lora_alphas = lora_alphas
        if scaling is None:
150
151
152
            self.scaling = [  # type: ignore
                lora_alpha / self.rank  # type: ignore # noqa
                for lora_alpha in self.lora_alphas
153
154
155
            ]

    @classmethod
156
    def pack(
157
        cls, loras: GenericSequence[Optional["LoRALayerWeights"]]
158
    ) -> "PackedLoRALayerWeights":
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
        """Pack a list of LoRAs into a single LoRA.

        If LoRA is None, it signifies that the submodule does not have a LoRA.
        """
        first_lora = next(lora for lora in loras if lora is not None)
        for lora in loras:
            if lora is None:
                continue
            lora.optimize()
        rank = first_lora.rank
        module_name = first_lora.module_name
        obj = cls(
            module_name,
            rank,
            [lora.lora_alpha if lora is not None else None for lora in loras],
            [lora.lora_a if lora is not None else None for lora in loras],
            [lora.lora_b if lora is not None else None for lora in loras],
176
            [lora.bias if lora is not None else None for lora in loras],
177
178
179
180
            scaling=[
                1 if lora is not None else None  # type: ignore
                for lora in loras
            ])
181
182
183
184
185
        return obj

    def optimize(self) -> "PackedLoRALayerWeights":
        """Optimize the LoRA by merging the scaling into lora_b."""
        for i in range(len(self.lora_b)):
186
            if self.scaling[i] == 1 or self.lora_b[i] is None:  # type: ignore
187
                continue
188
189
            self.lora_b[i] *= self.scaling[i]  # type: ignore
            self.scaling[i] = 1  # type: ignore
190
191
192
193
194
195
196
197
198
199
200
201
202
        return self

    @property
    def input_dim(self) -> int:
        raise NotImplementedError()

    @property
    def output_dim(self) -> int:
        raise NotImplementedError()

    @property
    def is_packed(self) -> bool:
        return True