You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everyone,
I have the same message in all my workflows.
I think is something wrong happened with cuda.
I tried all the suggested steps:
CUDA SETUP: Solution 1a): Find the cuda runtime library via: find / -name libcudart.so 2>/dev/null2024-12-14T19:38:02.799446 -
I had response:
The filename, directory name, or volume label syntax is incorrect.
I tried the 2a suggested solution:
2024-12-14T21:56:43.799976 - CUDA SETUP: Solution 2b): Install desired CUDA version to desired location. The syntax is bash cuda_install.sh CUDA_VERSION PATH_TO_INSTALL_INTO.2024-12-14T21:56:43.799976 -
2024-12-14T21:56:43.799976 - CUDA SETUP: Solution 2b): For example, "bash cuda_install.sh 113 ~/local/" will download CUDA 11.3 and install into the folder ~/local2024-12-14T21:56:43.799976 -
2024-12-14T21:56:43.862485 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\utils\import_utils.py", line 853, in _get_module
return importlib.import_module("." + module_name, self.__name__)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "importlib\__init__.py", line 126, in import_module
File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
File "<frozen importlib._bootstrap>", line 1126, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\models\autoencoders\__init__.py", line 1, in <module>
from .autoencoder_asym_kl import AsymmetricAutoencoderKL
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\models\autoencoders\autoencoder_asym_kl.py", line 22, in <module>
from ..modeling_utils import ModelMixin
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\models\modeling_utils.py", line 35, in <module>
from ..quantizers import DiffusersAutoQuantizer, DiffusersQuantizer
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\quantizers\__init__.py", line 15, in <module>
from .auto import DiffusersAutoQuantizer
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\quantizers\auto.py", line 21, in <module>
from .bitsandbytes import BnB4BitDiffusersQuantizer, BnB8BitDiffusersQuantizer
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\quantizers\bitsandbytes\__init__.py", line 2, in <module>
from .utils import dequantize_and_replace, dequantize_bnb_weight, replace_with_bnb_linear
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\quantizers\bitsandbytes\utils.py", line 32, in <module>
import bitsandbytes as bnb
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\__init__.py", line 6, in <module>
from . import cuda_setup, utils, research
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\research\__init__.py", line 1, in <module>
from . import nn
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\research\nn\__init__.py", line 1, in <module>
from .modules import LinearFP8Mixed, LinearFP8Global
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\research\nn\modules.py", line 8, in <module>
from bitsandbytes.optim import GlobalOptimManager
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\optim\__init__.py", line 6, in <module>
from bitsandbytes.cextension import COMPILED_WITH_CUDA
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\cextension.py", line 20, in <module>
raise RuntimeError('''
RuntimeError:
CUDA Setup failed despite GPU being available. Please run the following command to get more information:
python -m bitsandbytes
Inspect the output of the command and see if you can locate CUDA libraries. You might need to add them
to your LD_LIBRARY_PATH. If you suspect a bug, please take the information from python -m bitsandbytes
and open an issue at: https://github.com/TimDettmers/bitsandbytes/issues
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2037, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IDM-VTON\__init__.py", line 2, in <module>
from .src.nodes_mappings import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IDM-VTON\src\nodes_mappings.py", line 1, in <module>
from .nodes.pipeline_loader import PipelineLoader
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IDM-VTON\src\nodes\pipeline_loader.py", line 6, in <module>
from diffusers import AutoencoderKL, DDPMScheduler
File "<frozen importlib._bootstrap>", line 1229, in _handle_fromlist
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\utils\import_utils.py", line 844, in __getattr__
value = getattr(module, name)
^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\utils\import_utils.py", line 843, in __getattr__
module = self._get_module(self._class_to_module[name])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\utils\import_utils.py", line 855, in _get_module
raise RuntimeError(
RuntimeError: Failed to import diffusers.models.autoencoders.autoencoder_kl because of the following error (look up to see its traceback):
CUDA Setup failed despite GPU being available. Please run the following command to get more information:
python -m bitsandbytes
Inspect the output of the command and see if you can locate CUDA libraries. You might need to add them
to your LD_LIBRARY_PATH. If you suspect a bug, please take the information from python -m bitsandbytes
and open an issue at: https://github.com/TimDettmers/bitsandbytes/issues
2024-12-14T21:56:43.862485 - Cannot import D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IDM-VTON module for custom nodes: Failed to import diffusers.models.autoencoders.autoencoder_kl because of the following error (look up to see its traceback):
CUDA Setup failed despite GPU being available. Please run the following command to get more information:
python -m bitsandbytes
Inspect the output of the command and see if you can locate CUDA libraries. You might need to add them
to your LD_LIBRARY_PATH. If you suspect a bug, please take the information from python -m bitsandbytes
and open an issue at: https://github.com/TimDettmers/bitsandbytes/issues
2024-12-14T21:56:43.862485 - ### Loading: ComfyUI-Impact-Pack (V7.14)2024-12-14T21:56:43.862485 -
2024-12-14T21:56:43.862485 - [Impact Pack] Wildcards loading done.2024-12-14T21:56:43.878112 -
2024-12-14T21:56:43.893738 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2037, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inference-Core-Nodes\__init__.py", line 1, in <module>
from inference_core_nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
ModuleNotFoundError: No module named 'inference_core_nodes'
2024-12-14T21:56:43.893738 - Cannot import D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inference-Core-Nodes module for custom nodes: No module named 'inference_core_nodes'
2024-12-14T21:56:54.654324 - ### Loading: ComfyUI-Manager (V2.55.1)2024-12-14T21:56:54.654324 -
2024-12-14T21:56:55.748218 - ### ComfyUI Version: v0.3.7 | Released on '2024-12-04'2024-12-14T21:56:55.748218 -
2024-12-14T21:56:56.560824 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json2024-12-14T21:56:56.560824 -
2024-12-14T21:56:56.654586 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json2024-12-14T21:56:56.654586 -
2024-12-14T21:56:56.732721 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json2024-12-14T21:56:56.732721 -
2024-12-14T21:56:56.810856 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2024-12-14T21:56:56.810856 -
2024-12-14T21:56:56.873364 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json2024-12-14T21:56:56.873364 -
2024-12-14T21:57:06.663621 - --------------
2024-12-14T21:57:06.663621 - �[91m ### Mixlab Nodes: �[93mLoaded
2024-12-14T21:57:06.757374 - json_repair## OK2024-12-14T21:57:06.757374 -
2024-12-14T21:57:06.835698 - ChatGPT.available True
2024-12-14T21:57:06.866773 - edit_mask.available True
2024-12-14T21:57:06.866773 - simple_lama_inpainting## OK2024-12-14T21:57:06.866773 -
2024-12-14T21:57:06.882400 - ## lama torchscript model not found: D:\ComfyUI_windows_portable\ComfyUI\models\lama\big-lama.pt,pls download from https://github.com/enesmsahin/simple-lama-inpainting/releases/download/v0.1.0/big-lama.pt2024-12-14T21:57:06.882400 -
2024-12-14T21:57:06.882400 - LaMaInpainting.available True
2024-12-14T21:57:07.976293 - ## clip_interrogator_model not found: D:\ComfyUI_windows_portable\ComfyUI\models\clip_interrogator\Salesforce\blip-image-captioning-base, pls download from https://huggingface.co/Salesforce/blip-image-captioning-base2024-12-14T21:57:07.976293 -
2024-12-14T21:57:07.976293 - ClipInterrogator.available True
2024-12-14T21:57:08.773272 - ## text_generator_model not found: D:\ComfyUI_windows_portable\ComfyUI\models\prompt_generator\text2image-prompt-generator, pls download from https://huggingface.co/succinctly/text2image-prompt-generator/tree/main2024-12-14T21:57:08.773272 -
2024-12-14T21:57:08.773272 - ## zh_en_model not found: D:\ComfyUI_windows_portable\ComfyUI\models\prompt_generator\opus-mt-zh-en, pls download from https://huggingface.co/Helsinki-NLP/opus-mt-zh-en/tree/main2024-12-14T21:57:08.773272 -
2024-12-14T21:57:08.773272 - PromptGenerate.available True
2024-12-14T21:57:08.773272 - ChinesePrompt.available True
2024-12-14T21:57:08.773272 - RembgNode_.available True
2024-12-14T21:57:08.804526 - ffmpeg could not be found. Using ffmpeg from imageio-ffmpeg.2024-12-14T21:57:08.804526 -
2024-12-14T21:57:18.430784 - TripoSR.available
2024-12-14T21:57:18.462038 - MiniCPMNode.available
2024-12-14T21:57:19.180882 - Scenedetect.available
2024-12-14T21:57:19.680947 - FishSpeech.available False
2024-12-14T21:57:19.821592 - SenseVoice.available
2024-12-14T21:57:20.837349 - Whisper.available False
2024-12-14T21:57:20.852976 - fal-client## OK2024-12-14T21:57:20.852976 -
2024-12-14T21:57:20.962356 - FalVideo.available
2024-12-14T21:57:20.962356 - �[93m -------------- �[0m
2024-12-14T21:57:22.525069 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2037, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 936, in exec_module
File "<frozen importlib._bootstrap_external>", line 1073, in get_code
File "<frozen importlib._bootstrap_external>", line 1130, in get_data
FileNotFoundError: [Errno 2] No such file or directory: 'D:\\ComfyUI_windows_portable\\ComfyUI\\custom_nodes\\ComfyUI-Vextra-Nodes\\__init__.py'
2024-12-14T21:57:22.525069 - Cannot import D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Vextra-Nodes module for custom nodes: [Errno 2] No such file or directory: 'D:\\ComfyUI_windows_portable\\ComfyUI\\custom_nodes\\ComfyUI-Vextra-Nodes\\__init__.py'
2024-12-14T21:57:22.650086 - 2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.650086 - ===================================BUG REPORT===================================2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.650086 - ================================================================================2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.650086 - CUDA_SETUP: WARNING! libcudart.so not found in any environmental path. Searching in backup paths...2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.650086 - The following directories listed in your path were found to be non-existent: {WindowsPath('/usr/local/cuda/lib64')}2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.650086 - DEBUG: Possible options found for libcudart.so: set()2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.650086 - CUDA SETUP: PyTorch settings found: CUDA_VERSION=121, Highest Compute Capability: 8.6.2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.650086 - CUDA SETUP: To manually override the PyTorch CUDA version please see:https://github.com/TimDettmers/bitsandbytes/blob/main/how_to_use_nonpytorch_cuda.md2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.650086 - CUDA SETUP: Loading binary D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\libbitsandbytes_cuda121.so...2024-12-14T21:57:22.650086 -
2024-12-14T21:57:22.665712 - argument of type 'WindowsPath' is not iterable2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Problem: The main issue seems to be that the main CUDA runtime library was not detected.2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Solution 1: To solve the issue the libcudart.so location needs to be added to the LD_LIBRARY_PATH variable2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Solution 1a): Find the cuda runtime library via: find / -name libcudart.so 2>/dev/null2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Solution 1b): Once the library is found add it to the LD_LIBRARY_PATH: export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:FOUND_PATH_FROM_1a2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Solution 1c): For a permanent solution add the export from 1b into your .bashrc file, located at ~/.bashrc2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Solution 2: If no library was found in step 1a) you need to install CUDA.2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Solution 2a): Download CUDA install script: wget https://raw.githubusercontent.com/TimDettmers/bitsandbytes/main/cuda_install.sh2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Solution 2b): Install desired CUDA version to desired location. The syntax is bash cuda_install.sh CUDA_VERSION PATH_TO_INSTALL_INTO.2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.665712 - CUDA SETUP: Solution 2b): For example, "bash cuda_install.sh 113 ~/local/" will download CUDA 11.3 and install into the folder ~/local2024-12-14T21:57:22.665712 -
2024-12-14T21:57:22.743848 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\utils\import_utils.py", line 853, in _get_module
return importlib.import_module("." + module_name, self.__name__)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "importlib\__init__.py", line 126, in import_module
File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
File "<frozen importlib._bootstrap>", line 1126, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\models\autoencoders\__init__.py", line 1, in <module>
from .autoencoder_asym_kl import AsymmetricAutoencoderKL
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\models\autoencoders\autoencoder_asym_kl.py", line 22, in <module>
from ..modeling_utils import ModelMixin
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\models\modeling_utils.py", line 35, in <module>
from ..quantizers import DiffusersAutoQuantizer, DiffusersQuantizer
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\quantizers\__init__.py", line 15, in <module>
from .auto import DiffusersAutoQuantizer
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\quantizers\auto.py", line 21, in <module>
from .bitsandbytes import BnB4BitDiffusersQuantizer, BnB8BitDiffusersQuantizer
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\quantizers\bitsandbytes\__init__.py", line 2, in <module>
from .utils import dequantize_and_replace, dequantize_bnb_weight, replace_with_bnb_linear
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\quantizers\bitsandbytes\utils.py", line 32, in <module>
import bitsandbytes as bnb
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\__init__.py", line 6, in <module>
from . import cuda_setup, utils, research
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\research\__init__.py", line 1, in <module>
from . import nn
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\research\nn\__init__.py", line 1, in <module>
from .modules import LinearFP8Mixed, LinearFP8Global
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\research\nn\modules.py", line 8, in <module>
from bitsandbytes.optim import GlobalOptimManager
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\optim\__init__.py", line 6, in <module>
from bitsandbytes.cextension import COMPILED_WITH_CUDA
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\bitsandbytes\cextension.py", line 20, in <module>
raise RuntimeError('''
RuntimeError:
CUDA Setup failed despite GPU being available. Please run the following command to get more information:
python -m bitsandbytes
Inspect the output of the command and see if you can locate CUDA libraries. You might need to add them
to your LD_LIBRARY_PATH. If you suspect a bug, please take the information from python -m bitsandbytes
and open an issue at: https://github.com/TimDettmers/bitsandbytes/issues
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2037, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_CatVTON_Wrapper\__init__.py", line 31, in <module>
imported_module = importlib.import_module(".py.{}".format(name), __name__)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "importlib\__init__.py", line 126, in import_module
File "<frozen importlib._bootstrap>", line 1204, in _gcd_import
File "<frozen importlib._bootstrap>", line 1176, in _find_and_load
File "<frozen importlib._bootstrap>", line 1147, in _find_and_load_unlocked
File "<frozen importlib._bootstrap>", line 690, in _load_unlocked
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_CatVTON_Wrapper\py\cat_vton.py", line 3, in <module>
from .func import *
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_CatVTON_Wrapper\py\func.py", line 19, in <module>
from .catvton.pipeline import CatVTONPipeline
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_CatVTON_Wrapper\py\catvton\pipeline.py", line 5, in <module>
from diffusers import AutoencoderKL, UNet2DConditionModel, DDIMScheduler
File "<frozen importlib._bootstrap>", line 1229, in _handle_fromlist
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\utils\import_utils.py", line 844, in __getattr__
value = getattr(module, name)
^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\utils\import_utils.py", line 843, in __getattr__
module = self._get_module(self._class_to_module[name])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\diffusers\utils\import_utils.py", line 855, in _get_module
raise RuntimeError(
RuntimeError: Failed to import diffusers.models.autoencoders.autoencoder_kl because of the following error (look up to see its traceback):
CUDA Setup failed despite GPU being available. Please run the following command to get more information:
python -m bitsandbytes
Inspect the output of the command and see if you can locate CUDA libraries. You might need to add them
to your LD_LIBRARY_PATH. If you suspect a bug, please take the information from python -m bitsandbytes
and open an issue at: https://github.com/TimDettmers/bitsandbytes/issues
2024-12-14T21:57:22.743848 - Cannot import D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_CatVTON_Wrapper module for custom nodes: Failed to import diffusers.models.autoencoders.autoencoder_kl because of the following error (look up to see its traceback):
CUDA Setup failed despite GPU being available. Please run the following command to get more information:
python -m bitsandbytes
Inspect the output of the command and see if you can locate CUDA libraries. You might need to add them
to your LD_LIBRARY_PATH. If you suspect a bug, please take the information from python -m bitsandbytes
and open an issue at: https://github.com/TimDettmers/bitsandbytes/issues
2024-12-14T21:57:23.540827 - ------------------------------------------2024-12-14T21:57:23.540827 -
2024-12-14T21:57:23.540827 - �[34mComfyroll Studio v1.76 : �[92m 175 Nodes Loaded�[0m2024-12-14T21:57:23.540827 -
2024-12-14T21:57:23.540827 - ------------------------------------------2024-12-14T21:57:23.540827 -
2024-12-14T21:57:23.540827 - ** For changes, please see patch notes at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/blob/main/Patch_Notes.md2024-12-14T21:57:23.540827 -
2024-12-14T21:57:23.540827 - ** For help, please see the wiki at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki2024-12-14T21:57:23.540827 -
2024-12-14T21:57:23.540827 - ------------------------------------------2024-12-14T21:57:23.540827 -
2024-12-14T21:57:24.103628 - # 😺dzNodes: LayerStyle -> �[1;33mCannot import name 'guidedFilter' from 'cv2.ximgproc'
A few nodes cannot works properly, while most nodes are not affected. Please REINSTALL package 'opencv-contrib-python'.
For detail refer to �[4mhttps://github.com/chflame163/ComfyUI_LayerStyle/issues/5�[0m�[m2024-12-14T21:57:24.103628 -
2024-12-14T21:57:25.728613 - # 😺dzNodes: LayerStyle -> �[1;33mCannot import name 'guidedFilter' from 'cv2.ximgproc'
A few nodes cannot works properly, while most nodes are not affected. Please REINSTALL package 'opencv-contrib-python'.
For detail refer to �[4mhttps://github.com/chflame163/ComfyUI_LayerStyle/issues/5�[0m�[m2024-12-14T21:57:25.728613 -
2024-12-14T21:57:30.666759 - �[36;20m[comfy_mtb] | INFO -> loaded �[96m87�[0m nodes successfuly�[0m
2024-12-14T21:57:30.666759 - �[36;20m[comfy_mtb] | INFO -> Some nodes (5) could not be loaded. This can be ignored, but go to http://127.0.0.1:8188/mtb if you want more information.�[0m
2024-12-14T21:57:30.713640 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2037, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 936, in exec_module
File "<frozen importlib._bootstrap_external>", line 1073, in get_code
File "<frozen importlib._bootstrap_external>", line 1130, in get_data
FileNotFoundError: [Errno 2] No such file or directory: 'D:\\ComfyUI_windows_portable\\ComfyUI\\custom_nodes\\ControlNet-LLLite-ComfyUI\\__init__.py'
2024-12-14T21:57:30.713640 - Cannot import D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ControlNet-LLLite-ComfyUI module for custom nodes: [Errno 2] No such file or directory: 'D:\\ComfyUI_windows_portable\\ComfyUI\\custom_nodes\\ControlNet-LLLite-ComfyUI\\__init__.py'
2024-12-14T21:57:31.057426 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2037, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 936, in exec_module
File "<frozen importlib._bootstrap_external>", line 1073, in get_code
File "<frozen importlib._bootstrap_external>", line 1130, in get_data
FileNotFoundError: [Errno 2] No such file or directory: 'D:\\ComfyUI_windows_portable\\ComfyUI\\custom_nodes\\detectron2\\__init__.py'
2024-12-14T21:57:31.057426 - Cannot import D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\detectron2 module for custom nodes: [Errno 2] No such file or directory: 'D:\\ComfyUI_windows_portable\\ComfyUI\\custom_nodes\\detectron2\\__init__.py'
2024-12-14T21:57:31.182451 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2037, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 940, in exec_module
File "<frozen importlib._bootstrap>", line 241, in _call_with_frames_removed
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\hd_node\__init__.py", line 1, in <module>
from .HDNodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\hd_node\HDNodes.py", line 18, in <module>
from .reactor_swapper import swap_face, get_current_faces_model, analyze_faces, get_face_single
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\hd_node\reactor_swapper.py", line 11, in <module>
import insightface
ModuleNotFoundError: No module named 'insightface'
2024-12-14T21:57:31.182451 - Cannot import D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\hd_node module for custom nodes: No module named 'insightface'
2024-12-14T21:57:31.369976 - Plush - Running on python installation: D:\ComfyUI_windows_portable\python_embeded\python.exe, ver: 3.11.8 (tags/v3.11.8:db85d51, Feb 6 2024, 22:03:32) [MSC v.1937 64 bit (AMD64)]2024-12-14T21:57:31.369976 -
2024-12-14T21:57:31.369976 - Plush - Current Openai Version: 2024-12-14T21:57:31.369976 - 2024-12-14T21:57:31.369976 - 1.55.32024-12-14T21:57:31.369976 -
2024-12-14T21:57:31.510619 - Plush - Version:2024-12-14T21:57:31.510619 - 2024-12-14T21:57:31.510619 - 1.21.202024-12-14T21:57:31.510619 -
2024-12-14T21:57:34.448503 -
2024-12-14T21:57:34.448503 - �[92m[rgthree-comfy] Loaded 42 exciting nodes. 🎉�[00m2024-12-14T21:57:34.448503 -
2024-12-14T21:57:34.448503 -
2024-12-14T21:57:35.292354 - �[34mWAS Node Suite: �[0mOpenCV Python FFMPEG support is enabled�[0m2024-12-14T21:57:35.292354 -
2024-12-14T21:57:35.292354 - �[34mWAS Node Suite �[93mWarning: �[0m`ffmpeg_bin_path` is not set in `D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\was-node-suite-comfyui\was_suite_config.json` config file. Will attempt to use system ffmpeg binaries if available.�[0m2024-12-14T21:57:35.292354 -
2024-12-14T21:57:35.995571 - �[34mWAS Node Suite: �[0mFinished.�[0m �[32mLoaded�[0m �[0m218�[0m �[32mnodes successfully.�[0m2024-12-14T21:57:35.995571 -
2024-12-14T21:57:35.995571 -
�[3m�[93m"The only limit to our realization of tomorrow will be our doubts of today."�[0m�[3m - Franklin D. Roosevelt�[0m
2024-12-14T21:57:35.995571 -
2024-12-14T21:57:36.058079 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2037, in load_custom_node
module_spec.loader.exec_module(module)
File "<frozen importlib._bootstrap_external>", line 936, in exec_module
File "<frozen importlib._bootstrap_external>", line 1073, in get_code
File "<frozen importlib._bootstrap_external>", line 1130, in get_data
FileNotFoundError: [Errno 2] No such file or directory: 'D:\\ComfyUI_windows_portable\\ComfyUI\\custom_nodes\\__MACOSX\\__init__.py'
2024-12-14T21:57:36.058079 - Cannot import D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\__MACOSX module for custom nodes: [Errno 2] No such file or directory: 'D:\\ComfyUI_windows_portable\\ComfyUI\\custom_nodes\\__MACOSX\\__init__.py'
2024-12-14T21:57:36.058079 -
Import times for custom nodes:
2024-12-14T21:57:36.058079 - 0.0 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_IPAdapter_plus
2024-12-14T21:57:36.058079 - 0.0 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\__MACOSX
2024-12-14T21:57:36.058079 - 0.0 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\detectron2
2024-12-14T21:57:36.058079 - 0.0 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ControlNet-LLLite-ComfyUI
2024-12-14T21:57:36.058079 - 0.0 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Vextra-Nodes
2024-12-14T21:57:36.058079 - 0.0 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux
2024-12-14T21:57:36.058079 - 0.0 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Impact-Pack
2024-12-14T21:57:36.058079 - 0.0 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inference-Core-Nodes
2024-12-14T21:57:36.058079 - 0.0 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-AnimateDiff-Evolved
2024-12-14T21:57:36.058079 - 0.0 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IC-Light-Native
2024-12-14T21:57:36.058079 - 0.0 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\masquerade-nodes-comfyui
2024-12-14T21:57:36.058079 - 0.0 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\websocket_image_save.py
2024-12-14T21:57:36.058079 - 0.1 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\cg-use-everywhere
2024-12-14T21:57:36.058079 - 0.1 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-popup_preview
2024-12-14T21:57:36.058079 - 0.1 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Gaffer
2024-12-14T21:57:36.058079 - 0.1 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-ExLlama-Nodes
2024-12-14T21:57:36.058079 - 0.1 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-photoshop
2024-12-14T21:57:36.058079 - 0.1 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-various
2024-12-14T21:57:36.058079 - 0.1 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IC-Light
2024-12-14T21:57:36.058079 - 0.1 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\hd_node
2024-12-14T21:57:36.058079 - 0.1 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyMath
2024-12-14T21:57:36.058079 - 0.2 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyLiterals
2024-12-14T21:57:36.058079 - 0.2 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_essentials
2024-12-14T21:57:36.058079 - 0.2 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-KJNodes
2024-12-14T21:57:36.058079 - 0.2 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_UltimateSDUpscale
2024-12-14T21:57:36.058079 - 0.2 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_CatVTON_Wrapper
2024-12-14T21:57:36.058079 - 0.2 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy-image-saver
2024-12-14T21:57:36.058079 - 0.3 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-GGUF
2024-12-14T21:57:36.058079 - 0.3 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Custom-Scripts
2024-12-14T21:57:36.058079 - 0.3 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\Derfuu_ComfyUI_ModdedNodes
2024-12-14T21:57:36.058079 - 0.4 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-IDM-VTON
2024-12-14T21:57:36.058079 - 0.5 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Advanced-ControlNet
2024-12-14T21:57:36.058079 - 0.5 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\rgthree-comfy
2024-12-14T21:57:36.058079 - 0.5 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Florence2
2024-12-14T21:57:36.058079 - 0.8 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes
2024-12-14T21:57:36.058079 - 1.3 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-tensorops
2024-12-14T21:57:36.058079 - 1.4 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\Comfyui-CatVTON
2024-12-14T21:57:36.058079 - 1.5 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_segment_anything
2024-12-14T21:57:36.073706 - 1.5 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Manager
2024-12-14T21:57:36.073706 - 1.6 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\was-node-suite-comfyui
2024-12-14T21:57:36.073706 - 1.7 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_LayerStyle_Advance
2024-12-14T21:57:36.073706 - 1.8 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy_mtb
2024-12-14T21:57:36.073706 - 1.9 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_LayerStyle
2024-12-14T21:57:36.073706 - 2.0 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-BrushNet
2024-12-14T21:57:36.073706 - 2.7 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\Plush-for-ComfyUI
2024-12-14T21:57:36.073706 - 3.9 seconds (IMPORT FAILED): D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-CatvtonFluxWrapper
2024-12-14T21:57:36.073706 - 8.5 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Crystools
2024-12-14T21:57:36.073706 - 10.5 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inspyrenet-Rembg
2024-12-14T21:57:36.073706 - 11.8 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-art-venture
2024-12-14T21:57:36.073706 - 24.9 seconds: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes
2024-12-14T21:57:36.073706 -
2024-12-14T21:57:36.089334 - Starting server
2024-12-14T21:57:36.089334 - To see the GUI go to: http://127.0.0.1:8188
2024-12-14T21:57:37.568504 - D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/photoswipe-lightbox.esm.min.js2024-12-14T21:57:37.568504 -
2024-12-14T21:57:37.630887 - D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/photoswipe.min.css2024-12-14T21:57:37.630887 -
2024-12-14T21:57:37.679576 - FETCH DATA from: D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Manager\extension-node-map.json2024-12-14T21:57:37.679576 - 2024-12-14T21:57:37.832214 - [DONE]2024-12-14T21:57:37.832214 -
2024-12-14T21:57:37.846279 - D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/pickr.min.js2024-12-14T21:57:37.846279 -
2024-12-14T21:57:37.915841 - D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/classic.min.css2024-12-14T21:57:37.915841 -
2024-12-14T21:57:37.950327 - D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/model-viewer.min.js2024-12-14T21:57:37.950327 -
2024-12-14T21:57:38.019719 - D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/juxtapose.css2024-12-14T21:57:38.019719 -
2024-12-14T21:57:38.048470 - D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/juxtapose.min.js2024-12-14T21:57:38.048470 -
2024-12-14T21:57:38.735019 - [ERROR] An error occurred while retrieving information for the 'Florence2ModelLoader' node.
2024-12-14T21:57:38.783643 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\server.py", line 563, in get_object_info
out[x] = node_info(x)
^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\ComfyUI\server.py", line 530, in node_info
info['input'] = obj_class.INPUT_TYPES()
^^^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Florence2\nodes.py", line 150, in INPUT_TYPES
"model": ([item.name for item in Path(folder_paths.models_dir, "LLM").iterdir() if item.is_dir()], {"tooltip": "models are expected to be in Comfyui/models/LLM folder"}),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Florence2\nodes.py", line 150, in <listcomp>
"model": ([item.name for item in Path(folder_paths.models_dir, "LLM").iterdir() if item.is_dir()], {"tooltip": "models are expected to be in Comfyui/models/LLM folder"}),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "pathlib.py", line 931, in iterdir
FileNotFoundError: [WinError 3] The system cannot find the path specified: 'D:\\ComfyUI_windows_portable\\ComfyUI\\models\\LLM'
2024-12-14T21:58:17.469127 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json2024-12-14T21:58:17.469127 - 2024-12-14T21:58:17.715158 - [DONE]2024-12-14T21:58:17.715158 -
2024-12-14T21:58:17.760914 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2024-12-14T21:58:17.760914 - 2024-12-14T21:58:18.000313 - [DONE]2024-12-14T21:58:18.000313 -
2024-12-14T21:58:18.048816 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json2024-12-14T21:58:18.048816 - 2024-12-14T21:58:18.243258 - [DONE]2024-12-14T21:58:18.243258 -
2024-12-14T21:58:18.437434 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json2024-12-14T21:58:18.437789 - 2024-12-14T21:58:18.673812 - [DONE]2024-12-14T21:58:18.673812 -
2024-12-14T21:58:25.554863 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json2024-12-14T21:58:25.554863 - 2024-12-14T21:58:25.833855 - [DONE]2024-12-14T21:58:25.833855 -
2024-12-14T21:58:25.914033 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2024-12-14T21:58:25.914033 - 2024-12-14T21:58:26.153341 - [DONE]2024-12-14T21:58:26.153341 -
2024-12-14T21:58:26.215772 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json2024-12-14T21:58:26.215772 - 2024-12-14T21:58:26.514482 - [DONE]2024-12-14T21:58:26.514482 -
2024-12-14T21:58:55.602531 - got prompt
2024-12-14T21:58:55.844445 - Input image resolution: 1024x10242024-12-14T21:58:55.844445 -
2024-12-14T21:58:55.844445 - Selected resolution: 1024x10242024-12-14T21:58:55.845211 -
2024-12-14T21:58:58.543903 - Settings -> Mode=base, Device=cuda:0, Torchscript=disabled2024-12-14T21:58:58.543903 -
2024-12-14T21:59:03.398276 -
Inspyrenet Rembg: 100%|██████████████████████████████████████████████████████████████████| 1/1 [00:04<00:00, 4.85s/it]2024-12-14T21:59:03.398276 -
Inspyrenet Rembg: 100%|██████████████████████████████████████████████████████████████████| 1/1 [00:04<00:00, 4.85s/it]2024-12-14T21:59:03.398276 -
2024-12-14T21:59:10.690099 - model weight dtype torch.float16, manual cast: None
2024-12-14T21:59:10.840535 - model_type EPS
2024-12-14T21:59:55.647849 - Using pytorch attention in VAE
2024-12-14T21:59:55.648879 - Using pytorch attention in VAE
2024-12-14T22:00:09.448921 - Requested to load SDXLClipModel
2024-12-14T22:00:09.461903 - loaded completely 9.5367431640625e+25 1560.802734375 True
2024-12-14T22:00:22.543566 - loaded straight to GPU
2024-12-14T22:00:22.544567 - Requested to load SDXL
2024-12-14T22:00:23.621925 - loaded completely 9.5367431640625e+25 4897.0483474731445 True
2024-12-14T22:00:24.121949 - model_path is D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\ckpts\LiheYoung/Depth-Anything\checkpoints\depth_anything_vitl14.pth2024-12-14T22:00:24.121949 -
2024-12-14T22:00:24.263878 - using MLP layer as FFN
2024-12-14T22:00:49.485864 - lora key not loaded: diffusion_model_output_blocks_2_2_conv.alpha
2024-12-14T22:00:49.486866 - lora key not loaded: diffusion_model_output_blocks_2_2_conv.lora_down.weight
2024-12-14T22:00:49.486866 - lora key not loaded: diffusion_model_output_blocks_2_2_conv.lora_up.weight
2024-12-14T22:00:49.487866 - lora key not loaded: diffusion_model_output_blocks_5_2_conv.alpha
2024-12-14T22:00:49.487866 - lora key not loaded: diffusion_model_output_blocks_5_2_conv.lora_down.weight
2024-12-14T22:00:49.487866 - lora key not loaded: diffusion_model_output_blocks_5_2_conv.lora_up.weight
2024-12-14T22:00:49.526479 - warning, embedding:ac_neg1, does not exist, ignoring
2024-12-14T22:00:49.526479 - warning, embedding:ac_neg1, does not exist, ignoring
2024-12-14T22:00:49.526479 - Requested to load SDXLClipModel
2024-12-14T22:00:55.039611 - loaded completely 9.5367431640625e+25 1560.802734375 True
2024-12-14T22:00:55.540365 - D:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\modules\attention.py:418: UserWarning: 1Torch was not compiled with flash attention. (Triggered internally at ..\aten\src\ATen\native\transformers\cuda\sdp_utils.cpp:263.)
out = torch.nn.functional.scaled_dot_product_attention(q, k, v, attn_mask=mask, dropout_p=0.0, is_causal=False)
2024-12-14T22:00:56.193364 - Requested to load AutoencoderKL
2024-12-14T22:00:56.245067 - loaded completely 9.5367431640625e+25 159.55708122253418 True
2024-12-14T22:04:27.657997 - Requested to load SDXL
2024-12-14T22:04:50.180169 - loaded completely 9.5367431640625e+25 4897.0483474731445 True
2024-12-14T22:05:04.351106 -
100%|████████████████████████████████████████████████████████████████████████████████████| 4/4 [00:07<00:00, 1.50s/it]2024-12-14T22:05:04.351921 -
100%|████████████████████████████████████████████████████████████████████████████████████| 4/4 [00:07<00:00, 1.91s/it]2024-12-14T22:05:04.352036 -
2024-12-14T22:08:15.183996 - �[33mINFO: Clip Vision model loaded from D:\ComfyUI_windows_portable\ComfyUI\models\clip_vision\CLIP-ViT-H-14-laion2B-s32B-b79K.safetensors�[0m2024-12-14T22:08:15.213027 -
2024-12-14T22:08:16.982257 - �[33mINFO: IPAdapter model loaded from D:\ComfyUI_windows_portable\ComfyUI\models\ipadapter\ip-adapter-plus_sdxl_vit-h.safetensors�[0m2024-12-14T22:08:16.982257 -
2024-12-14T22:08:17.256686 - Requested to load CLIPVisionModelProjection
2024-12-14T22:08:30.693149 - loaded completely 9.5367431640625e+25 3522.953369140625 True
2024-12-14T22:09:45.134452 - !!! Exception during processing !!! Error(s) in loading state_dict for Resampler:
size mismatch for proj_in.weight: copying a param with shape torch.Size([1280, 1280]) from checkpoint, the shape in current model is torch.Size([1280, 1664]).
2024-12-14T22:09:45.409754 - Traceback (most recent call last):
File "D:\ComfyUI_windows_portable\ComfyUI\execution.py", line 324, in execute
output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\ComfyUI\execution.py", line 199, in get_output_data
return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\ComfyUI\execution.py", line 170, in _map_node_over_list
process_inputs(input_dict, i)
File "D:\ComfyUI_windows_portable\ComfyUI\execution.py", line 159, in process_inputs
results.append(getattr(obj, func)(**inputs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_IPAdapter_plus\IPAdapterPlus.py", line 822, in apply_ipadapter
work_model, face_image = ipadapter_execute(work_model, ipadapter_model, clip_vision, **ipa_args)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_IPAdapter_plus\IPAdapterPlus.py", line 441, in ipadapter_execute
ipa = IPAdapter(
^^^^^^^^^^
File "D:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_IPAdapter_plus\IPAdapterPlus.py", line 71, in __init__
self.image_proj_model.load_state_dict(ipadapter_model["image_proj"])
File "D:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 2153, in load_state_dict
raise RuntimeError('Error(s) in loading state_dict for {}:\n\t{}'.format(
RuntimeError: Error(s) in loading state_dict for Resampler:
size mismatch for proj_in.weight: copying a param with shape torch.Size([1280, 1280]) from checkpoint, the shape in current model is torch.Size([1280, 1664]).
2024-12-14T22:09:45.455929 - Prompt executed in 649.80 seconds
Attached Workflow
Please make sure that workflow does not contain any sensitive information such as API keys or passwords.
Workflow too large. Please manually upload the workflow from local file system.
Additional Context
(Please add any additional context or steps to reproduce the error here)
### Other
_No response_
The text was updated successfully, but these errors were encountered:
No, this workflow worked and tested exactly as it.
And also the same issue appears in all workflows.
The issue must have to do something with cuda and libraries, maybe the libraries installed in wrong location? I don’t know neither I have the knowledge to fix it.
Expected Behavior
Hello everyone,
I have the same message in all my workflows.
I think is something wrong happened with cuda.
I tried all the suggested steps:
CUDA SETUP: Solution 1a): Find the cuda runtime library via: find / -name libcudart.so 2>/dev/null2024-12-14T19:38:02.799446 -
I had response:
The filename, directory name, or volume label syntax is incorrect.
I tried the 2a suggested solution:
CUDA SETUP: Solution 2: If no library was found in step 1a) you need to install CUDA.2024-12-14T19:38:02.799446 -
wget https://raw.githubusercontent.com/TimDettmers/bitsandbytes/main/cuda_install.sh2024-12-14T19:38:02.799446 -
I had response:
'wget' is not recognized as an internal or external command,
operable program or batch file.
I also tried by git clone but I had the responce:
Cloning into '-'...
remote: 404: Not Found
fatal: repository 'https://raw.githubusercontent.com/TimDettmers/bitsandbytes/main/cuda_install.sh2024-12-14T19:38:02.799446/' not found
please any help is welcome!
P.S. Because I am newbie please to be as simple as you can, thank you in advance.
Actual Behavior
Steps to Reproduce
ComfyUI Error Report
Debug Logs
System Information
Devices
Logs
Attached Workflow
Please make sure that workflow does not contain any sensitive information such as API keys or passwords.
Additional Context
(Please add any additional context or steps to reproduce the error here)
The text was updated successfully, but these errors were encountered: