Comfy-Org / Comfy-Org/ComfyUI

Ksampler 'Linear' object has no attribute 'temp' while using lora hooks with Flux

Open
#6,537 3 comments 1 reaction 0 assignees View on GitHub
Potential Bug
Dominant language
Python
Stars
133k
Forks
15.7k
Avg merge
1d 6h
Merged PRs (30d)
155

Description

### Expected Behavior

comfy executes the workflow while using create/set hooks to conditionally apply loras

### Actual Behavior

# ComfyUI Error Report
## Error Details
- **Node ID:** 6
- **Node Type:** KSampler
- **Exception Type:** AttributeError
- **Exception Message:** 'Linear' object has no attribute 'temp'
## Stack Trace
```
File "G:\ComfyUI\ComfyUI\execution.py", line 327, 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 "G:\ComfyUI\ComfyUI\execution.py", line 202, 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 "G:\ComfyUI\ComfyUI\execution.py", line 174, in _map_node_over_list
process_inputs(input_dict, i)

File "G:\ComfyUI\ComfyUI\execution.py", line 163, in process_inputs
results.append(getattr(obj, func)(**inputs))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\nodes.py", line 1533, in sample
return common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\nodes.py", line 1500, in common_ksampler
samples = comfy.sample.sample(model, noise, steps, cfg, sampler_name, scheduler, positive, negative, latent_image,
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Impact-Pack\modules\impact\sample_error_enhancer.py", line 9, in informative_sample
return original_sample(*args, **kwargs) # This code helps interpret error messages that occur within exceptions but does not have any impact on other operations.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\sample.py", line 45, in sample
samples = sampler.sample(noise, positive, negative, cfg=cfg, latent_image=latent_image, start_step=start_step, last_step=last_step, force_full_denoise=force_full_denoise, denoise_mask=noise_mask, sigmas=sigmas, callback=callback, disable_pbar=disable_pbar, seed=seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 1110, in sample
return sample(self.model, noise, positive, negative, cfg, self.device, sampler, sigmas, self.model_options, latent_image=latent_image, denoise_mask=denoise_mask, callback=callback, disable_pbar=disable_pbar, seed=seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 1000, in sample
return cfg_guider.sample(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 985, in sample
output = executor.execute(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 953, in outer_sample
output = self.inner_sample(noise, latent_image, device, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 936, in inner_sample
samples = executor.execute(self, sigmas, extra_args, callback, noise, latent_image, denoise_mask, disable_pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 715, in sample
samples = self.sampler_function(model_k, noise, sigmas, extra_args=extra_args, callback=k_callback, disable=disable_pbar, **self.extra_options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\python_embeded\Lib\site-packages\torch\utils\_contextlib.py", line 116, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\k_diffusion\sampling.py", line 741, in sample_dpmpp_2m
denoised = model(x, sigmas[i] * s_in, **extra_args)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 380, in __call__
out = self.inner_model(x, sigma, model_options=model_options, seed=seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 916, in __call__
return self.predict_noise(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 919, in predict_noise
return sampling_function(self.inner_model, x, timestep, self.conds.get("negative", None), self.conds.get("positive", None), self.cfg, model_options=model_options, seed=seed)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 360, in sampling_function
out = calc_cond_batch(model, conds, x, timestep, model_options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 196, in calc_cond_batch
return executor.execute(model, conds, x_in, timestep, model_options)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 110, in execute
return self.original(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\samplers.py", line 278, in _calc_cond_batch
transformer_options = model.current_patcher.apply_hooks(hooks=hooks)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\model_patcher.py", line 1030, in apply_hooks
self.patch_hooks(hooks=hooks)

File "G:\ComfyUI\ComfyUI\comfy\model_patcher.py", line 1057, in patch_hooks
original_weights = self.get_key_patches()
^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\model_patcher.py", line 485, in get_key_patches
weight, set_func, convert_func = get_key_weight(self.model, k)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\model_patcher.py", line 121, in get_key_weight
op = comfy.utils.get_attr(model, op_keys[0])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\ComfyUI\comfy\utils.py", line 729, in get_attr
obj = getattr(obj, name)
^^^^^^^^^^^^^^^^^^

File "G:\ComfyUI\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1931, in __getattr__
raise AttributeError(

```
## System Information
- **ComfyUI Version:** 0.3.12
- **Arguments:** ComfyUI\main.py --windows-standalone-build --preview-method auto --disable-auto-launch
- **OS:** nt
- **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.5.0+cu124
## Devices

- **Name:** cuda:0 NVIDIA GeForce RTX 3060 : cudaMallocAsync
- **Type:** cuda
- **VRAM Total:** 12884377600
- **VRAM Free:** 1316544380
- **Torch VRAM Total:** 10066329600
- **Torch VRAM Free:** 36626300

### Steps to Reproduce

[WIP Lora Hooks.json](https://github.com/user-attachments/files/18479848/WIP.Lora.Hooks.json)

### Debug Logs

```powershell
## Logs

2025-01-20T09:47:49.841949 - [START] Security scan2025-01-20T09:47:49.841949 -
2025-01-20T09:47:50.841840 - [DONE] Security scan2025-01-20T09:47:50.841840 -
2025-01-20T09:47:50.943835 - ## ComfyUI-Manager: installing dependencies done.2025-01-20T09:47:50.943835 -
2025-01-20T09:47:50.943835 - ** ComfyUI startup time:2025-01-20T09:47:50.943835 - 2025-01-20T09:47:50.943835 - 2025-01-20 09:47:50.9432025-01-20T09:47:50.943835 -
2025-01-20T09:47:50.943835 - ** Platform:2025-01-20T09:47:50.943835 - 2025-01-20T09:47:50.943835 - Windows2025-01-20T09:47:50.943835 -
2025-01-20T09:47:50.943835 - ** Python version:2025-01-20T09:47:50.943835 - 2025-01-20T09:47:50.943835 - 3.12.7 (tags/v3.12.7:0b05ead, Oct 1 2024, 03:06:41) [MSC v.1941 64 bit (AMD64)]2025-01-20T09:47:50.943835 -
2025-01-20T09:47:50.944852 - ** Python executable:2025-01-20T09:47:50.944852 - 2025-01-20T09:47:50.944852 - G:\ComfyUI\python_embeded\python.exe2025-01-20T09:47:50.944852 -
2025-01-20T09:47:50.944852 - ** ComfyUI Path:2025-01-20T09:47:50.944852 - 2025-01-20T09:47:50.944852 - G:\ComfyUI\ComfyUI2025-01-20T09:47:50.944852 -
2025-01-20T09:47:50.944852 - ** User directory:2025-01-20T09:47:50.944852 - 2025-01-20T09:47:50.944852 - G:\ComfyUI\ComfyUI\user2025-01-20T09:47:50.945355 -
2025-01-20T09:47:50.945355 - ** ComfyUI-Manager config path:2025-01-20T09:47:50.945355 - 2025-01-20T09:47:50.945355 - G:\ComfyUI\ComfyUI\user\default\ComfyUI-Manager\config.ini2025-01-20T09:47:50.945355 -
2025-01-20T09:47:50.945355 - ** Log path:2025-01-20T09:47:50.945355 - 2025-01-20T09:47:50.945355 - G:\ComfyUI\ComfyUI\user\comfyui.log2025-01-20T09:47:50.945355 -
2025-01-20T09:47:52.139288 -
Prestartup times for custom nodes:
2025-01-20T09:47:52.143107 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\rgthree-comfy
2025-01-20T09:47:52.143107 - 2.5 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Manager
2025-01-20T09:47:52.143107 -
2025-01-20T09:47:53.840232 - Checkpoint files will always be loaded safely.
2025-01-20T09:47:53.990927 - Total VRAM 12288 MB, total RAM 65373 MB
2025-01-20T09:47:53.990927 - pytorch version: 2.5.0+cu124
2025-01-20T09:47:53.991875 - Set vram state to: NORMAL_VRAM
2025-01-20T09:47:53.991875 - Device: cuda:0 NVIDIA GeForce RTX 3060 : cudaMallocAsync
2025-01-20T09:47:55.122943 - Using pytorch attention
2025-01-20T09:47:56.328012 - [Prompt Server] web root: G:\ComfyUI\ComfyUI\web
2025-01-20T09:47:56.549818 - G:\ComfyUI\python_embeded\Lib\site-packages\kornia\feature\lightglue.py:44: FutureWarning: `torch.cuda.amp.custom_fwd(args...)` is deprecated. Please use `torch.amp.custom_fwd(args..., device_type='cuda')` instead.
@torch.cuda.amp.custom_fwd(cast_inputs=torch.float32)
2025-01-20T09:47:57.176540 - [Crystools INFO] Crystools version: 1.21.0
2025-01-20T09:47:57.205055 - [Crystools INFO] CPU: 11th Gen Intel(R) Core(TM) i5-11400 @ 2.60GHz - Arch: AMD64 - OS: Windows 11
2025-01-20T09:47:57.213237 - [Crystools INFO] Pynvml (Nvidia) initialized.
2025-01-20T09:47:57.213237 - [Crystools INFO] GPU/s:
2025-01-20T09:47:57.229945 - [Crystools INFO] 0) NVIDIA GeForce RTX 3060
2025-01-20T09:47:57.231117 - [Crystools INFO] NVIDIA Driver: 560.94
2025-01-20T09:47:57.257422 - ### Loading: ComfyUI-Impact-Pack (V8.4.1)2025-01-20T09:47:57.257422 -
2025-01-20T09:47:57.346475 - [Impact Pack] Wildcards loading done.2025-01-20T09:47:57.346475 -
2025-01-20T09:47:57.349691 - ### Loading: ComfyUI-Impact-Subpack (V1.2.7)
2025-01-20T09:47:57.750943 - [Impact Subpack] ultralytics_bbox: G:\ComfyUI\ComfyUI\models\ultralytics\bbox
2025-01-20T09:47:57.750943 - [Impact Subpack] ultralytics_segm: G:\ComfyUI\ComfyUI\models\ultralytics\segm
2025-01-20T09:47:57.751939 - ### Loading: ComfyUI-Inspire-Pack (V1.10)2025-01-20T09:47:57.751939 -
2025-01-20T09:47:58.049662 - Total VRAM 12288 MB, total RAM 65373 MB
2025-01-20T09:47:58.049837 - pytorch version: 2.5.0+cu124
2025-01-20T09:47:58.050770 - Set vram state to: NORMAL_VRAM
2025-01-20T09:47:58.050770 - Device: cuda:0 NVIDIA GeForce RTX 3060 : cudaMallocAsync
2025-01-20T09:47:58.089652 - ### Loading: ComfyUI-Manager (V3.9.2)
2025-01-20T09:47:58.185688 - ### ComfyUI Revision: 3055 [55add502] *DETACHED | Released on '2025-01-16'
2025-01-20T09:47:58.495254 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json
2025-01-20T09:47:58.514181 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json
2025-01-20T09:47:58.542892 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json
2025-01-20T09:47:58.578538 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json
2025-01-20T09:47:58.604071 - [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
2025-01-20T09:47:59.003041 - G:\ComfyUI\python_embeded\Lib\site-packages\albumentations\__init__.py:24: UserWarning: A new version of Albumentations is available: 2.0.0 (you have 1.4.21). Upgrade using: pip install -U albumentations. To disable automatic update checks, set the environment variable NO_ALBUMENTATIONS_UPDATE to 1.
check_for_updates()
2025-01-20T09:47:59.267145 - G:\ComfyUI\python_embeded\Lib\site-packages\timm\models\layers\__init__.py:48: FutureWarning: Importing from timm.models.layers is deprecated, please import via timm.layers
warnings.warn(f"Importing from {__name__} is deprecated, please import via timm.layers", FutureWarning)
2025-01-20T09:47:59.269817 - Please 'pip install xformers'2025-01-20T09:47:59.269817 -
2025-01-20T09:47:59.271342 - Nvidia APEX normalization not installed, using PyTorch LayerNorm2025-01-20T09:47:59.271342 -
2025-01-20T09:47:59.437686 - [comfyui_controlnet_aux] | INFO -> Using ckpts path: G:\ComfyUI\ComfyUI\custom_nodes\comfyui_controlnet_aux\ckpts
2025-01-20T09:47:59.437686 - [comfyui_controlnet_aux] | INFO -> Using symlinks: False
2025-01-20T09:47:59.437686 - [comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider']
2025-01-20T09:47:59.454974 - DWPose: Onnxruntime with acceleration providers detected2025-01-20T09:47:59.454974 -
2025-01-20T09:47:59.712324 - FaceDetailer: Model directory already exists2025-01-20T09:47:59.712324 -
2025-01-20T09:47:59.713297 - FaceDetailer: Model already exists2025-01-20T09:47:59.713297 -
2025-01-20T09:47:59.732269 -
2025-01-20T09:47:59.732269 - [rgthree-comfy] Loaded 42 exciting nodes. 🎉2025-01-20T09:47:59.732269 -
2025-01-20T09:47:59.732269 -
2025-01-20T09:47:59.750888 -
Import times for custom nodes:
2025-01-20T09:47:59.750888 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\quick-connections
2025-01-20T09:47:59.750888 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\websocket_image_save.py
2025-01-20T09:47:59.750888 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Unload-Model
2025-01-20T09:47:59.751362 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-GGUF
2025-01-20T09:47:59.751541 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\x-flux-comfyui
2025-01-20T09:47:59.751541 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\rgthree-comfy
2025-01-20T09:47:59.751541 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI_ExtraModels
2025-01-20T09:47:59.752549 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\comfyui_controlnet_aux
2025-01-20T09:47:59.752549 - 0.0 seconds: G:\ComfyUI\ComfyUI\custom_nodes\comfyui-kjnodes
2025-01-20T09:47:59.752549 - 0.1 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Inspire-Pack
2025-01-20T09:47:59.752549 - 0.1 seconds: G:\ComfyUI\ComfyUI\custom_nodes\comfyui_birefnet_ll
2025-01-20T09:47:59.752549 - 0.1 seconds: G:\ComfyUI\ComfyUI\custom_nodes\comfyui-prompt-control
2025-01-20T09:47:59.752549 - 0.1 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Impact-Pack
2025-01-20T09:47:59.752549 - 0.2 seconds: G:\ComfyUI\ComfyUI\custom_nodes\DZ-FaceDetailer
2025-01-20T09:47:59.752549 - 0.2 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-IPAdapter-Flux
2025-01-20T09:47:59.752549 - 0.3 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Manager
2025-01-20T09:47:59.752549 - 0.4 seconds: G:\ComfyUI\ComfyUI\custom_nodes\comfyui-impact-subpack
2025-01-20T09:47:59.752549 - 0.4 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Crystools
2025-01-20T09:47:59.752549 - 0.9 seconds: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-PuLID-Flux-Enhanced
2025-01-20T09:47:59.753595 -
2025-01-20T09:47:59.762483 - Starting server

2025-01-20T09:47:59.762483 - To see the GUI go to: http://127.0.0.1:8188
2025-01-20T09:48:03.886610 - FETCH ComfyRegistry Data: 5/302025-01-20T09:48:03.886610 -
2025-01-20T09:48:06.704678 - FETCH DATA from: G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Manager\extension-node-map.json2025-01-20T09:48:06.704678 - 2025-01-20T09:48:06.709396 - [DONE]2025-01-20T09:48:06.709396 -
2025-01-20T09:48:07.518801 - [Inspire Pack] IPAdapterPlus is not installed.2025-01-20T09:48:07.518801 -
2025-01-20T09:48:07.637469 - []2025-01-20T09:48:07.638466 -
2025-01-20T09:48:07.638466 - []2025-01-20T09:48:07.638466 -
2025-01-20T09:48:38.976585 - Cannot connect to comfyregistry.2025-01-20T09:48:38.976716 -
2025-01-20T09:48:39.029904 - nightly_channel: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/remote
2025-01-20T09:48:39.029904 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2025-01-20T09:48:39.029904 - 2025-01-20T09:48:39.113692 - [DONE]2025-01-20T09:48:39.114638 -
2025-01-20T09:49:35.661122 - got prompt
2025-01-20T09:49:35.739933 - Using pytorch attention in VAE
2025-01-20T09:49:35.741921 - Using pytorch attention in VAE
2025-01-20T09:49:38.013768 - VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2025-01-20T09:49:38.862160 - CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16
2025-01-20T09:49:39.365182 - clip missing: ['text_projection.weight']
2025-01-20T09:49:40.210412 - Requested to load FluxClipModel_
2025-01-20T09:49:53.285751 - loaded completely 9.5367431640625e+25 4778.66259765625 True
2025-01-20T09:49:55.161782 - G:\ComfyUI\ComfyUI\custom_nodes\ComfyUI-GGUF\loader.py:65: UserWarning: The given NumPy array is not writable, and PyTorch does not support non-writable tensors. This means writing to this tensor will result in undefined behavior. You may want to copy the array to protect its data or make it writable before converting it to a tensor. This type of warning will be suppressed for the rest of this program. (Triggered internally at C:\actions-runner\_work\pytorch\pytorch\builder\windows\pytorch\torch\csrc\utils\tensor_numpy.cpp:212.)
torch_tensor = torch.from_numpy(tensor.data) # mmap
2025-01-20T09:49:55.169249 -
ggml_sd_loader:2025-01-20T09:49:55.169249 -
2025-01-20T09:49:55.169249 - 1 4762025-01-20T09:49:55.169249 -
2025-01-20T09:49:55.177359 - 8 3042025-01-20T09:49:55.177359 -
2025-01-20T09:49:55.208321 - model weight dtype torch.bfloat16, manual cast: None
2025-01-20T09:49:55.220282 - model_type FLUX
2025-01-20T09:49:55.437542 - Requested to load Flux
2025-01-20T09:50:23.685567 - loaded partially 9659.495919891357 9659.070434570312 0
2025-01-20T09:50:23.690556 - Attempting to release mmap (117)2025-01-20T09:50:23.690556 -
2025-01-20T09:50:32.850423 -
0%| | 0/20 [00:00

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.