llm_gemma4_text_gen native workflow error: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu!
- Dominant language
- Python
- Stars
- 133k
- Forks
- 15.7k
- Avg merge
- 1d 7h
- Merged PRs (30d)
- 158
Description
### Custom Node Testing
- [x] I have tried disabling custom nodes and the issue persists (see [how to disable custom nodes](https://docs.comfy.org/troubleshooting/custom-node-issues#step-1%3A-test-with-all-custom-nodes-disabled) if you need help)
### Expected Behavior
I expected the workflow to run.
### Actual Behavior
Crash at the TextGenerate node:
RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! (when checking argument for argument min in method wrapper_CUDA_clamp_Tensor)
### Steps to Reproduce
[llm_gemma4_text_gen_video.json](https://github.com/user-attachments/files/28186301/llm_gemma4_text_gen_video.json)
### Debug Logs
```powershell
RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! (when checking argument for argument min in method wrapper_CUDA_clamp_Tensor)
# ComfyUI Error Report
## Error Details
- **Node ID:** 1
- **Node Type:** TextGenerate
- **Exception Type:** RuntimeError
- **Exception Message:** RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! (when checking argument for argument min in method wrapper_CUDA_clamp_Tensor)
## Stack Trace
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 536, in execute
output_data, output_ui, has_subgraph, has_pending_tasks = await get_output_data(prompt_id, unique_id, obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb, v3_data=v3_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 336, in get_output_data
return_values = await _async_map_node_over_list(prompt_id, unique_id, obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb, v3_data=v3_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 310, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 298, in process_inputs
result = f(**inputs)
^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_api\internal\__init__.py", line 149, in wrapped_func
return method(locked_class, **inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_api\latest\_io.py", line 1833, in EXECUTE_NORMALIZED
to_return = cls.execute(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_extras\nodes_textgen.py", line 63, in execute
generated_ids = clip.generate(
^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd.py", line 451, in generate
return self.cond_stage_model.generate(tokens, do_sample=do_sample, max_length=max_length, temperature=temperature, top_k=top_k, top_p=top_p, min_p=min_p, repetition_penalty=repetition_penalty, seed=seed, presence_penalty=presence_penalty)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd1_clip.py", line 744, in generate
return getattr(self, self.clip).generate(tokens, do_sample=do_sample, max_length=max_length, temperature=temperature, top_k=top_k, top_p=top_p, min_p=min_p, repetition_penalty=repetition_penalty, seed=seed, presence_penalty=presence_penalty)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 1243, in generate
embeds, _, _, embeds_info = sd1_clip.SDClipModel.process_tokens(self, tokens_only, self.execution_device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd1_clip.py", line 228, in process_tokens
emb, extra = self.transformer.preprocess_embed(emb, device=device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 431, in preprocess_embed
result, extra = super().preprocess_embed(embed, device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 419, in preprocess_embed
vision_out = self.vision_model(image.to(device, dtype=torch.float32), max_soft_tokens=max_soft_tokens)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 680, in forward
x = layer(x, freqs, attention_mask=mask)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 576, in forward
x = self.self_attn(x, freqs, attention_mask=attention_mask)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 544, in forward
xq = self.q_proj(x).view(batch_size, seq_length, self.num_heads, self.head_dim)
^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 507, in forward
x = x.clamp(min=self.input_min, max=self.input_max)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
## System Information
- **ComfyUI Version:** 0.22.0
- **Arguments:** ComfyUI\main.py --output-directory E:\SD-Output-Comfy --use-sage-attention --reserve-vram 8
- **OS:** win32
- **Python Version:** 3.12.7 (tags/v3.12.7:0b05ead, Oct 1 2024, 03:06:41) [MSC v.1941 64 bit (AMD64)]
- **Embedded Python:** true
- **PyTorch Version:** 2.7.1+cu126
## Devices
- **Name:** cuda:0 NVIDIA GeForce RTX 4060 Ti : cudaMallocAsync
- **Type:** cuda
- **VRAM Total:** 17175150592
- **VRAM Free:** 15960375296
- **Torch VRAM Total:** 0
- **Torch VRAM Free:** 0
## Logs
2026-05-24T03:09:18.873530 - 2026-05-24 03:09:18.872 | WARNING | cozy_comfyui.node:load_module:75 - cannot import name 'InputType' from 'jovimetrix' (C:\SD-Comfy/ComfyUI_windows_portable/ComfyUI/custom_nodes\jovimetrix\__init__.py)
2026-05-24T03:09:18.873530 - 2026-05-24 03:09:18.872 | WARNING | cozy_comfyui.node:load_module:75 - cannot import name 'InputType' from 'jovimetrix' (C:\SD-Comfy/ComfyUI_windows_portable/ComfyUI/custom_nodes\jovimetrix\__init__.py)
2026-05-24T03:09:18.873530 - 2026-05-24 03:09:18.872 | WARNING | cozy_comfyui.node:load_module:75 - cannot import name 'InputType' from 'jovimetrix' (C:\SD-Comfy/ComfyUI_windows_portable/ComfyUI/custom_nodes\jovimetrix\__init__.py)
2026-05-24T03:09:18.875551 - 2026-05-24 03:09:18.874 | WARNING | cozy_comfyui.node:load_module:74 - module failed jovimetrix.core.device_stream
2026-05-24T03:09:18.875551 - 2026-05-24 03:09:18.874 | WARNING | cozy_comfyui.node:load_module:74 - module failed jovimetrix.core.device_stream
2026-05-24T03:09:18.876555 - 2026-05-24 03:09:18.874 | WARNING | cozy_comfyui.node:load_module:74 - module failed jovimetrix.core.device_stream
2026-05-24T03:09:18.876555 - 2026-05-24 03:09:18.875 | WARNING | cozy_comfyui.node:load_module:75 - cannot import name 'JOV_TYPE_IMAGE' from 'jovimetrix' (C:\SD-Comfy/ComfyUI_windows_portable/ComfyUI/custom_nodes\jovimetrix\__init__.py)
2026-05-24T03:09:18.876555 - 2026-05-24 03:09:18.875 | WARNING | cozy_comfyui.node:load_module:75 - cannot import name 'JOV_TYPE_IMAGE' from 'jovimetrix' (C:\SD-Comfy/ComfyUI_windows_portable/ComfyUI/custom_nodes\jovimetrix\__init__.py)
2026-05-24T03:09:18.877612 - 2026-05-24 03:09:18.875 | WARNING | cozy_comfyui.node:load_module:75 - cannot import name 'JOV_TYPE_IMAGE' from 'jovimetrix' (C:\SD-Comfy/ComfyUI_windows_portable/ComfyUI/custom_nodes\jovimetrix\__init__.py)
2026-05-24T03:09:18.878632 - 2026-05-24 03:09:18.877 | INFO | cozy_comfyui.node:loader:135 - JOVIMETRIX 53 nodes loaded
2026-05-24T03:09:18.878632 - 2026-05-24 03:09:18.877 | INFO | cozy_comfyui.node:loader:135 - JOVIMETRIX 53 nodes loaded
2026-05-24T03:09:18.879745 - 2026-05-24 03:09:18.877 | INFO | cozy_comfyui.node:loader:135 - JOVIMETRIX 53 nodes loaded
2026-05-24T03:09:18.984271 - Using sage attention
2026-05-24T03:09:18.999579 - (RES4LYF) Init2026-05-24T03:09:18.999579 -
2026-05-24T03:09:18.999579 - (RES4LYF) Importing beta samplers.2026-05-24T03:09:18.999579 -
2026-05-24T03:09:19.022525 - (RES4LYF) Importing legacy samplers.2026-05-24T03:09:19.022525 -
2026-05-24T03:09:19.059434 -
2026-05-24T03:09:19.059434 - [92m[rgthree-comfy] Loaded 48 magnificent nodes. 🎉[0m2026-05-24T03:09:19.059434 -
2026-05-24T03:09:19.059434 -
2026-05-24T03:09:19.059434 - [33m[rgthree-comfy] ComfyUI's new Node 2.0 rendering may be incompatible with some rgthree-comfy nodes and features, breaking some rendering as well as losing the ability to access a node's properties (a vital part of many nodes). It also appears to run MUCH more slowly spiking CPU usage and causing jankiness and unresponsiveness, especially with large workflows. Personally I am not planning to use the new Nodes 2.0 and, unfortunately, am not able to invest the time to investigate and overhaul rgthree-comfy where needed. If you have issues when Nodes 2.0 is enabled, I'd urge you to switch it off as well and join me in hoping ComfyUI is not planning to deprecate the existing, stable canvas rendering all together.
[0m2026-05-24T03:09:19.059434 -
2026-05-24T03:09:19.894542 - FETCH ComfyRegistry Data: 10/1472026-05-24T03:09:19.894542 -
2026-05-24T03:09:19.911611 - [34mWAS Node Suite: [0mOpenCV Python FFMPEG support is enabled[0m2026-05-24T03:09:19.911611 -
2026-05-24T03:09:19.911611 - [34mWAS Node Suite [93mWarning: [0m`ffmpeg_bin_path` is not set in `C:\SD-Comfy\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.[0m2026-05-24T03:09:19.911611 -
2026-05-24T03:09:20.656423 - [34mWAS Node Suite: [0mFinished.[0m [32mLoaded[0m [0m220[0m [32mnodes successfully.[0m2026-05-24T03:09:20.656423 -
2026-05-24T03:09:20.656423 -
[3m[93m"Don't be pushed around by the fears in your mind. Be led by the dreams in your heart."[0m[3m - Roy T. Bennett[0m
2026-05-24T03:09:20.656423 -
2026-05-24T03:09:20.661918 - [31m[94m[WAS Extras][0m Loading extra custom nodes...2026-05-24T03:09:20.661918 -
2026-05-24T03:09:20.665573 - [31m[94m[WAS Extras][0m Import times for extras:2026-05-24T03:09:20.665573 -
2026-05-24T03:09:20.665573 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\was_extras\ConditioningBlend.py2026-05-24T03:09:20.665573 -
2026-05-24T03:09:20.665573 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\was_extras\DebugThis.py2026-05-24T03:09:20.666949 -
2026-05-24T03:09:20.666949 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\was_extras\VAEEncodeForInpaint.py2026-05-24T03:09:20.666949 -
2026-05-24T03:09:20.666949 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\was_extras\VividSharpen.py2026-05-24T03:09:20.666949 -
2026-05-24T03:09:20.666949 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\was_extras\ksampler_sequence.py2026-05-24T03:09:20.666949 -
2026-05-24T03:09:20.666949 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\was_extras\BLVaeEncode.py2026-05-24T03:09:20.666949 -
2026-05-24T03:09:20.677451 -
Import times for custom nodes:
2026-05-24T03:09:20.677451 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUi-Scale-Image-to-Total-Pixels-Advanced
2026-05-24T03:09:20.677451 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\websocket_image_save.py
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUi-Load-Image-And-Display-Prompt-Metadata
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-FloatRamp
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Olm-CurveEditor
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-GPU-temperature-protection
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_AdvancedRefluxControl
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Universal-Styler
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Noise
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\sd-webui-color-enhance
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\cd-tuner_negpip-ComfyUI
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-easy-padding
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy-plasma
2026-05-24T03:09:20.678840 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUi_NNLatentUpscale
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Unload-Model
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\sigmas_tools_and_the_golden_scheduler
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Lotus
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Detail-Daemon
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mxtoolkit
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Adaptive-Guidance
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ICEdit-ComfyUI-official
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-WanStartEndFramesNative
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\TorchCompileModel_LoRASafe
2026-05-24T03:09:20.680168 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-HunyuanVideoMultiLora
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-cache-cleaner
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-ImageAutotone
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-GlifNodes
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-post-processing-nodes
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\Comfyui-flexi-lora-loader
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_SD3_Flowedit
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyLiterals
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\janus-pro
2026-05-24T03:09:20.681224 - 0.0 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-prompt-reader-node
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_JPS-Nodes
2026-05-24T03:09:20.681224 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\cg-use-everywhere
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_steudio
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-LatentWalk
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-LatentSyncWrapper
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\wan22fmlf
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-TiledDiffusion
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-eesahesNodes
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-AutomaticCFG
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-UltimateSDUpscale-GGUF
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Simple_Readable_Metadata-SG
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-inpaint-cropandstitch
2026-05-24T03:09:20.682246 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\mikey_nodes
2026-05-24T03:09:20.683326 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-GGUF
2026-05-24T03:09:20.683326 - 0.0 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-LTXTricks
2026-05-24T03:09:20.683326 - 0.0 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_pulid_flux_ll
2026-05-24T03:09:20.683326 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-depthcrafter-nodes
2026-05-24T03:09:20.683326 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_IPAdapter_plus
2026-05-24T03:09:20.683326 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\sd-perturbed-attention
2026-05-24T03:09:20.683326 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-DDColor
2026-05-24T03:09:20.683326 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\execution-inversion-demo-comfyui
2026-05-24T03:09:20.683326 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\was_extras
2026-05-24T03:09:20.683326 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-QualityOfLifeSuit_Omar92
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_FluxAttentionMask
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\wavespeed
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy-image-saver
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\steerable-motion
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\Comfy-WaveSpeed
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\Comfyui-ergouzi-kaiguan
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-depthanythingv2
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-various
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-FramePackWrapper
2026-05-24T03:09:20.684348 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-florence2
2026-05-24T03:09:20.684348 - 0.0 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_patches_ll
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyMath
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Custom-Scripts
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Mira
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_ultimatesdupscale
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_essentials
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Video-Depth-Anything
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Yvann-Nodes
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-WanVideoStartEndFrames
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-QwenVL
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_HiDream-Sampler
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\Image-Detection-Bypass-Utility
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Frame-Interpolation
2026-05-24T03:09:20.685391 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\Derfuu_ComfyUI_ModdedNodes
2026-05-24T03:09:20.686543 - 0.0 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\deforum-comfy-nodes
2026-05-24T03:09:20.686543 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Advanced-ControlNet
2026-05-24T03:09:20.686543 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-segment-anything-2
2026-05-24T03:09:20.686543 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-KJNodes
2026-05-24T03:09:20.686543 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-MelBandRoFormer
2026-05-24T03:09:20.686543 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-vrgamedevgirl
2026-05-24T03:09:20.686543 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Fluxtapoz
2026-05-24T03:09:20.686543 - 0.0 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-LTXVideo
2026-05-24T03:09:20.686543 - 0.0 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-reactor-node
2026-05-24T03:09:20.686543 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-HunyuanLoom
2026-05-24T03:09:20.687648 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_ExtraModels
2026-05-24T03:09:20.687648 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-multigpu
2026-05-24T03:09:20.687648 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\rgthree-comfy
2026-05-24T03:09:20.687648 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-ControlNeXt-SVD
2026-05-24T03:09:20.687648 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-moondream
2026-05-24T03:09:20.687648 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-HunyuanVideoWrapper
2026-05-24T03:09:20.687648 - 0.0 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-PuLID-Flux-Enhanced
2026-05-24T03:09:20.687648 - 0.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes
2026-05-24T03:09:20.687648 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux
2026-05-24T03:09:20.687648 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-MMAudio
2026-05-24T03:09:20.687648 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inspire-Pack
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\DJZ-Nodes
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Crystools
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfy_mtb
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_tinyterraNodes
2026-05-24T03:09:20.688716 - 0.1 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-InstructIR
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-videohelpersuite
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-WanVideoWrapper
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-tensorops
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Impact-Subpack
2026-05-24T03:09:20.688716 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-MediaMixer
2026-05-24T03:09:20.689720 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\RES4LYF
2026-05-24T03:09:20.689720 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Impact-Pack
2026-05-24T03:09:20.689720 - 0.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_LayerStyle
2026-05-24T03:09:20.689720 - 0.1 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-magickwand
2026-05-24T03:09:20.689720 - 0.2 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-rmbg
2026-05-24T03:09:20.689720 - 0.2 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-AnimateDiff-Evolved
2026-05-24T03:09:20.689720 - 0.2 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\BEN2_ComfyUI
2026-05-24T03:09:20.689720 - 0.2 seconds (IMPORT FAILED): C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-LLaVA-OneVision
2026-05-24T03:09:20.689720 - 0.3 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-EasyColorCorrector
2026-05-24T03:09:20.689720 - 0.4 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_ryanonyheinside
2026-05-24T03:09:20.689720 - 0.5 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-SUPIR
2026-05-24T03:09:20.689720 - 0.5 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\DZ-FaceDetailer
2026-05-24T03:09:20.690925 - 0.6 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-GIMM-VFI
2026-05-24T03:09:20.690925 - 0.8 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-inspyrenet-rembg
2026-05-24T03:09:20.690925 - 0.9 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-easy-use
2026-05-24T03:09:20.690925 - 1.0 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\bilbox-comfyui
2026-05-24T03:09:20.690925 - 1.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Manager
2026-05-24T03:09:20.690925 - 1.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-NegiTools
2026-05-24T03:09:20.690925 - 1.3 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\jovimetrix
2026-05-24T03:09:20.690925 - 1.6 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\audio-separation-nodes-comfyui
2026-05-24T03:09:20.690925 - 1.6 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\was-node-suite-comfyui
2026-05-24T03:09:20.691928 - 1.9 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Image-Filters
2026-05-24T03:09:20.691928 - 2.2 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_Primere_Nodes
2026-05-24T03:09:20.691928 - 4.1 seconds: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-CogVideoXWrapper
2026-05-24T03:09:20.691928 -
2026-05-24T03:09:20.695026 - Context impl SQLiteImpl.
2026-05-24T03:09:20.695026 - Will assume non-transactional DDL.
2026-05-24T03:09:20.822051 - Using RAM pressure cache.
2026-05-24T03:09:20.822051 - Starting server
2026-05-24T03:09:20.823306 - To see the GUI go to: http://127.0.0.1:8188
2026-05-24T03:09:23.872346 - FETCH ComfyRegistry Data: 15/1472026-05-24T03:09:23.872346 -
2026-05-24T03:09:28.023886 - FETCH ComfyRegistry Data: 20/1472026-05-24T03:09:28.023886 -
2026-05-24T03:09:31.744109 - FETCH ComfyRegistry Data: 25/1472026-05-24T03:09:31.744109 -
2026-05-24T03:09:36.077958 - FETCH ComfyRegistry Data: 30/1472026-05-24T03:09:36.077958 -
2026-05-24T03:09:39.788647 - FETCH ComfyRegistry Data: 35/1472026-05-24T03:09:39.788647 -
2026-05-24T03:09:43.728566 - FETCH ComfyRegistry Data: 40/1472026-05-24T03:09:43.728566 -
2026-05-24T03:09:47.760839 - FETCH ComfyRegistry Data: 45/1472026-05-24T03:09:47.760839 -
2026-05-24T03:09:51.879875 - FETCH ComfyRegistry Data: 50/1472026-05-24T03:09:51.879875 -
2026-05-24T03:09:55.921567 - FETCH ComfyRegistry Data: 55/1472026-05-24T03:09:55.921567 -
2026-05-24T03:10:00.064251 - FETCH ComfyRegistry Data: 60/1472026-05-24T03:10:00.064251 -
2026-05-24T03:10:03.778958 - FETCH ComfyRegistry Data: 65/1472026-05-24T03:10:03.780054 -
2026-05-24T03:10:07.675967 - FETCH ComfyRegistry Data: 70/1472026-05-24T03:10:07.675967 -
2026-05-24T03:10:11.410050 - FETCH ComfyRegistry Data: 75/1472026-05-24T03:10:11.410050 -
2026-05-24T03:10:15.150698 - FETCH ComfyRegistry Data: 80/1472026-05-24T03:10:15.150698 -
2026-05-24T03:10:19.473376 - FETCH ComfyRegistry Data: 85/1472026-05-24T03:10:19.473376 -
2026-05-24T03:10:23.493144 - FETCH ComfyRegistry Data: 90/1472026-05-24T03:10:23.493144 -
2026-05-24T03:10:27.854942 - FETCH ComfyRegistry Data: 95/1472026-05-24T03:10:27.854942 -
2026-05-24T03:10:32.040245 - FETCH ComfyRegistry Data: 100/1472026-05-24T03:10:32.040245 -
2026-05-24T03:10:36.242045 - FETCH ComfyRegistry Data: 105/1472026-05-24T03:10:36.242045 -
2026-05-24T03:10:40.343331 - FETCH ComfyRegistry Data: 110/1472026-05-24T03:10:40.343331 -
2026-05-24T03:10:44.436515 - FETCH ComfyRegistry Data: 115/1472026-05-24T03:10:44.437531 -
2026-05-24T03:10:48.374943 - FETCH ComfyRegistry Data: 120/1472026-05-24T03:10:48.374943 -
2026-05-24T03:10:52.626121 - FETCH ComfyRegistry Data: 125/1472026-05-24T03:10:52.627200 -
2026-05-24T03:10:56.878970 - FETCH ComfyRegistry Data: 130/1472026-05-24T03:10:56.878970 -
2026-05-24T03:11:00.955552 - FETCH ComfyRegistry Data: 135/1472026-05-24T03:11:00.956577 -
2026-05-24T03:11:05.071099 - FETCH ComfyRegistry Data: 140/1472026-05-24T03:11:05.071099 -
2026-05-24T03:11:09.320854 - FETCH ComfyRegistry Data: 145/1472026-05-24T03:11:09.320854 -
2026-05-24T03:11:11.344531 - FETCH ComfyRegistry Data [DONE]2026-05-24T03:11:11.344531 -
2026-05-24T03:11:11.604087 - [ComfyUI-Manager] default cache updated: https://api.comfy.org/nodes
2026-05-24T03:11:11.709300 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2026-05-24T03:11:11.709300 - 2026-05-24T03:11:11.930436 - [DONE]2026-05-24T03:11:11.930436 -
2026-05-24T03:11:12.037597 - [ComfyUI-Manager] All startup tasks have been completed.
2026-05-24T03:13:22.111590 - [DEPRECATION WARNING] Detected import of deprecated legacy API: /scripts/ui/components/buttonGroup.js. This is likely caused by a custom node extension using outdated APIs. Please update your extensions or contact the extension author for an updated version.
2026-05-24T03:13:22.114948 - [DEPRECATION WARNING] Detected import of deprecated legacy API: /scripts/ui.js. This is likely caused by a custom node extension using outdated APIs. Please update your extensions or contact the extension author for an updated version.
2026-05-24T03:13:22.117248 - [DEPRECATION WARNING] Detected import of deprecated legacy API: /extensions/core/clipspace.js. This is likely caused by a custom node extension using outdated APIs. Please update your extensions or contact the extension author for an updated version.
2026-05-24T03:13:22.117248 - [DEPRECATION WARNING] Detected import of deprecated legacy API: /extensions/core/groupNode.js. This is likely caused by a custom node extension using outdated APIs. Please update your extensions or contact the extension author for an updated version.
2026-05-24T03:13:22.120274 - [DEPRECATION WARNING] Detected import of deprecated legacy API: /extensions/core/widgetInputs.js. This is likely caused by a custom node extension using outdated APIs. Please update your extensions or contact the extension author for an updated version.
2026-05-24T03:13:22.648756 - BilboX LUTs path set to:2026-05-24T03:13:22.648756 - 2026-05-24T03:13:22.648756 - C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\bilbox-comfyui\luts2026-05-24T03:13:22.648756 -
2026-05-24T03:13:22.650089 - BilboX LUTs path set to:2026-05-24T03:13:22.650089 - 2026-05-24T03:13:22.650089 - C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\bilbox-comfyui\luts2026-05-24T03:13:22.650089 -
2026-05-24T03:13:24.946167 - [33mQualityOfLifeSuit_Omar92:[0m:NSP ready2026-05-24T03:13:24.946167 -
2026-05-24T03:13:25.148779 - YOUR FOLDER: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI2026-05-24T03:13:25.148779 -
2026-05-24T03:13:25.150204 - YOUR FOLDER: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI2026-05-24T03:13:25.150204 -
2026-05-24T03:13:28.054973 - [DEPRECATION WARNING] Detected import of deprecated legacy API: /scripts/ui/components/button.js. This is likely caused by a custom node extension using outdated APIs. Please update your extensions or contact the extension author for an updated version.
2026-05-24T03:13:28.297686 - BilboX LUTs path set to:2026-05-24T03:13:28.297686 - 2026-05-24T03:13:28.297686 - C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\bilbox-comfyui\luts2026-05-24T03:13:28.297686 -
2026-05-24T03:13:28.297686 - BilboX LUTs path set to:2026-05-24T03:13:28.297686 - 2026-05-24T03:13:28.297686 - C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\custom_nodes\bilbox-comfyui\luts2026-05-24T03:13:28.297686 -
2026-05-24T03:13:30.673897 - YOUR FOLDER: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI2026-05-24T03:13:30.673897 -
2026-05-24T03:13:30.674901 - YOUR FOLDER: C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI2026-05-24T03:13:30.674901 -
2026-05-24T03:14:36.361262 - got prompt
2026-05-24T03:14:38.119225 - [MultiGPU Core Patching] text_encoder_device_patched returning device: cuda:0 (current_text_encoder_device=cuda:0)
2026-05-24T03:14:42.735829 - CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16
2026-05-24T03:14:42.814816 - Requested to load Gemma4TEModel_
2026-05-24T03:14:43.786802 - loaded partially; 6209.80 MB usable, 0.00 MB loaded, 15220.07 MB offloaded, 17460.50 MB buffer reserved, lowvram patches: 0
2026-05-24T03:14:44.583319 - !!! Exception during processing !!! Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! (when checking argument for argument min in method wrapper_CUDA_clamp_Tensor)
2026-05-24T03:14:44.592018 - Traceback (most recent call last):
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 536, in execute
output_data, output_ui, has_subgraph, has_pending_tasks = await get_output_data(prompt_id, unique_id, obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb, v3_data=v3_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 336, in get_output_data
return_values = await _async_map_node_over_list(prompt_id, unique_id, obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb, v3_data=v3_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 310, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 298, in process_inputs
result = f(**inputs)
^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_api\internal\__init__.py", line 149, in wrapped_func
return method(locked_class, **inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_api\latest\_io.py", line 1833, in EXECUTE_NORMALIZED
to_return = cls.execute(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_extras\nodes_textgen.py", line 63, in execute
generated_ids = clip.generate(
^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd.py", line 451, in generate
return self.cond_stage_model.generate(tokens, do_sample=do_sample, max_length=max_length, temperature=temperature, top_k=top_k, top_p=top_p, min_p=min_p, repetition_penalty=repetition_penalty, seed=seed, presence_penalty=presence_penalty)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd1_clip.py", line 744, in generate
return getattr(self, self.clip).generate(tokens, do_sample=do_sample, max_length=max_length, temperature=temperature, top_k=top_k, top_p=top_p, min_p=min_p, repetition_penalty=repetition_penalty, seed=seed, presence_penalty=presence_penalty)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 1243, in generate
embeds, _, _, embeds_info = sd1_clip.SDClipModel.process_tokens(self, tokens_only, self.execution_device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd1_clip.py", line 228, in process_tokens
emb, extra = self.transformer.preprocess_embed(emb, device=device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 431, in preprocess_embed
result, extra = super().preprocess_embed(embed, device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 419, in preprocess_embed
vision_out = self.vision_model(image.to(device, dtype=torch.float32), max_soft_tokens=max_soft_tokens)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 680, in forward
x = layer(x, freqs, attention_mask=mask)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 576, in forward
x = self.self_attn(x, freqs, attention_mask=attention_mask)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 544, in forward
xq = self.q_proj(x).view(batch_size, seq_length, self.num_heads, self.head_dim)
^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 507, in forward
x = x.clamp(min=self.input_min, max=self.input_max)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! (when checking argument for argument min in method wrapper_CUDA_clamp_Tensor)
2026-05-24T03:14:44.595053 - Prompt executed in 8.19 seconds
2026-05-24T03:23:19.184746 - got prompt
2026-05-24T03:23:20.870440 - loaded partially; 6155.67 MB usable, 0.00 MB loaded, 15220.07 MB offloaded, 17460.50 MB buffer reserved, lowvram patches: 0
2026-05-24T03:23:21.349432 - !!! Exception during processing !!! Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! (when checking argument for argument min in method wrapper_CUDA_clamp_Tensor)
2026-05-24T03:23:21.351642 - Traceback (most recent call last):
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 536, in execute
output_data, output_ui, has_subgraph, has_pending_tasks = await get_output_data(prompt_id, unique_id, obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb, v3_data=v3_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 336, in get_output_data
return_values = await _async_map_node_over_list(prompt_id, unique_id, obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb, v3_data=v3_data)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 310, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\execution.py", line 298, in process_inputs
result = f(**inputs)
^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_api\internal\__init__.py", line 149, in wrapped_func
return method(locked_class, **inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_api\latest\_io.py", line 1833, in EXECUTE_NORMALIZED
to_return = cls.execute(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy_extras\nodes_textgen.py", line 63, in execute
generated_ids = clip.generate(
^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd.py", line 451, in generate
return self.cond_stage_model.generate(tokens, do_sample=do_sample, max_length=max_length, temperature=temperature, top_k=top_k, top_p=top_p, min_p=min_p, repetition_penalty=repetition_penalty, seed=seed, presence_penalty=presence_penalty)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd1_clip.py", line 744, in generate
return getattr(self, self.clip).generate(tokens, do_sample=do_sample, max_length=max_length, temperature=temperature, top_k=top_k, top_p=top_p, min_p=min_p, repetition_penalty=repetition_penalty, seed=seed, presence_penalty=presence_penalty)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 1243, in generate
embeds, _, _, embeds_info = sd1_clip.SDClipModel.process_tokens(self, tokens_only, self.execution_device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\sd1_clip.py", line 228, in process_tokens
emb, extra = self.transformer.preprocess_embed(emb, device=device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 431, in preprocess_embed
result, extra = super().preprocess_embed(embed, device)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 419, in preprocess_embed
vision_out = self.vision_model(image.to(device, dtype=torch.float32), max_soft_tokens=max_soft_tokens)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 680, in forward
x = layer(x, freqs, attention_mask=mask)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 576, in forward
x = self.self_attn(x, freqs, attention_mask=attention_mask)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 544, in forward
xq = self.q_proj(x).view(batch_size, seq_length, self.num_heads, self.head_dim)
^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1751, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1762, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\SD-Comfy\ComfyUI_windows_portable\ComfyUI\comfy\text_encoders\gemma4.py", line 507, in forward
x = x.clamp(min=self.input_min, max=self.input_max)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
RuntimeError: Expected all tensors to be on the same device, but found at least two devices, cuda:0 and cpu! (when checking argument for argument min in method wrapper_CUDA_clamp_Tensor)
2026-05-24T03:23:21.354030 - Prompt executed in 2.12 seconds
## Attached Workflow
Please make sure that workflow does not contain any sensitive information such as API keys or passwords.
{"id":"6a7153c2-a483-48c6-bddf-7a3884dee602","revision":0,"last_node_id":15,"last_link_id":12,"nodes":[{"id":4,"type":"PreviewAny","pos":[970,270],"size":[560,660],"flags":{"collapsed":false},"order":9,"mode":0,"inputs":[{"localized_name":"source","name":"source","type":"*","link":3}],"outputs":[{"localized_name":"STRING","name":"STRING","type":"STRING","links":null}],"properties":{"cnr_id":"comfy-core","ver":"0.21.0","Node name for S&R":"PreviewAny","ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":[null,null,null]},{"id":6,"type":"LoadVideo","pos":[40,1140],"size":[290,589.5555555555555],"flags":{},"order":0,"mode":0,"inputs":[{"localized_name":"file","name":"file","type":"COMBO","widget":{"name":"file"},"link":null},{"localized_name":"choose file to upload","name":"upload","type":"IMAGEUPLOAD","widget":{"name":"upload"},"link":null}],"outputs":[{"localized_name":"VIDEO","name":"VIDEO","type":"VIDEO","links":[5]}],"properties":{"cnr_id":"comfy-core","ver":"0.21.0","Node name for S&R":"LoadVideo","ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":["T2V_00160.mp4","image"]},{"id":8,"type":"MarkdownNote","pos":[-710,270],"size":[640,674.96875],"flags":{},"order":1,"mode":0,"inputs":[],"outputs":[],"properties":{"ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":["Related PR: [#13376](https://github.com/Comfy-Org/ComfyUI/pull/13376)\n\n## Model Links (for Local Users)\n\n**text_encoders**\n\n- [gemma4_e4b_it_fp8_scaled.safetensors](https://huggingface.co/Comfy-Org/gemma-4/resolve/main/text_encoders/gemma4_e4b_it_fp8_scaled.safetensors)\n\n## Model Storage Location\n\n\n📂 ComfyUI/\n├── 📂 models/\n│ └── 📂 text_encoders/\n│ └── gemma4_e4b_it_fp8_scaled.safetensors\n\n\n---\n* Other model weights: https://huggingface.co/Comfy-Org/gemma-4/tree/main/text_encoders\n\n## Report Issue\n\nNote: Please update ComfyUI first ([guide](https://docs.comfy.org/installation/update_comfyui)) and prepare required models. Desktop/Cloud updates follow stable releases, so some nightly-supported models may not be available yet.\n\n- Cannot run / runtime errors: [ComfyUI/issues](https://github.com/comfyanonymous/ComfyUI/issues)\n- UI / frontend issues: [ComfyUI_frontend/issues](https://github.com/Comfy-Org/ComfyUI_frontend/issues)\n- Workflow issues: [workflow_templates/issues](https://github.com/Comfy-Org/workflow_templates/issues)\n"],"color":"#222","bgcolor":"#000"},{"id":9,"type":"MarkdownNote","pos":[-730,1020],"size":[660,600],"flags":{},"order":2,"mode":0,"inputs":[],"outputs":[],"title":"Gemma4 Core Capabilities","properties":{"ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":["**Core Capabilities**\n\n[Gemma 4](https://huggingface.co/google/gemma-4-E2B-it) models handle a broad range of tasks across text, vision, and audio. Key capabilities include:\n\n+ **Thinking** – Built-in reasoning mode that lets the model think step-by-step before answering.\n+ **Long Context** – Context windows of up to 128K tokens (E2B/E4B) and 256K tokens (26B A4B/31B).\n+ **Image Understanding** – Object detection, Document/PDF parsing, screen and UI understanding, chart comprehension, OCR (including multilingual), handwriting recognition, and pointing. Images can be processed at variable aspect ratios and resolutions.\n+ **Video Understanding** – Analyze video by processing sequences of frames.\n+ **Interleaved Multimodal Input** – Freely mix text and images in any order within a single prompt.\n+ **Function Calling** – Native support for structured tool use, enabling agentic workflows.\n+ **Coding** – Code generation, completion, and correction.\n+ **Multilingual** – Out-of-the-box support for 35+ languages, pre-trained on 140+ languages.\n+ **Audio** (E2B and E4B only) – Automatic speech recognition (ASR) and speech-to-translated-text translation across multiple languages.\n"],"color":"#222","bgcolor":"#000"},{"id":2,"type":"LoadImage","pos":[10,480],"size":[380,340],"flags":{},"order":3,"mode":4,"inputs":[{"localized_name":"image","name":"image","type":"COMBO","widget":{"name":"image"},"link":null},{"localized_name":"choose file to upload","name":"upload","type":"IMAGEUPLOAD","widget":{"name":"upload"},"link":null}],"outputs":[{"localized_name":"IMAGE","name":"IMAGE","type":"IMAGE","links":[]},{"localized_name":"MASK","name":"MASK","type":"MASK","links":null}],"properties":{"cnr_id":"comfy-core","ver":"0.21.0","Node name for S&R":"LoadImage","ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":["the_lily_veil.png","image"]},{"id":5,"type":"LoadAudio","pos":[100,870],"size":[290,160],"flags":{},"order":4,"mode":4,"inputs":[{"localized_name":"audio","name":"audio","type":"COMBO","widget":{"name":"audio"},"link":null},{"localized_name":"audioUI","name":"audioUI","type":"AUDIO_UI","widget":{"name":"audioUI"},"link":null},{"localized_name":"choose file to upload","name":"upload","type":"AUDIOUPLOAD","widget":{"name":"upload"},"link":null}],"outputs":[{"localized_name":"AUDIO","name":"AUDIO","type":"AUDIO","links":[]}],"properties":{"cnr_id":"comfy-core","ver":"0.21.0","Node name for S&R":"LoadAudio","ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":["voice_demo.mp3",null,null]},{"id":14,"type":"ttN text","pos":[741.7592745627556,1124.1111925985203],"size":[464.6417789777438,501.6612174796044],"flags":{},"order":5,"mode":0,"inputs":[{"localized_name":"text","name":"text","type":"STRING","widget":{"name":"text"},"link":null}],"outputs":[{"localized_name":"text","name":"text","type":"STRING","links":[]}],"properties":{"cnr_id":"comfyui_tinyterranodes","ver":"1a90e43480563e9202f7f5482629b1d444e805ed","Node name for S&R":"ttN text","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.4"},"ttNnodeVersion":"1.0.0"},"widgets_values":["Write a detailed prompt to recreate this video with Wan video 2.2 generative ai. "]},{"id":1,"type":"TextGenerate","pos":[553.7405281669198,269.99999999999994],"size":[388.86552376698637,412],"flags":{},"order":8,"mode":0,"showAdvanced":true,"inputs":[{"localized_name":"clip","name":"clip","type":"CLIP","link":2},{"localized_name":"image","name":"image","shape":7,"type":"IMAGE","link":null},{"localized_name":"video","name":"video","shape":7,"type":"IMAGE","link":12},{"localized_name":"audio","name":"audio","shape":7,"type":"AUDIO","link":null},{"localized_name":"prompt","name":"prompt","type":"STRING","widget":{"name":"prompt"},"link":null},{"localized_name":"max_length","name":"max_length","type":"INT","widget":{"name":"max_length"},"link":null},{"localized_name":"sampling_mode","name":"sampling_mode","type":"COMFY_DYNAMICCOMBO_V3","widget":{"name":"sampling_mode"},"link":null},{"localized_name":"temperature","name":"sampling_mode.temperature","type":"FLOAT","widget":{"name":"sampling_mode.temperature"},"link":null},{"localized_name":"top_k","name":"sampling_mode.top_k","type":"INT","widget":{"name":"sampling_mode.top_k"},"link":null},{"localized_name":"top_p","name":"sampling_mode.top_p","type":"FLOAT","widget":{"name":"sampling_mode.top_p"},"link":null},{"localized_name":"min_p","name":"sampling_mode.min_p","type":"FLOAT","widget":{"name":"sampling_mode.min_p"},"link":null},{"localized_name":"repetition_penalty","name":"sampling_mode.repetition_penalty","type":"FLOAT","widget":{"name":"sampling_mode.repetition_penalty"},"link":null},{"localized_name":"seed","name":"sampling_mode.seed","type":"INT","widget":{"name":"sampling_mode.seed"},"link":null},{"localized_name":"presence_penalty","name":"sampling_mode.presence_penalty","shape":7,"type":"FLOAT","widget":{"name":"sampling_mode.presence_penalty"},"link":null},{"localized_name":"thinking","name":"thinking","shape":7,"type":"BOOLEAN","widget":{"name":"thinking"},"link":null},{"localized_name":"use_default_template","name":"use_default_template","shape":7,"type":"BOOLEAN","widget":{"name":"use_default_template"},"link":null}],"outputs":[{"localized_name":"generated_text","name":"generated_text","type":"STRING","links":[3]}],"properties":{"cnr_id":"comfy-core","ver":"0.21.0","Node name for S&R":"TextGenerate","ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":["Write a detailed prompt to recreate this video with Wan video 2.2 generative ai.",128,"on",0.7,64,0.95,0.05,1.05,0,0,false,true]},{"id":7,"type":"GetVideoComponents","pos":[410,1140],"size":[230,100],"flags":{},"order":7,"mode":0,"inputs":[{"localized_name":"video","name":"video","type":"VIDEO","link":5}],"outputs":[{"localized_name":"images","name":"images","type":"IMAGE","links":[12]},{"localized_name":"audio","name":"audio","type":"AUDIO","links":null},{"localized_name":"fps","name":"fps","type":"FLOAT","links":null}],"properties":{"cnr_id":"comfy-core","ver":"0.21.0","Node name for S&R":"GetVideoComponents","ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":[]},{"id":3,"type":"CLIPLoader","pos":[10,270],"size":[370,150],"flags":{},"order":6,"mode":0,"showAdvanced":false,"inputs":[{"localized_name":"clip_name","name":"clip_name","type":"COMBO","widget":{"name":"clip_name"},"link":null},{"localized_name":"type","name":"type","type":"COMBO","widget":{"name":"type"},"link":null},{"localized_name":"device","name":"device","shape":7,"type":"COMBO","widget":{"name":"device"},"link":null}],"outputs":[{"localized_name":"CLIP","name":"CLIP","type":"CLIP","links":[2]}],"properties":{"cnr_id":"comfy-core","ver":"0.21.0","Node name for S&R":"CLIPLoader","models":[{"name":"gemma4_e4b_it_fp8_scaled.safetensors","url":"https://huggingface.co/Comfy-Org/gemma-4/resolve/main/text_encoders/gemma4_e4b_it_fp8_scaled.safetensors","directory":"text_encoders"}],"ue_properties":{"widget_ue_connectable":{},"version":"7.4","input_ue_unconnectable":{}}},"widgets_values":["gemma4_e4b_it_bf16.safetensors","wan","default"]}],"links":[[2,3,0,1,0,"CLIP"],[3,1,0,4,0,"STRING"],[5,6,0,7,0,"VIDEO"],[12,7,0,1,2,"IMAGE"]],"groups":[{"id":1,"title":"Video Input Example","bounding":[30,1070,660,500],"color":"#3f789e","flags":{}}],"config":{},"extra":{"ds":{"scale":1.166790933714235,"offset":[304.78793576243277,-123.8072632882283]},"frontendVersion":"1.43.18","ue_links":[],"links_added_by_ue":[]},"version":0.4}
## Additional Context
(Please add any additional context or steps to reproduce the error here)
crashes when Load CLIP device = default
runs when Load CLIP device = cpu ** but very slow!
```
### Other
4060Ti with 16gb vram
64gb system ram
should work. doesn't work. please help.
Contributor guide
Assessment
This issue has not been assessed yet.