activation.py 5.86 KB
Newer Older
1
"""Custom activation functions."""
2
import math
3
4
from typing import Optional

Woosuk Kwon's avatar
Woosuk Kwon committed
5
6
import torch
import torch.nn as nn
7
import torch.nn.functional as F
Woosuk Kwon's avatar
Woosuk Kwon committed
8

9
from vllm._C import ops
10
from vllm.model_executor.layers.quantization import QuantizationConfig
11
12
13
14
from vllm.model_executor.parallel_utils.parallel_state import (
    get_tensor_model_parallel_rank, get_tensor_model_parallel_world_size)
from vllm.model_executor.parallel_utils.utils import divide
from vllm.model_executor.utils import set_weight_attrs
Woosuk Kwon's avatar
Woosuk Kwon committed
15
16
17


class SiluAndMul(nn.Module):
18
19
    """An activation function for SwiGLU.

20
    The function computes x -> silu(x[:d]) * x[d:] where d = x.shape[-1] // 2.
Woosuk Kwon's avatar
Woosuk Kwon committed
21

22
    Shapes:
23
24
        x: (num_tokens, 2 * d) or (batch_size, seq_len, 2 * d)
        return: (num_tokens, d) or (batch_size, seq_len, d)
25
    """
Woosuk Kwon's avatar
Woosuk Kwon committed
26

27
28
29
30
31
    def _forward(self, x: torch.Tensor) -> torch.Tensor:
        """PyTorch-native implementation equivalent to forward()."""
        d = x.shape[-1] // 2
        return F.silu(x[..., :d]) * x[..., d:]

32
    def forward(self, x: torch.Tensor) -> torch.Tensor:
33
34
35
        d = x.shape[-1] // 2
        output_shape = (x.shape[:-1] + (d, ))
        out = torch.empty(output_shape, dtype=x.dtype, device=x.device)
36
        ops.silu_and_mul(out, x)
Woosuk Kwon's avatar
Woosuk Kwon committed
37
        return out
38
39


40
41
42
43
44
45
46
47
48
49
class GeluAndMul(nn.Module):
    """An activation function for GeGLU.

    The function computes x -> GELU(x[:d]) * x[d:] where d = x.shape[-1] // 2.

    Shapes:
        x: (batch_size, seq_len, 2 * d) or (num_tokens, 2 * d)
        return: (batch_size, seq_len, d) or (num_tokens, d)
    """

50
51
52
53
54
55
    def __init__(self, approximate: str = "none"):
        super().__init__()
        self.approximate = approximate
        if approximate not in ("none", "tanh"):
            raise ValueError(f"Unknown approximate mode: {approximate}")

56
57
58
    def _forward(self, x: torch.Tensor) -> torch.Tensor:
        """PyTorch-native implementation equivalent to forward()."""
        d = x.shape[-1] // 2
59
        return F.gelu(x[..., :d], approximate=self.approximate) * x[..., d:]
60
61
62
63
64

    def forward(self, x: torch.Tensor) -> torch.Tensor:
        d = x.shape[-1] // 2
        output_shape = (x.shape[:-1] + (d, ))
        out = torch.empty(output_shape, dtype=x.dtype, device=x.device)
65
66
67
68
        if self.approximate == "none":
            ops.gelu_and_mul(out, x)
        elif self.approximate == "tanh":
            ops.gelu_tanh_and_mul(out, x)
69
70
71
        return out


72
73
class NewGELU(nn.Module):

74
75
76
77
78
79
    def _forward(self, x: torch.Tensor) -> torch.Tensor:
        """PyTorch-native implementation equivalent to forward()."""
        c = math.sqrt(2.0 / math.pi)
        return 0.5 * x * (1.0 + torch.tanh(c *
                                           (x + 0.044715 * torch.pow(x, 3.0))))

80
    def forward(self, x: torch.Tensor) -> torch.Tensor:
81
        out = torch.empty_like(x)
82
        ops.gelu_new(out, x)
83
84
85
86
87
        return out


class FastGELU(nn.Module):

88
89
90
91
92
    def _forward(self, x: torch.Tensor) -> torch.Tensor:
        """PyTorch-native implementation equivalent to forward()."""
        return 0.5 * x * (1.0 + torch.tanh(x * 0.7978845608 *
                                           (1.0 + 0.044715 * x * x)))

93
    def forward(self, x: torch.Tensor) -> torch.Tensor:
94
        out = torch.empty_like(x)
95
        ops.gelu_fast(out, x)
96
97
98
        return out


99
100
101
102
103
104
105
106
107
class ScaledActivation(nn.Module):
    """An activation function with post-scale parameters.

    This is used for some quantization methods like AWQ.
    """

    def __init__(
        self,
        act_module: nn.Module,
108
109
110
        intermediate_size: int,
        input_is_parallel: bool = True,
        params_dtype: Optional[torch.dtype] = None,
111
112
113
    ):
        super().__init__()
        self.act = act_module
114
        self.input_is_parallel = input_is_parallel
115
116
117
118
119
120
121
122
        if input_is_parallel:
            tp_size = get_tensor_model_parallel_world_size()
            intermediate_size_per_partition = divide(intermediate_size,
                                                     tp_size)
        else:
            intermediate_size_per_partition = intermediate_size
        if params_dtype is None:
            params_dtype = torch.get_default_dtype()
123
        self.scales = nn.Parameter(
124
            torch.empty(intermediate_size_per_partition, dtype=params_dtype))
125
        set_weight_attrs(self.scales, {"weight_loader": self.weight_loader})
126

127
    def forward(self, x: torch.Tensor) -> torch.Tensor:
128
129
        return self.act(x) / self.scales

130
131
    def weight_loader(self, param: nn.Parameter, loaded_weight: torch.Tensor):
        param_data = param.data
132
133
134
135
136
        if self.input_is_parallel:
            tp_rank = get_tensor_model_parallel_rank()
            shard_size = param_data.shape[0]
            start_idx = tp_rank * shard_size
            loaded_weight = loaded_weight.narrow(0, start_idx, shard_size)
137
138
139
        assert param_data.shape == loaded_weight.shape
        param_data.copy_(loaded_weight)

140

141
142
143
144
145
146
147
148
149
_ACTIVATION_REGISTRY = {
    "gelu": nn.GELU(),
    "gelu_fast": FastGELU(),
    "gelu_new": NewGELU(),
    "gelu_pytorch_tanh": nn.GELU(approximate="tanh"),
    "relu": nn.ReLU(),
}


150
151
152
153
def get_act_fn(
    act_fn_name: str,
    quant_config: Optional[QuantizationConfig] = None,
    intermediate_size: Optional[int] = None,
154
155
    input_is_parallel: bool = True,
    params_dtype: Optional[torch.dtype] = None,
156
) -> nn.Module:
157
    """Get an activation function by name."""
158
159
160
161
162
163
    act_fn_name = act_fn_name.lower()
    if act_fn_name not in _ACTIVATION_REGISTRY:
        raise ValueError(
            f"Activation function {act_fn_name!r} is not supported.")

    act_fn = _ACTIVATION_REGISTRY[act_fn_name]
164
165
    if (quant_config is not None
            and act_fn_name in quant_config.get_scaled_act_names()):
166
167
168
        if intermediate_size is None:
            raise ValueError("intermediate_size must be specified for scaled "
                             "activation functions.")
169
170
        return ScaledActivation(act_fn, intermediate_size, input_is_parallel,
                                params_dtype)
171
    return act_fn