mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +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:
|
||||
wipe_lowvram_weight(m)
|
||||
|
||||
param = list(m.parameters())
|
||||
if len(param) > 0:
|
||||
if hasattr(m, "weight"):
|
||||
mem_counter += comfy.model_management.module_size(m)
|
||||
param = list(m.parameters())
|
||||
weight = param[0]
|
||||
if weight.device == device_to:
|
||||
continue
|
||||
|
Loading…
Reference in New Issue
Block a user