ops.py 8.18 KB
Newer Older
comfyanonymous's avatar
comfyanonymous committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""
    This file is part of ComfyUI.
    Copyright (C) 2024 Stability AI

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <https://www.gnu.org/licenses/>.
"""

comfyanonymous's avatar
comfyanonymous committed
19
import torch
20
21
import comfy.model_management

22
23
24
def cast_to_input(weight, input, non_blocking=False):
    return weight.to(device=input.device, dtype=input.dtype, non_blocking=non_blocking)

25
26
def cast_bias_weight(s, input):
    bias = None
comfyanonymous's avatar
comfyanonymous committed
27
    non_blocking = comfy.model_management.device_should_use_non_blocking(input.device)
28
    if s.bias is not None:
29
        bias = cast_to_input(s.bias, input, non_blocking=non_blocking)
30
31
        if s.bias_function is not None:
            bias = s.bias_function(bias)
32
    weight = cast_to_input(s.weight, input, non_blocking=non_blocking)
33
34
    if s.weight_function is not None:
        weight = s.weight_function(weight)
35
36
    return weight, bias

comfyanonymous's avatar
comfyanonymous committed
37
38
39
40
class CastWeightBiasOp:
    comfy_cast_weights = False
    weight_function = None
    bias_function = None
comfyanonymous's avatar
comfyanonymous committed
41

comfyanonymous's avatar
comfyanonymous committed
42
class disable_weight_init:
comfyanonymous's avatar
comfyanonymous committed
43
    class Linear(torch.nn.Linear, CastWeightBiasOp):
comfyanonymous's avatar
comfyanonymous committed
44
45
        def reset_parameters(self):
            return None
46

47
48
49
50
51
52
53
54
55
56
        def forward_comfy_cast_weights(self, input):
            weight, bias = cast_bias_weight(self, input)
            return torch.nn.functional.linear(input, weight, bias)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)

57
58
59
60
61
62
63
64
65
66
67
68
69
70
    class Conv1d(torch.nn.Conv1d, CastWeightBiasOp):
        def reset_parameters(self):
            return None

        def forward_comfy_cast_weights(self, input):
            weight, bias = cast_bias_weight(self, input)
            return self._conv_forward(input, weight, bias)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)

comfyanonymous's avatar
comfyanonymous committed
71
    class Conv2d(torch.nn.Conv2d, CastWeightBiasOp):
comfyanonymous's avatar
comfyanonymous committed
72
73
        def reset_parameters(self):
            return None
74

75
76
77
78
79
80
81
82
83
84
        def forward_comfy_cast_weights(self, input):
            weight, bias = cast_bias_weight(self, input)
            return self._conv_forward(input, weight, bias)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)

comfyanonymous's avatar
comfyanonymous committed
85
    class Conv3d(torch.nn.Conv3d, CastWeightBiasOp):
comfyanonymous's avatar
comfyanonymous committed
86
87
        def reset_parameters(self):
            return None
comfyanonymous's avatar
comfyanonymous committed
88

89
90
91
92
93
94
95
96
97
98
        def forward_comfy_cast_weights(self, input):
            weight, bias = cast_bias_weight(self, input)
            return self._conv_forward(input, weight, bias)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)

comfyanonymous's avatar
comfyanonymous committed
99
    class GroupNorm(torch.nn.GroupNorm, CastWeightBiasOp):
comfyanonymous's avatar
comfyanonymous committed
100
101
        def reset_parameters(self):
            return None
102

103
104
105
106
107
108
109
110
111
112
113
        def forward_comfy_cast_weights(self, input):
            weight, bias = cast_bias_weight(self, input)
            return torch.nn.functional.group_norm(input, self.num_groups, weight, bias, self.eps)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)


comfyanonymous's avatar
comfyanonymous committed
114
    class LayerNorm(torch.nn.LayerNorm, CastWeightBiasOp):
comfyanonymous's avatar
comfyanonymous committed
115
116
        def reset_parameters(self):
            return None
117

118
        def forward_comfy_cast_weights(self, input):
comfyanonymous's avatar
comfyanonymous committed
119
120
121
122
123
            if self.weight is not None:
                weight, bias = cast_bias_weight(self, input)
            else:
                weight = None
                bias = None
124
125
126
127
128
129
130
131
            return torch.nn.functional.layer_norm(input, self.normalized_shape, weight, bias, self.eps)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)

comfyanonymous's avatar
comfyanonymous committed
132
    class ConvTranspose2d(torch.nn.ConvTranspose2d, CastWeightBiasOp):
comfyanonymous's avatar
comfyanonymous committed
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
        def reset_parameters(self):
            return None

        def forward_comfy_cast_weights(self, input, output_size=None):
            num_spatial_dims = 2
            output_padding = self._output_padding(
                input, output_size, self.stride, self.padding, self.kernel_size,
                num_spatial_dims, self.dilation)

            weight, bias = cast_bias_weight(self, input)
            return torch.nn.functional.conv_transpose2d(
                input, weight, bias, self.stride, self.padding,
                output_padding, self.groups, self.dilation)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)

153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
    class ConvTranspose1d(torch.nn.ConvTranspose1d, CastWeightBiasOp):
        def reset_parameters(self):
            return None

        def forward_comfy_cast_weights(self, input, output_size=None):
            num_spatial_dims = 1
            output_padding = self._output_padding(
                input, output_size, self.stride, self.padding, self.kernel_size,
                num_spatial_dims, self.dilation)

            weight, bias = cast_bias_weight(self, input)
            return torch.nn.functional.conv_transpose1d(
                input, weight, bias, self.stride, self.padding,
                output_padding, self.groups, self.dilation)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)

174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
    class Embedding(torch.nn.Embedding, CastWeightBiasOp):
        def reset_parameters(self):
            self.bias = None
            return None

        def forward_comfy_cast_weights(self, input):
            weight, bias = cast_bias_weight(self, input)
            return torch.nn.functional.embedding(input, weight, self.padding_idx, self.max_norm, self.norm_type, self.scale_grad_by_freq, self.sparse)

        def forward(self, *args, **kwargs):
            if self.comfy_cast_weights:
                return self.forward_comfy_cast_weights(*args, **kwargs)
            else:
                return super().forward(*args, **kwargs)

comfyanonymous's avatar
comfyanonymous committed
189
190
191
192
193
194
195
196
    @classmethod
    def conv_nd(s, dims, *args, **kwargs):
        if dims == 2:
            return s.Conv2d(*args, **kwargs)
        elif dims == 3:
            return s.Conv3d(*args, **kwargs)
        else:
            raise ValueError(f"unsupported dimensions: {dims}")
197

198

comfyanonymous's avatar
comfyanonymous committed
199
200
class manual_cast(disable_weight_init):
    class Linear(disable_weight_init.Linear):
201
        comfy_cast_weights = True
202

203
204
205
    class Conv1d(disable_weight_init.Conv1d):
        comfy_cast_weights = True

comfyanonymous's avatar
comfyanonymous committed
206
    class Conv2d(disable_weight_init.Conv2d):
207
        comfy_cast_weights = True
208

comfyanonymous's avatar
comfyanonymous committed
209
    class Conv3d(disable_weight_init.Conv3d):
210
        comfy_cast_weights = True
211

comfyanonymous's avatar
comfyanonymous committed
212
    class GroupNorm(disable_weight_init.GroupNorm):
213
        comfy_cast_weights = True
214

comfyanonymous's avatar
comfyanonymous committed
215
    class LayerNorm(disable_weight_init.LayerNorm):
216
        comfy_cast_weights = True
comfyanonymous's avatar
comfyanonymous committed
217
218
219

    class ConvTranspose2d(disable_weight_init.ConvTranspose2d):
        comfy_cast_weights = True
220
221
222

    class ConvTranspose1d(disable_weight_init.ConvTranspose1d):
        comfy_cast_weights = True
223
224
225

    class Embedding(disable_weight_init.Embedding):
        comfy_cast_weights = True