Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new release big workflow slow and not work #7060

Open
xueqing0622 opened this issue Mar 4, 2025 · 10 comments
Open

new release big workflow slow and not work #7060

xueqing0622 opened this issue Mar 4, 2025 · 10 comments
Labels
Custom Nodes Bug Bugs caused by downstream custom nodes

Comments

@xueqing0622
Copy link

xueqing0622 commented Mar 4, 2025

new release big workflow slow and not work, maybe the new frontend make it too slow and not work

Image

must back to 9af6320, and big workflow worknow,
Image

Image

@xueqing0622 xueqing0622 added the Potential Bug User is reporting a bug. This should be tested. label Mar 4, 2025
@LukeG89
Copy link

LukeG89 commented Mar 4, 2025

That frontend conflict is usually caused by an extension custom node, probably mixlab. Try disabling it.

@xueqing0622
Copy link
Author

xueqing0622 commented Mar 4, 2025

Thx a lot, LukeG89 .

@xueqing0622
Copy link
Author

xueqing0622 commented Mar 4, 2025

not still not work good, mixlab fixed some bug, but still not work well if save as or switch workflow.

Image

@ltdrdata
Copy link
Collaborator

ltdrdata commented Mar 4, 2025

disable all custom nodes and refresh the browser

@zhangwenzhao
Copy link

@xueqing0622 Encountered the same problem, can you solve it?

@xueqing0622
Copy link
Author

xueqing0622 commented Mar 5, 2025

I don't disable custom node, find the old version frontend
https://github.com/Comfy-Org/ComfyUI_frontend/releases
and copy the old frontend version to
(your comfyui path)\python_embeded\Lib\site-packages\comfyui_frontend_package\static

@zhangwenzhao
Copy link

Ok thanks

@ltdrdata
Copy link
Collaborator

ltdrdata commented Mar 5, 2025

Disabling custom nodes is intended to identify whether the conflict is occurring due to a custom node.

@xueqing0622
Copy link
Author

I have time to try which custom nodes conflict with frontend, but After update the latest version of comfyui,

Image

the web can't show now! always circle turn around.

Image

@hho2002
Copy link

hho2002 commented Mar 5, 2025

93fedd9

This commit invalidates the custom node comfyui-faster-loading

ComfyUI/comfy/utils.py

Lines 54 to 60 in a80bc82

try:
with safetensors.safe_open(ckpt, framework="pt", device=device.type) as f:
sd = {}
for k in f.keys():
sd[k] = f.get_tensor(k)
if return_metadata:
metadata = f.metadata()

Temporary fix:

        try:
            sd = safetensors.torch.load_file(ckpt, device=device.type)
            if return_metadata:
                with safetensors.safe_open(ckpt, framework="pt", device=device.type) as f:
                    metadata = f.metadata()

@huchenlei huchenlei added Custom Nodes Bug Bugs caused by downstream custom nodes and removed Potential Bug User is reporting a bug. This should be tested. labels Mar 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Custom Nodes Bug Bugs caused by downstream custom nodes
Projects
None yet
Development

No branches or pull requests

6 participants