Duplicate console messages during the ComfyUI server start up.
- Dominant language
- Python
- Stars
- 133k
- Forks
- 15.7k
- Avg merge
- 1d 7h
- Merged PRs (30d)
- 158
Description
I'm not sure if this is a problem or not. I noticed recently that there are duplicate messages in server's console when I start main.py. To make sure is not caused by a custom node I moved all the custom nodes in the .disabled subfolder.
Starting the server with `python main.py` and no other arguments shows this:
```
C:\ComfyUI>python main.py
Adding extra search path checkpoints E:\ComfyUI\models\checkpoints
Adding extra search path clip E:\ComfyUI\models\clip
Adding extra search path clip_vision E:\ComfyUI\models\clip_vision
Adding extra search path configs E:\ComfyUI\models\configs
Adding extra search path controlnet E:\ComfyUI\models\controlnet
Adding extra search path diffusion_models E:\ComfyUI\models\diffusion_models
Adding extra search path diffusion_models E:\ComfyUI\models\unet
Adding extra search path embeddings E:\ComfyUI\models\embeddings
Adding extra search path loras E:\ComfyUI\models\loras
Adding extra search path upscale_models E:\ComfyUI\models\upscale_models
Adding extra search path vae E:\ComfyUI\models\vae
Checkpoint files will always be loaded safely.
Total VRAM 15975 MB, total RAM 65465 MB
pytorch version: 2.10.0.dev20251124+cu130
C:\Python313\install\Lib\site-packages\torch\library.py:357: UserWarning: Warning only once for all operators, other operators may also be overridden.
Overriding a previously registered kernel for the same operator and the same dispatch key
operator: flash_attn::_flash_attn_backward(Tensor dout, Tensor q, Tensor k, Tensor v, Tensor out, Tensor softmax_lse, Tensor(a6!)? dq, Tensor(a7!)? dk, Tensor(a8!)? dv, float dropout_p, float softmax_scale, bool causal, SymInt window_size_left, SymInt window_size_right, float softcap, Tensor? alibi_slopes, bool deterministic, Tensor? rng_state=None) -> Tensor
registered at C:\Python313\install\Lib\site-packages\torch\_library\custom_ops.py:926
dispatch key: ADInplaceOrView
previous kernel: no debug info
new kernel: registered at C:\Python313\install\Lib\site-packages\torch\_library\custom_ops.py:926 (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\pytorch\aten\src\ATen\core\dispatch\OperatorEntry.cpp:215.)
self.m.impl(
xformers version: 0.0.34+0eb7c43.d20251125
Set vram state to: NORMAL_VRAM
Device: cuda:0 NVIDIA GeForce RTX 5060 Ti : cudaMallocAsync
Enabled pinned memory 29459.0
Using xformers attention
Python version: 3.13.9 (main, Nov 19 2025, 22:41:40) [MSC v.1944 64 bit (AMD64)]
ComfyUI version: 0.3.72
ComfyUI frontend version: 1.33.8
[Prompt Server] web root: C:\Python313\install\Lib\site-packages\comfyui_frontend_package\static
Total VRAM 15975 MB, total RAM 65465 MB
pytorch version: 2.10.0.dev20251124+cu130
xformers version: 0.0.34+0eb7c43.d20251125
Set vram state to: NORMAL_VRAM
Device: cuda:0 NVIDIA GeForce RTX 5060 Ti : cudaMallocAsync
Enabled pinned memory 29459.0
Import times for custom nodes:
0.0 seconds: C:\ComfyUI\custom_nodes\websocket_image_save.py
Context impl SQLiteImpl.
Will assume non-transactional DDL.
No target revision found.
Starting server
To see the GUI go to: http://127.0.0.1:8188
```
Removing non duplicated information from the above log:
```
Total VRAM 15975 MB, total RAM 65465 MB
pytorch version: 2.10.0.dev20251124+cu130
xformers version: 0.0.34+0eb7c43.d20251125
Set vram state to: NORMAL_VRAM
Device: cuda:0 NVIDIA GeForce RTX 5060 Ti : cudaMallocAsync
Enabled pinned memory 29459.0
Total VRAM 15975 MB, total RAM 65465 MB
pytorch version: 2.10.0.dev20251124+cu130
xformers version: 0.0.34+0eb7c43.d20251125
Set vram state to: NORMAL_VRAM
Device: cuda:0 NVIDIA GeForce RTX 5060 Ti : cudaMallocAsync
Enabled pinned memory 29459.0
```
I don't know if this is normal or not, and if it's not, what might be the cause.
Current ComfyUI version: 0.3.72, git pulled from latest git.
Contributor guide
Assessment
This issue has not been assessed yet.