Fix typo in lowvram patcher (#3209)

This commit is contained in:
kk-89 2024-04-05 09:02:13 -07:00 committed by GitHub
parent ea9ac9d30b
commit 38ed2da2dd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -287,7 +287,7 @@ class ModelPatcher:
if weight_key in self.patches:
m.weight_function = LowVramPatch(weight_key, self)
if bias_key in self.patches:
m.bias_function = LowVramPatch(weight_key, self)
m.bias_function = LowVramPatch(bias_key, self)
m.prev_comfy_cast_weights = m.comfy_cast_weights
m.comfy_cast_weights = True