mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-25 15:55:18 +00:00
Let unet wrapper functions have .to attributes.
This commit is contained in:
parent
5e885bd9c8
commit
8cc75c64ff
@ -107,6 +107,10 @@ class ModelPatcher:
|
|||||||
for k in patch_list:
|
for k in patch_list:
|
||||||
if hasattr(patch_list[k], "to"):
|
if hasattr(patch_list[k], "to"):
|
||||||
patch_list[k] = patch_list[k].to(device)
|
patch_list[k] = patch_list[k].to(device)
|
||||||
|
if "unet_wrapper_function" in self.model_options:
|
||||||
|
wrap_func = self.model_options["unet_wrapper_function"]
|
||||||
|
if hasattr(wrap_func, "to"):
|
||||||
|
self.model_options["unet_wrapper_function"] = wrap_func.to(device)
|
||||||
|
|
||||||
def model_dtype(self):
|
def model_dtype(self):
|
||||||
if hasattr(self.model, "get_dtype"):
|
if hasattr(self.model, "get_dtype"):
|
||||||
|
Loading…
Reference in New Issue
Block a user