Closed romi1328 closed 2 weeks ago
My bad, thanks for the info, now I'm outside but for now you can (if you don't want to wait) change line 91 in ComfyUI-DiffusersImageOutpaint/utils.py
, from torch.cuda.ipc_collect()
to #torch.cuda.ipc_collect()
. Some vram could remain occupied after the generation.
If you still get Torch not compiled with CUDA enabled
error, write here, there could be other lines to edit.
This is because cuda
seems to not be available on Mac, but the code is forced to use it: torch.
cuda.ipc_collect()
My bad, thanks for the info, now I'm outside but for now you can (if you don't want to wait) change line 91 in
ComfyUI-DiffusersImageOutpaint/utils.py
, fromtorch.cuda.ipc_collect()
to#torch.cuda.ipc_collect()
. Some vram could remain occupied after the generation. If you still getTorch not compiled with CUDA enabled
error, write here, there could be other lines to edit. This is becausecuda
seems to not be available on Mac, but the code is forced to use it:torch.
cuda.ipc_collect()
Maybe these code works a little better:
import gc
gc.colloct()
if torch.cuda.is_available(): # check if cuda device
torch.cuda.empty_cache()
torch.cuda.ipc_collect()
This is an option, thanks, but I want to see if torch.device works (I need to free the device, chosen by comfyui, where models were stored), today I'll test it
Fixed, (update and) tell me if it woks
if 'cuda' in device.type works in this situation
I put if device.type == "cuda":
, so it should be covered, no?
This is an option, thanks, but I want to see if torch.device works (I need to free the device, chosen by comfyui, where models were stored), today I'll test it
error message
My bad, thanks for the info, now I'm outside but for now you can (if you don't want to wait) change line 91 in
ComfyUI-DiffusersImageOutpaint/utils.py
, fromtorch.cuda.ipc_collect()
to#torch.cuda.ipc_collect()
. Some vram could remain occupied after the generation. If you still getTorch not compiled with CUDA enabled
error, write here, there could be other lines to edit. This is becausecuda
seems to not be available on Mac, but the code is forced to use it:torch.
cuda.ipc_collect()
remark #torch.cuda.ipc_collect() find in utils.py 3 times, in nodes.py 1 time, fixed all, now work perfect on M1 Max, thx a lot GiusTex
Fixed, (update and) tell me if it woks
Exception Message: module 'torch.mps' has no attribute 'ipc_collect'
File "/Users/mac/ComfyUI/execution.py", line 323, 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 "/Users/mac/ComfyUI/execution.py", line 198, 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 "/Users/mac/ComfyUI/execution.py", line 169, in _map_node_over_list
process_inputs(input_dict, i)
File "/Users/mac/ComfyUI/execution.py", line 158, in process_inputs
results.append(getattr(obj, func)(**inputs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/nodes.py", line 205, in encode
prompt_embeds, negative_prompt_embeds, pooled_prompt_embeds, negative_pooled_prompt_embeds = encodeDiffOutpaintPrompt(model_path, dtype, final_prompt, device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/utils.py", line 112, in encodeDiffOutpaintPrompt
clearVram(device)
File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/utils.py", line 87, in clearVram
torch.mps.ipc_collect()
^^^^^^^^^^^^^^^^^^^^^
## System Information
- **ComfyUI Version:** v0.0.2-34-gf87810c
- **Arguments:** main.py --port=8138
- **OS:** posix
- **Python Version:** 3.11.9 (main, Apr 2 2024, 08:25:04) [Clang 15.0.0 (clang-1500.3.9.4)]
- **Embedded Python:** false
- **PyTorch Version:** 2.3.1
## Devices
- **Name:** mps
- **Type:** mps
- **VRAM Total:** 68719476736
- **VRAM Free:** 43864997888
- **Torch VRAM Total:** 68719476736
- **Torch VRAM Free:** 43864997888
## Logs
2024-10-18 00:24:46,829 - root - INFO - Total VRAM 65536 MB, total RAM 65536 MB 2024-10-18 00:24:46,829 - root - INFO - pytorch version: 2.3.1 2024-10-18 00:24:46,829 - root - INFO - Set vram state to: SHARED 2024-10-18 00:24:46,829 - root - INFO - Device: mps 2024-10-18 00:24:47,275 - root - INFO - Using sub quadratic optimization for cross attention, if you have memory or speed issues try using: --use-split-cross-attention 2024-10-18 00:24:47,779 - root - INFO - [Prompt Server] web root: /Users/mac/ComfyUI/web 2024-10-18 00:24:50,590 - numexpr.utils - INFO - NumExpr defaulting to 10 threads. 2024-10-18 00:24:51,564 - albumentations.check_version - INFO - A new version of Albumentations is available: 1.4.18 (you have 1.4.12). Upgrade using: pip install -U albumentations. To disable automatic update checks, set the environment variable NO_ALBUMENTATIONS_UPDATE to 1. 2024-10-18 00:24:52,318 - chromadb.telemetry.product.posthog - INFO - Anonymized telemetry enabled. See https://docs.trychroma.com/telemetry for more information. 2024-10-18 00:24:52,767 - albumentations.check_version - INFO - A new version of Albumentations is available: 1.4.18 (you have 1.4.12). Upgrade using: pip install -U albumentations. To disable automatic update checks, set the environment variable NO_ALBUMENTATIONS_UPDATE to 1. 2024-10-18 00:24:53,456 - root - INFO - -------------- 2024-10-18 00:24:53,456 - root - INFO - [91m ### Mixlab Nodes: [93mLoaded 2024-10-18 00:24:53,456 - root - INFO - ChatGPT.available True 2024-10-18 00:24:53,456 - root - INFO - editmask.available True 2024-10-18 00:24:53,457 - root - INFO - LaMaInpainting.available True 2024-10-18 00:24:53,640 - root - INFO - ClipInterrogator.available True 2024-10-18 00:24:53,662 - root - INFO - PromptGenerate.available True 2024-10-18 00:24:53,663 - root - INFO - ChinesePrompt.available True 2024-10-18 00:24:53,663 - root - INFO - RembgNode.available True 2024-10-18 00:24:53,801 - root - INFO - TripoSR.available 2024-10-18 00:24:53,801 - root - INFO - [93m -------------- [0m 2024-10-18 00:24:54,529 - root - INFO - Total VRAM 65536 MB, total RAM 65536 MB 2024-10-18 00:24:54,529 - root - INFO - pytorch version: 2.3.1 2024-10-18 00:24:54,529 - root - INFO - Set vram state to: SHARED 2024-10-18 00:24:54,529 - root - INFO - Device: mps 2024-10-18 00:25:04,827 - root - INFO - Import times for custom nodes: 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Crystools-save 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/rembg-comfyui-node 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/websocket_image_save.py 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/rembg-comfyui-node-better 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Test 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Plus 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_prep_img_v2 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/Comfyui-Kolors-Utils 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Art_Styler 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Art_Styler 3 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_batch 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Art_Styler 2 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_tmp 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/sdxl_prompt_styler_02 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/sdxl_prompt_styler_03 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/batchImg-rembg-ComfyUI-nodes 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_3dPoseEditor 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-ollama 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/style_aligned_comfy 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_HFDownloaderNode 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/sdxl_prompt_styler_00 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/cg-use-everywhere 2024-10-18 00:25:04,827 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-checkpoint-config-loader 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-BRIA_AI-RMBG 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/sdxl_prompt_styler 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Prompt-Preview_01 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/Comfy-Photoshop-SD 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Logic 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-photoshop 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Prompt-Preview 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-YOLO 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyLiterals 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/CharacterFaceSwap 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy-plasma 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_update 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/SD-Advanced-Noise 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-AnyText 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_InstantID 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-WD14-Tagger 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-eesahesNodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Gaffer 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/wlsh_nodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-lama-remover 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUi-Ollama-YN 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Phi-3-mini 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy-image-saver 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Universal-Styler 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/masquerade-nodes-comfyui 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_IPAdapter_plus 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Text_Image-Composite 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-QualityOfLifeSuit_Omar92 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/Flux-Prompt-Generator 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Image-Filters 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-tooling-nodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-IC-Light 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Custom-Scripts 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-AutoCropFaces 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyMath 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-various 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_FizzNodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Hangover-Nodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Kolors-MZ-mac 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/clipseg.py 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-AdvancedLivePortrait 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-sixgod_prompt 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_essentials 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-AutomaticCFG 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_ChatGLM_API 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-VideoHelperSuite 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/Derfuu_ComfyUI_ModdedNodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Allor 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-KJNodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-segment-anything-2 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/x-flux-comfyui 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/rgthree-comfy 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Advanced-ControlNet 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/virtuoso-nodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-BrushNet-Wrapper 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_MiniCPM-V 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/efficiency-nodes-comfyui 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-KwaiKolorsWrapper 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-GGUF 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_UltimateSDUpscale 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-layerdiffuse 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_Comfyroll_CustomNodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/facerestore_cf 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui_controlnet_aux 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_mtb 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-OllamaGemini 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-hydit 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/All-IN-ONE-style 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Ollama-Describer 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-clip-interrogator 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui_segment_anything 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Impact-Pack 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_tools 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Inspire-Pack 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_LayerStyle 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_StoryDiffusion 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui_face_parsing 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Anyline 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_VLM_nodes 2024-10-18 00:25:04,828 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/PuLID_ComfyUI 2024-10-18 00:25:04,828 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Crystools 2024-10-18 00:25:04,828 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-BrushNet 2024-10-18 00:25:04,828 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Inspyrenet-Rembg 2024-10-18 00:25:04,828 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_StoryCreator 2024-10-18 00:25:04,828 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Manager 2024-10-18 00:25:04,828 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/bilbox-comfyui 2024-10-18 00:25:04,828 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Gemini 2024-10-18 00:25:04,828 - root - INFO - 0.3 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Griptape 2024-10-18 00:25:04,828 - root - INFO - 0.3 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Easy-Use 2024-10-18 00:25:04,828 - root - INFO - 0.4 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_WishperSpeechNode 2024-10-18 00:25:04,828 - root - INFO - 0.4 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-liveportrait 2024-10-18 00:25:04,828 - root - INFO - 0.5 seconds: /Users/mac/ComfyUI/custom_nodes/anynode 2024-10-18 00:25:04,828 - root - INFO - 0.7 seconds: /Users/mac/ComfyUI/custom_nodes/was-node-suite-comfyui 2024-10-18 00:25:04,828 - root - INFO - 0.8 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-mixlab-nodes 2024-10-18 00:25:04,828 - root - INFO - 0.8 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-reactor-node 2024-10-18 00:25:04,828 - root - INFO - 2.7 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Florence2 2024-10-18 00:25:04,828 - root - INFO - 8.8 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui_LLM_party 2024-10-18 00:25:04,828 - root - INFO - 2024-10-18 00:25:04,835 - root - INFO - Starting server
2024-10-18 00:25:04,836 - root - INFO - To see the GUI go to: http://127.0.0.1:8138 2024-10-18 00:25:07,040 - httpx - INFO - HTTP Request: GET https://api.openai.com/v1/models "HTTP/1.1 403 Forbidden" 2024-10-18 00:25:07,150 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'DiffusersPipelineLoader' node. 2024-10-18 00:25:07,151 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/server.py", line 564, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "/Users/mac/ComfyUI/server.py", line 531, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/comfyui-hydit/nodes.py", line 57, in INPUT_TYPES return {"required": {"pipeline_folder_name": (os.listdir(HUNYUAN_PATH),), }, ^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/Users/mac/ComfyUI/custom_nodes/comfyui-hydit/../../models/hunyuan'
2024-10-18 00:25:07,151 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'DiffusersCLIPLoader' node. 2024-10-18 00:25:07,151 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/server.py", line 564, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "/Users/mac/ComfyUI/server.py", line 531, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/comfyui-hydit/nodes.py", line 151, in INPUT_TYPES "t5_text_encoder_path": (os.listdir(T5_PATH),), }} ^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/Users/mac/ComfyUI/custom_nodes/comfyui-hydit/../../models/t5'
2024-10-18 00:25:07,353 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-10-18 00:25:07,353 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/server.py", line 564, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "/Users/mac/ComfyUI/server.py", line 531, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_tools/IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_tools/IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_tools/IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/Users/mac/ComfyUI/input/IF_AI/presets/agents'
2024-10-18 00:25:11,533 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'DiffusersPipelineLoader' node. 2024-10-18 00:25:11,533 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/server.py", line 564, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "/Users/mac/ComfyUI/server.py", line 531, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/comfyui-hydit/nodes.py", line 57, in INPUT_TYPES return {"required": {"pipeline_folder_name": (os.listdir(HUNYUAN_PATH),), }, ^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/Users/mac/ComfyUI/custom_nodes/comfyui-hydit/../../models/hunyuan'
2024-10-18 00:25:11,533 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'DiffusersCLIPLoader' node. 2024-10-18 00:25:11,534 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/server.py", line 564, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "/Users/mac/ComfyUI/server.py", line 531, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/comfyui-hydit/nodes.py", line 151, in INPUT_TYPES "t5_text_encoder_path": (os.listdir(T5_PATH),), }} ^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/Users/mac/ComfyUI/custom_nodes/comfyui-hydit/../../models/t5'
2024-10-18 00:25:11,708 - root - ERROR - [ERROR] An error occurred while retrieving information for the 'IF_ChatPrompt' node. 2024-10-18 00:25:11,708 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/server.py", line 564, in get_object_info out[x] = node_info(x) ^^^^^^^^^^^^ File "/Users/mac/ComfyUI/server.py", line 531, in node_info info['input'] = obj_class.INPUT_TYPES() ^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_tools/IFChatPromptNode.py", line 109, in INPUT_TYPES node = cls() ^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_tools/IFChatPromptNode.py", line 53, in init self.agent_tools = self.load_agent_tools() ^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_tools/IFChatPromptNode.py", line 78, in load_agent_tools for filename in os.listdir(self.agents_dir): ^^^^^^^^^^^^^^^^^^^^^^^^^^^ FileNotFoundError: [Errno 2] No such file or directory: '/Users/mac/ComfyUI/input/IF_AI/presets/agents'
2024-10-18 00:25:19,662 - root - INFO - got prompt 2024-10-18 00:25:19,936 - root - INFO - Using split attention in VAE 2024-10-18 00:25:19,937 - root - INFO - Using split attention in VAE 2024-10-18 00:25:21,999 - root - ERROR - !!! Exception during processing !!! module 'torch.mps' has no attribute 'ipc_collect' 2024-10-18 00:25:22,001 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/execution.py", line 323, 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 "/Users/mac/ComfyUI/execution.py", line 198, 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 "/Users/mac/ComfyUI/execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "/Users/mac/ComfyUI/execution.py", line 158, in process_inputs results.append(getattr(obj, func)(**inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/nodes.py", line 205, in encode prompt_embeds, negative_prompt_embeds, pooled_prompt_embeds, negative_pooled_prompt_embeds = encodeDiffOutpaintPrompt(model_path, dtype, final_prompt, device) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/utils.py", line 112, in encodeDiffOutpaintPrompt clearVram(device) File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/utils.py", line 87, in clearVram torch.mps.ipc_collect() ^^^^^^^^^^^^^^^^^^^^^ AttributeError: module 'torch.mps' has no attribute 'ipc_collect'
2024-10-18 00:25:22,001 - root - INFO - Prompt executed in 2.17 seconds
## Attached Workflow
Please make sure that workflow does not contain any sensitive information such as API keys or passwords.
{"last_node_id":689,"last_link_id":1301,"nodes":[{"id":351,"type":"PreviewImage","pos":{"0":970,"1":280},"size":{"0":510,"1":490},"flags":{},"order":8,"mode":0,"inputs":[{"name":"images","type":"IMAGE","link":679}],"outputs":[],"properties":{"Node name for S&R":"PreviewImage"},"widgets_values":[]},{"id":402,"type":"GetImageSizeAndCount","pos":{"0":1200,"1":150},"size":{"0":210,"1":90},"flags":{},"order":7,"mode":0,"inputs":[{"name":"image","type":"IMAGE","link":1297}],"outputs":[{"name":"image","type":"IMAGE","links":[679],"slot_index":0,"shape":3},{"name":"width","type":"INT","links":null,"shape":3},{"name":"height","type":"INT","links":null,"shape":3},{"name":"count","type":"INT","links":null,"shape":3}],"properties":{"Node name for S&R":"GetImageSizeAndCount"},"widgets_values":[]},{"id":688,"type":"VAEDecode","pos":{"0":960,"1":160},"size":{"0":210,"1":46},"flags":{},"order":6,"mode":0,"inputs":[{"name":"samples","type":"LATENT","link":1301},{"name":"vae","type":"VAE","link":1296}],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[1297],"slot_index":0,"shape":3}],"properties":{"Node name for S&R":"VAEDecode"},"widgets_values":[]},{"id":689,"type":"DiffusersImageOutpaint","pos":{"0":620,"1":150},"size":{"0":320.79998779296875,"1":194},"flags":{},"order":5,"mode":0,"inputs":[{"name":"diffusers_outpaint_pipe","type":"PIPE","link":1298},{"name":"diffusers_outpaint_conditioning","type":"CONDITIONING","link":1299},{"name":"diffuser_outpaint_cnet_image","type":"IMAGE","link":1300}],"outputs":[{"name":"LATENT","type":"LATENT","links":[1301],"slot_index":0,"shape":3}],"properties":{"Node name for S&R":"DiffusersImageOutpaint"},"widgets_values":[1.5,1,536907282895533,"randomize",8],"color":"#232","bgcolor":"#353"},{"id":683,"type":"VAELoader","pos":{"0":630,"1":400},"size":{"0":315,"1":58},"flags":{},"order":0,"mode":0,"inputs":[],"outputs":[{"name":"VAE","type":"VAE","links":[1296],"slot_index":0,"shape":3}],"properties":{"Node name for S&R":"VAELoader"},"widgets_values":["sdxl_vae.safetensors"],"color":"#223","bgcolor":"#335"},{"id":675,"type":"LoadDiffusersOutpaintModels","pos":{"0":-210,"1":160},"size":{"0":320,"1":154},"flags":{},"order":1,"mode":0,"inputs":[],"outputs":[{"name":"diffusers_outpaint_pipe","type":"PIPE","links":[1264],"shape":3}],"properties":{"Node name for S&R":"LoadDiffusersOutpaintModels"},"widgets_values":["RealVisXL_V5.0_Lightning","controlnet-union-sdxl-1.0","auto","auto",false],"color":"#223","bgcolor":"#335"},{"id":655,"type":"EncodeDiffusersOutpaintPrompt","pos":{"0":130,"1":150},"size":{"0":463.6000061035156,"1":80},"flags":{},"order":3,"mode":0,"inputs":[{"name":"diffusers_outpaint_pipe","type":"PIPE","link":1264}],"outputs":[{"name":"diffusers_outpaint_pipe","type":"PIPE","links":[1298],"shape":3},{"name":"diffusers_outpaint_conditioning","type":"CONDITIONING","links":[1299],"shape":3}],"properties":{"Node name for S&R":"EncodeDiffusersOutpaintPrompt"},"widgets_values":["8k"],"color":"#232","bgcolor":"#353"},{"id":653,"type":"PadImageForDiffusersOutpaint","pos":{"0":290,"1":300},"size":{"0":290,"1":150},"flags":{},"order":4,"mode":0,"inputs":[{"name":"image","type":"IMAGE","link":1194}],"outputs":[{"name":"IMAGE","type":"IMAGE","links":null,"shape":3},{"name":"MASK","type":"MASK","links":null,"shape":3},{"name":"diffuser_outpaint_cnet_image","type":"IMAGE","links":[1300],"shape":3}],"properties":{"Node name for S&R":"PadImageForDiffusersOutpaint"},"widgets_values":[1536,846,"Middle"],"color":"#232","bgcolor":"#353"},{"id":1,"type":"LoadImage","pos":{"0":-200,"1":360},"size":{"0":320,"1":314},"flags":{},"order":2,"mode":0,"inputs":[],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[1194],"slot_index":0,"shape":3},{"name":"MASK","type":"MASK","links":[],"slot_index":1,"shape":3}],"properties":{"Node name for S&R":"LoadImage"},"widgets_values":["00371-2996427086.png","image"]}],"links":[[679,402,0,351,0,"IMAGE"],[1194,1,0,653,0,"IMAGE"],[1264,675,0,655,0,"PIPE"],[1296,683,0,688,1,"VAE"],[1297,688,0,402,0,"IMAGE"],[1298,655,0,689,0,"PIPE"],[1299,655,1,689,1,"CONDITIONING"],[1300,653,2,689,2,"IMAGE"],[1301,689,0,688,0,"LATENT"]],"groups":[],"config":{},"extra":{"ds":{"scale":1.0610764609500007,"offset":[179.56420344670028,368.0604382198104]}},"version":0.4}
## Additional Context
(Please add any additional context or steps to reproduce the error here)
run new version, error
module 'torch.mps' has no attribute 'ipc_collect'
Fixed, try it now (sorry for the tests, I don't have the Mac, and some things like checking what devices support ipc_collect
don't even cross my mind)
module 'torch.mps' has no attribute 'ipc_collect'
Fixed, try it now (sorry for the tests, I don't have the Mac, and some things like checking what devices support
ipc_collect
don't even cross my mind)
never mind bro. :} super thx
torch.cuda.ipc_collect()
run newer version, pass 99% processing, error at end...... i fixed myself to remove "torch.cuda.ipc_collect()" in nodes.py, now run perfectly :} super thx GiusTex
"torch.cuda.ipc_collect()" in nodes.py
Obviously I forgot to fix it in nodes.py too, will do it when I turn on my pc; happy to know that the fixes (in utils.py) work
Done, try it now
Done, try it now
run perfectly now 👍
run perfectly now 👍
Ahh, finally
Can't run on M1 Max [Macosx]
ComfyUI Error Report
Error Details
Exception Message: Torch not compiled with CUDA enabled
Stack Trace
2024-10-16 06:32:00,344 - root - INFO - Total VRAM 65536 MB, total RAM 65536 MB 2024-10-16 06:32:00,344 - root - INFO - pytorch version: 2.3.1 2024-10-16 06:32:00,344 - root - INFO - Set vram state to: SHARED 2024-10-16 06:32:00,344 - root - INFO - Device: mps 2024-10-16 06:32:00,809 - root - INFO - Using sub quadratic optimization for cross attention, if you have memory or speed issues try using: --use-split-cross-attention 2024-10-16 06:32:01,302 - root - INFO - [Prompt Server] web root: /Users/mac/ComfyUI/web 2024-10-16 06:32:04,085 - numexpr.utils - INFO - NumExpr defaulting to 10 threads. 2024-10-16 06:32:05,099 - albumentations.check_version - INFO - A new version of Albumentations is available: 1.4.18 (you have 1.4.12). Upgrade using: pip install -U albumentations. To disable automatic update checks, set the environment variable NO_ALBUMENTATIONS_UPDATE to 1. 2024-10-16 06:32:05,868 - chromadb.telemetry.product.posthog - INFO - Anonymized telemetry enabled. See https://docs.trychroma.com/telemetry for more information. 2024-10-16 06:32:06,307 - albumentations.check_version - INFO - A new version of Albumentations is available: 1.4.18 (you have 1.4.12). Upgrade using: pip install -U albumentations. To disable automatic update checks, set the environment variable NO_ALBUMENTATIONS_UPDATE to 1. 2024-10-16 06:32:06,999 - root - INFO - -------------- 2024-10-16 06:32:06,999 - root - INFO - [91m ### Mixlab Nodes: [93mLoaded 2024-10-16 06:32:06,999 - root - INFO - ChatGPT.available True 2024-10-16 06:32:06,999 - root - INFO - editmask.available True 2024-10-16 06:32:06,999 - root - INFO - LaMaInpainting.available True 2024-10-16 06:32:07,182 - root - INFO - ClipInterrogator.available True 2024-10-16 06:32:07,205 - root - INFO - PromptGenerate.available True 2024-10-16 06:32:07,205 - root - INFO - ChinesePrompt.available True 2024-10-16 06:32:07,205 - root - INFO - RembgNode.available True 2024-10-16 06:32:07,341 - root - INFO - TripoSR.available 2024-10-16 06:32:07,341 - root - INFO - [93m -------------- [0m 2024-10-16 06:32:08,057 - root - INFO - Total VRAM 65536 MB, total RAM 65536 MB 2024-10-16 06:32:08,057 - root - INFO - pytorch version: 2.3.1 2024-10-16 06:32:08,057 - root - INFO - Set vram state to: SHARED 2024-10-16 06:32:08,057 - root - INFO - Device: mps 2024-10-16 06:32:13,833 - root - INFO - Import times for custom nodes: 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Crystools-save 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/rembg-comfyui-node 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/websocket_image_save.py 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/rembg-comfyui-node-better 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_prep_img_v2 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/Comfyui-Kolors-Utils 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Plus 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Test 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Art_Styler 2 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Art_Styler 3 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_tmp 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_batch 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Phi-3-mini 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-ollama 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_Art_Styler 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/batchImg-rembg-ComfyUI-nodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/sdxl_prompt_styler_03 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/sdxl_prompt_styler_02 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/cg-use-everywhere 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_3dPoseEditor 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-checkpoint-config-loader 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/sdxl_prompt_styler_00 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/style_aligned_comfy 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_HFDownloaderNode 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-BRIA_AI-RMBG 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Prompt-Preview_01 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/sdxl_prompt_styler 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUi-Ollama-YN 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-photoshop 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/Comfy-Photoshop-SD 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Logic 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyLiterals 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/CharacterFaceSwap 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-YOLO 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy-plasma 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/SD-Advanced-Noise 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-lama-remover 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-AnyText 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_load_image_update 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-WD14-Tagger 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_InstantID 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-eesahesNodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Prompt-Preview 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/masquerade-nodes-comfyui 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Gaffer 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Universal-Styler 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy-image-saver 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-AutomaticCFG 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_IPAdapter_plus 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/wlsh_nodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-QualityOfLifeSuit_Omar92 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/Flux-Prompt-Generator 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Text_Image-Composite 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Custom-Scripts 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-various 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-AutoCropFaces 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyMath 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Kolors-MZ-mac 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Hangover-Nodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_FizzNodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-sixgod_prompt 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Image-Filters 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/clipseg.py 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-AdvancedLivePortrait 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-IC-Light 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-tooling-nodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_essentials 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/Derfuu_ComfyUI_ModdedNodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_ChatGLM_API 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-segment-anything-2 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-VideoHelperSuite 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-KJNodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Allor 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/rgthree-comfy 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Advanced-ControlNet 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-KwaiKolorsWrapper 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/virtuoso-nodes 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_MiniCPM-V 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/efficiency-nodes-comfyui 2024-10-16 06:32:13,833 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-GGUF 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/x-flux-comfyui 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-BrushNet-Wrapper 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_UltimateSDUpscale 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/facerestore_cf 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-layerdiffuse 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_Comfyroll_CustomNodes 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/All-IN-ONE-style 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui_controlnet_aux 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfy_mtb 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Ollama-Describer 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-OllamaGemini 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui_segment_anything 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-clip-interrogator 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Impact-Pack 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Inspire-Pack 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_StoryDiffusion 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_LayerStyle 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui_face_parsing 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Anyline 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_VLM_nodes 2024-10-16 06:32:13,834 - root - INFO - 0.0 seconds: /Users/mac/ComfyUI/custom_nodes/PuLID_ComfyUI 2024-10-16 06:32:13,834 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Crystools 2024-10-16 06:32:13,834 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-BrushNet 2024-10-16 06:32:13,834 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Inspyrenet-Rembg 2024-10-16 06:32:13,834 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI_StoryCreator 2024-10-16 06:32:13,834 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/bilbox-comfyui 2024-10-16 06:32:13,834 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Manager 2024-10-16 06:32:13,834 - root - INFO - 0.1 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Gemini 2024-10-16 06:32:13,834 - root - INFO - 0.3 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Griptape 2024-10-16 06:32:13,834 - root - INFO - 0.3 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Easy-Use 2024-10-16 06:32:13,834 - root - INFO - 0.4 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-IF_AI_WishperSpeechNode 2024-10-16 06:32:13,834 - root - INFO - 0.4 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-liveportrait 2024-10-16 06:32:13,834 - root - INFO - 0.5 seconds: /Users/mac/ComfyUI/custom_nodes/anynode 2024-10-16 06:32:13,834 - root - INFO - 0.7 seconds: /Users/mac/ComfyUI/custom_nodes/was-node-suite-comfyui 2024-10-16 06:32:13,834 - root - INFO - 0.8 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-mixlab-nodes 2024-10-16 06:32:13,834 - root - INFO - 0.8 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui-reactor-node 2024-10-16 06:32:13,834 - root - INFO - 2.7 seconds: /Users/mac/ComfyUI/custom_nodes/ComfyUI-Florence2 2024-10-16 06:32:13,834 - root - INFO - 4.3 seconds: /Users/mac/ComfyUI/custom_nodes/comfyui_LLM_party 2024-10-16 06:32:13,834 - root - INFO - 2024-10-16 06:32:13,840 - root - INFO - Starting server
2024-10-16 06:32:13,841 - root - INFO - To see the GUI go to: http://127.0.0.1:8138 2024-10-16 06:32:20,661 - httpx - INFO - HTTP Request: GET https://api.openai.com/v1/models "HTTP/1.1 403 Forbidden" 2024-10-16 06:32:29,441 - root - INFO - got prompt 2024-10-16 06:32:29,714 - root - INFO - Using split attention in VAE 2024-10-16 06:32:29,715 - root - INFO - Using split attention in VAE 2024-10-16 06:32:31,855 - root - ERROR - !!! Exception during processing !!! Torch not compiled with CUDA enabled 2024-10-16 06:32:31,856 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/execution.py", line 323, 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 "/Users/mac/ComfyUI/execution.py", line 198, 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 "/Users/mac/ComfyUI/execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "/Users/mac/ComfyUI/execution.py", line 158, in process_inputs results.append(getattr(obj, func)(**inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/nodes.py", line 205, in encode prompt_embeds, negative_prompt_embeds, pooled_prompt_embeds, negative_pooled_prompt_embeds = encodeDiffOutpaintPrompt(model_path, dtype, final_prompt, device) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/utils.py", line 91, in encodeDiffOutpaintPrompt torch.cuda.ipc_collect() File "/Users/mac/Desktop/_SD_Lib/__VENV/.venv/lib/python3.11/site-packages/torch/cuda/init__.py", line 804, in ipc_collect _lazy_init() File "/Users/mac/Desktop/_SD_Lib/__VENV/.venv/lib/python3.11/site-packages/torch/cuda/init__.py", line 284, in _lazy_init raise AssertionError("Torch not compiled with CUDA enabled") AssertionError: Torch not compiled with CUDA enabled
2024-10-16 06:32:31,856 - root - INFO - Prompt executed in 2.25 seconds 2024-10-16 06:34:33,281 - root - INFO - got prompt 2024-10-16 06:34:35,329 - root - ERROR - !!! Exception during processing !!! Torch not compiled with CUDA enabled 2024-10-16 06:34:35,329 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/execution.py", line 323, 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 "/Users/mac/ComfyUI/execution.py", line 198, 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 "/Users/mac/ComfyUI/execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "/Users/mac/ComfyUI/execution.py", line 158, in process_inputs results.append(getattr(obj, func)(**inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/nodes.py", line 205, in encode prompt_embeds, negative_prompt_embeds, pooled_prompt_embeds, negative_pooled_prompt_embeds = encodeDiffOutpaintPrompt(model_path, dtype, final_prompt, device) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/utils.py", line 91, in encodeDiffOutpaintPrompt torch.cuda.ipc_collect() File "/Users/mac/Desktop/_SD_Lib/__VENV/.venv/lib/python3.11/site-packages/torch/cuda/init__.py", line 804, in ipc_collect File "/Users/mac/Desktop/_SD_Lib/__VENV/.venv/lib/python3.11/site-packages/torch/cuda/init__.py", line 284, in _lazy_init AssertionError: Torch not compiled with CUDA enabled
2024-10-16 06:34:35,330 - root - INFO - Prompt executed in 1.88 seconds 2024-10-16 06:41:55,734 - root - INFO - got prompt 2024-10-16 06:41:57,816 - root - ERROR - !!! Exception during processing !!! Torch not compiled with CUDA enabled 2024-10-16 06:41:57,818 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/execution.py", line 323, 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 "/Users/mac/ComfyUI/execution.py", line 198, 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 "/Users/mac/ComfyUI/execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "/Users/mac/ComfyUI/execution.py", line 158, in process_inputs results.append(getattr(obj, func)(**inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/nodes.py", line 205, in encode prompt_embeds, negative_prompt_embeds, pooled_prompt_embeds, negative_pooled_prompt_embeds = encodeDiffOutpaintPrompt(model_path, dtype, final_prompt, device) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/utils.py", line 91, in encodeDiffOutpaintPrompt torch.cuda.ipc_collect() File "/Users/mac/Desktop/_SD_Lib/__VENV/.venv/lib/python3.11/site-packages/torch/cuda/init__.py", line 804, in ipc_collect _lazy_init() File "/Users/mac/Desktop/_SD_Lib/__VENV/.venv/lib/python3.11/site-packages/torch/cuda/init__.py", line 284, in _lazy_init raise AssertionError("Torch not compiled with CUDA enabled") AssertionError: Torch not compiled with CUDA enabled
2024-10-16 06:41:57,819 - root - INFO - Prompt executed in 1.94 seconds 2024-10-16 06:42:44,237 - root - INFO - got prompt 2024-10-16 06:42:46,369 - root - ERROR - !!! Exception during processing !!! Torch not compiled with CUDA enabled 2024-10-16 06:42:46,369 - root - ERROR - Traceback (most recent call last): File "/Users/mac/ComfyUI/execution.py", line 323, 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 "/Users/mac/ComfyUI/execution.py", line 198, 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 "/Users/mac/ComfyUI/execution.py", line 169, in _map_node_over_list process_inputs(input_dict, i) File "/Users/mac/ComfyUI/execution.py", line 158, in process_inputs results.append(getattr(obj, func)(**inputs)) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/nodes.py", line 205, in encode prompt_embeds, negative_prompt_embeds, pooled_prompt_embeds, negative_pooled_prompt_embeds = encodeDiffOutpaintPrompt(model_path, dtype, final_prompt, device) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/Users/mac/ComfyUI/custom_nodes/ComfyUI-DiffusersImageOutpaint/utils.py", line 91, in encodeDiffOutpaintPrompt torch.cuda.ipc_collect() File "/Users/mac/Desktop/_SD_Lib/__VENV/.venv/lib/python3.11/site-packages/torch/cuda/init__.py", line 804, in ipc_collect _lazy_init() File "/Users/mac/Desktop/_SD_Lib/__VENV/.venv/lib/python3.11/site-packages/torch/cuda/init__.py", line 284, in _lazy_init raise AssertionError("Torch not compiled with CUDA enabled") AssertionError: Torch not compiled with CUDA enabled
2024-10-16 06:42:46,371 - root - INFO - Prompt executed in 1.97 seconds
{"last_node_id":689,"last_link_id":1301,"nodes":[{"id":351,"type":"PreviewImage","pos":{"0":970,"1":280},"size":{"0":510,"1":490},"flags":{},"order":8,"mode":0,"inputs":[{"name":"images","type":"IMAGE","link":679}],"outputs":[],"properties":{"Node name for S&R":"PreviewImage"},"widgets_values":[]},{"id":402,"type":"GetImageSizeAndCount","pos":{"0":1200,"1":150},"size":{"0":210,"1":90},"flags":{},"order":7,"mode":0,"inputs":[{"name":"image","type":"IMAGE","link":1297}],"outputs":[{"name":"image","type":"IMAGE","links":[679],"slot_index":0,"shape":3},{"name":"width","type":"INT","links":null,"shape":3},{"name":"height","type":"INT","links":null,"shape":3},{"name":"count","type":"INT","links":null,"shape":3}],"properties":{"Node name for S&R":"GetImageSizeAndCount"},"widgets_values":[]},{"id":688,"type":"VAEDecode","pos":{"0":960,"1":160},"size":{"0":210,"1":46},"flags":{},"order":6,"mode":0,"inputs":[{"name":"samples","type":"LATENT","link":1301},{"name":"vae","type":"VAE","link":1296}],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[1297],"slot_index":0,"shape":3}],"properties":{"Node name for S&R":"VAEDecode"},"widgets_values":[]},{"id":689,"type":"DiffusersImageOutpaint","pos":{"0":620,"1":150},"size":{"0":320.79998779296875,"1":194},"flags":{},"order":5,"mode":0,"inputs":[{"name":"diffusers_outpaint_pipe","type":"PIPE","link":1298},{"name":"diffusers_outpaint_conditioning","type":"CONDITIONING","link":1299},{"name":"diffuser_outpaint_cnet_image","type":"IMAGE","link":1300}],"outputs":[{"name":"LATENT","type":"LATENT","links":[1301],"slot_index":0,"shape":3}],"properties":{"Node name for S&R":"DiffusersImageOutpaint"},"widgets_values":[1.5,1,991076229758032,"randomize",8],"color":"#232","bgcolor":"#353"},{"id":683,"type":"VAELoader","pos":{"0":630,"1":400},"size":{"0":315,"1":58},"flags":{},"order":0,"mode":0,"inputs":[],"outputs":[{"name":"VAE","type":"VAE","links":[1296],"slot_index":0,"shape":3}],"properties":{"Node name for S&R":"VAELoader"},"widgets_values":["sdxl_vae.safetensors"],"color":"#223","bgcolor":"#335"},{"id":1,"type":"LoadImage","pos":{"0":-200,"1":360},"size":{"0":320,"1":314},"flags":{},"order":1,"mode":0,"inputs":[],"outputs":[{"name":"IMAGE","type":"IMAGE","links":[1194],"slot_index":0,"shape":3},{"name":"MASK","type":"MASK","links":[],"slot_index":1,"shape":3}],"properties":{"Node name for S&R":"LoadImage"},"widgets_values":["00254-1050969671.png","image"]},{"id":653,"type":"PadImageForDiffusersOutpaint","pos":{"0":290,"1":300},"size":{"0":290,"1":150},"flags":{},"order":3,"mode":0,"inputs":[{"name":"image","type":"IMAGE","link":1194}],"outputs":[{"name":"IMAGE","type":"IMAGE","links":null,"shape":3},{"name":"MASK","type":"MASK","links":null,"shape":3},{"name":"diffuser_outpaint_cnet_image","type":"IMAGE","links":[1300],"shape":3}],"properties":{"Node name for S&R":"PadImageForDiffusersOutpaint"},"widgets_values":[720,1280,"Middle"],"color":"#232","bgcolor":"#353"},{"id":675,"type":"LoadDiffusersOutpaintModels","pos":{"0":-210,"1":160},"size":{"0":320,"1":154},"flags":{},"order":2,"mode":0,"inputs":[],"outputs":[{"name":"diffusers_outpaint_pipe","type":"PIPE","links":[1264],"shape":3}],"properties":{"Node name for S&R":"LoadDiffusersOutpaintModels"},"widgets_values":["RealVisXL_V5.0_Lightning","controlnet-union-sdxl-1.0","auto","auto",false],"color":"#223","bgcolor":"#335"},{"id":655,"type":"EncodeDiffusersOutpaintPrompt","pos":{"0":130,"1":150},"size":{"0":463.6000061035156,"1":80},"flags":{},"order":4,"mode":0,"inputs":[{"name":"diffusers_outpaint_pipe","type":"PIPE","link":1264}],"outputs":[{"name":"diffusers_outpaint_pipe","type":"PIPE","links":[1298],"shape":3},{"name":"diffusers_outpaint_conditioning","type":"CONDITIONING","links":[1299],"shape":3}],"properties":{"Node name for S&R":"EncodeDiffusersOutpaintPrompt"},"widgets_values":["8k"],"color":"#232","bgcolor":"#353"}],"links":[[679,402,0,351,0,"IMAGE"],[1194,1,0,653,0,"IMAGE"],[1264,675,0,655,0,"PIPE"],[1296,683,0,688,1,"VAE"],[1297,688,0,402,0,"IMAGE"],[1298,655,0,689,0,"PIPE"],[1299,655,1,689,1,"CONDITIONING"],[1300,653,2,689,2,"IMAGE"],[1301,689,0,688,0,"LATENT"]],"groups":[],"config":{},"extra":{"ds":{"scale":1.2839025177495011,"offset":[496.06593222161086,74.19937427917273]}},"version":0.4}