mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-25 15:55:18 +00:00
Better fix for lowvram issue.
This commit is contained in:
parent
86a97e91fc
commit
a3cc326748
@ -393,9 +393,9 @@ class ModelPatcher:
|
|||||||
if m.comfy_cast_weights:
|
if m.comfy_cast_weights:
|
||||||
wipe_lowvram_weight(m)
|
wipe_lowvram_weight(m)
|
||||||
|
|
||||||
param = list(m.parameters())
|
if hasattr(m, "weight"):
|
||||||
if len(param) > 0:
|
|
||||||
mem_counter += comfy.model_management.module_size(m)
|
mem_counter += comfy.model_management.module_size(m)
|
||||||
|
param = list(m.parameters())
|
||||||
weight = param[0]
|
weight = param[0]
|
||||||
if weight.device == device_to:
|
if weight.device == device_to:
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user