hypertile在更新到0.29后报错
- 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
# ComfyUI Error Report
## Error Details
- **Node ID:** 1039
- **Node Type:** KSamplerAdvanced
- **Exception Type:** TypeError
- **Exception Message:** TypeError: HyperTile.execute..hypertile_in() got an unexpected keyword argument 'pe'
### Actual Behavior
k采样器前不接hypertile可以正常使用,接上hypertile就出现上述报错信息,这种情况只出现在comfyui更新到0.29版之后
### Steps to Reproduce
当我使用krea2生图时便会出现上述报错
[HyperTile_error (1).json](https://github.com/user-attachments/files/30668815/HyperTile_error.1.json)
### Debug Logs
```powershell
节点在执行过程中发生错误。
# ComfyUI Error Report
## Error Details
- **Node ID:** 1038
- **Node Type:** KSamplerAdvanced
- **Exception Type:** TypeError
- **Exception Message:** TypeError: HyperTile.execute..hypertile_in() got an unexpected keyword argument 'pe'
## Stack Trace
File "F:\ComfyUI_windows_portable\ComfyUI\execution.py", line 545, 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 "F:\ComfyUI_windows_portable\ComfyUI\execution.py", line 344, 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 "F:\ComfyUI_windows_portable\ComfyUI\execution.py", line 318, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "F:\ComfyUI_windows_portable\ComfyUI\execution.py", line 306, in process_inputs
result = f(**inputs)
File "F:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 1641, in sample
return common_ksampler(model, noise_seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise, disable_noise=disable_noise, start_step=start_at_step, last_step=end_at_step, force_full_denoise=force_full_denoise)
File "F:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 1571, in common_ksampler
samples = comfy.sample.sample(model, noise, steps, cfg, sampler_name, scheduler, positive, negative, latent_image,
denoise=denoise, disable_noise=disable_noise, start_step=start_step, last_step=last_step,
force_full_denoise=force_full_denoise, noise_mask=noise_mask, callback=callback, disable_pbar=disable_pbar, seed=seed)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\sample.py", line 74, 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 "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1453, 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 "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1343, in sample
return cfg_guider.sample(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1325, in sample
output = executor.execute(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed, latent_shapes=latent_shapes)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1260, in outer_sample
output = self.inner_sample(noise, latent_image, device, sampler, sigmas, denoise_mask, callback, disable_pbar, seed, latent_shapes=latent_shapes)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1235, in inner_sample
samples = executor.execute(self, sigmas, extra_args, callback, noise, latent_image, denoise_mask, disable_pbar)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1005, in sample
samples = self.sampler_function(model_k, noise, sigmas, extra_args=extra_args, callback=k_callback, disable=disable_pbar, **self.extra_options)
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\utils\_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\k_diffusion\sampling.py", line 205, in sample_euler
denoised = model(x, sigma_hat * s_in, **extra_args)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 640, in __call__
out = self.inner_model(x, sigma, model_options=model_options, seed=seed)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1208, in __call__
return self.outer_predict_noise(*args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1215, in outer_predict_noise
).execute(x, timestep, model_options, seed)
~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1218, 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 "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 620, in sampling_function
out = calc_cond_batch(model, conds, x, timestep, model_options)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 211, in calc_cond_batch
return _calc_cond_batch_outer(model, conds, x_in, timestep, model_options)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 219, in _calc_cond_batch_outer
return executor.execute(model, conds, x_in, timestep, model_options)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 335, in _calc_cond_batch
output = model.apply_model(input_x, timestep_, **c).chunk(batch_chunks)
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\model_base.py", line 194, in apply_model
return comfy.patcher_extension.WrapperExecutor.new_class_executor(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...<2 lines>...
comfy.patcher_extension.get_all_wrappers(comfy.patcher_extension.WrappersMP.APPLY_MODEL, transformer_options)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
).execute(x, t, c_concat, c_crossattn, control, transformer_options, **kwargs)
~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\model_base.py", line 238, in _apply_model
model_output = self.diffusion_model(xc, t, context=context, control=control, transformer_options=transformer_options, **extra_conds)
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1775, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1786, in _call_impl
return forward_call(*args, **kwargs)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\krea2\model.py", line 277, in forward
return comfy.patcher_extension.WrapperExecutor.new_class_executor(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...<2 lines>...
comfy.patcher_extension.get_all_wrappers(comfy.patcher_extension.WrappersMP.DIFFUSION_MODEL, transformer_options),
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
).execute(x, timesteps, context, attention_mask, ref_latents, transformer_options, **kwargs)
~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\krea2\model.py", line 370, in _forward
combined = block(combined, tvec, freqs, None, timestep_zero_index=timestep_zero_index, transformer_options=transformer_options)
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1775, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1786, in _call_impl
return forward_call(*args, **kwargs)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\krea2\model.py", line 214, in forward
x = x + pregate * self.attn((1 + prescale) * self.prenorm(x) + preshift, freqs, mask, transformer_options=transformer_options)
~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1775, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1786, in _call_impl
return forward_call(*args, **kwargs)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\krea2\model.py", line 87, in forward
out = p(q, k, v, pe=freqs, attn_mask=mask, extra_options=extra_options)
## System Information
- **ComfyUI Version:** 0.29.0
- **Arguments:** ComfyUI\main.py --windows-standalone-build
- **OS:** win32
- **Python Version:** 3.13.12 (tags/v3.13.12:1cbe481, Feb 3 2026, 18:22:25) [MSC v.1944 64 bit (AMD64)]
- **Embedded Python:** true
- **PyTorch Version:** 2.9.1+cu130
## Devices
- **Name:** cuda:0 NVIDIA GeForce RTX 5090 : cudaMallocAsync
- **Type:** cuda
- **VRAM Total:** 34190458880
- **VRAM Free:** 32496418816
- **Torch VRAM Total:** 0
- **Torch VRAM Free:** 0
## Logs
2026-08-04T00:15:07.764753 - [32m[INFO][0m setup plugin alembic.autogenerate.schemas
2026-08-04T00:15:07.764916 - [32m[INFO][0m setup plugin alembic.autogenerate.tables
2026-08-04T00:15:07.765051 - [32m[INFO][0m setup plugin alembic.autogenerate.types
2026-08-04T00:15:07.765174 - [32m[INFO][0m setup plugin alembic.autogenerate.constraints
2026-08-04T00:15:07.765295 - [32m[INFO][0m setup plugin alembic.autogenerate.defaults
2026-08-04T00:15:07.765391 - [32m[INFO][0m setup plugin alembic.autogenerate.comments
2026-08-04T00:15:08.136201 - [START] Security scan2026-08-04T00:15:08.136210 -
2026-08-04T00:15:09.037903 - [DONE] Security scan2026-08-04T00:15:09.037915 -
2026-08-04T00:15:09.113377 - ## ComfyUI-Manager: installing dependencies done.2026-08-04T00:15:09.113485 -
2026-08-04T00:15:09.113598 - ** ComfyUI startup time:2026-08-04T00:15:09.113718 - 2026-08-04T00:15:09.113775 - 2026-08-04 00:15:09.1132026-08-04T00:15:09.113847 -
2026-08-04T00:15:09.113985 - ** Platform:2026-08-04T00:15:09.114085 - 2026-08-04T00:15:09.114149 - Windows2026-08-04T00:15:09.114215 -
2026-08-04T00:15:09.114256 - ** Python version:2026-08-04T00:15:09.114287 - 2026-08-04T00:15:09.114315 - 3.13.12 (tags/v3.13.12:1cbe481, Feb 3 2026, 18:22:25) [MSC v.1944 64 bit (AMD64)]2026-08-04T00:15:09.114362 -
2026-08-04T00:15:09.114409 - ** Python executable:2026-08-04T00:15:09.114449 - 2026-08-04T00:15:09.114489 - F:\ComfyUI_windows_portable\python_embeded\python.exe2026-08-04T00:15:09.114528 -
2026-08-04T00:15:09.114569 - ** ComfyUI Path:2026-08-04T00:15:09.114606 - 2026-08-04T00:15:09.114643 - F:\ComfyUI_windows_portable\ComfyUI2026-08-04T00:15:09.114710 -
2026-08-04T00:15:09.114763 - ** ComfyUI Base Folder Path:2026-08-04T00:15:09.114796 - 2026-08-04T00:15:09.114823 - F:\ComfyUI_windows_portable\ComfyUI2026-08-04T00:15:09.114850 -
2026-08-04T00:15:09.114878 - ** User directory:2026-08-04T00:15:09.114905 - 2026-08-04T00:15:09.114931 - F:\ComfyUI_windows_portable\ComfyUI\user2026-08-04T00:15:09.114957 -
2026-08-04T00:15:09.114983 - ** ComfyUI-Manager config path:2026-08-04T00:15:09.115009 - 2026-08-04T00:15:09.115152 - F:\ComfyUI_windows_portable\ComfyUI\user\__manager\config.ini2026-08-04T00:15:09.115196 -
2026-08-04T00:15:09.115229 - ** Log path:2026-08-04T00:15:09.115251 - 2026-08-04T00:15:09.115272 - F:\ComfyUI_windows_portable\ComfyUI\user\comfyui.log2026-08-04T00:15:09.115293 -
2026-08-04T00:15:09.835057 - [ComfyUI-Manager] Windows event loop policy mode enabled2026-08-04T00:15:09.835155 -
2026-08-04T00:15:09.835986 - [32m[INFO][0m
Prestartup times for custom nodes:
2026-08-04T00:15:09.836093 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Easy-Use-main
2026-08-04T00:15:09.836186 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\rgthree-comfy
2026-08-04T00:15:09.836289 - [32m[INFO][0m 2.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-manager
2026-08-04T00:15:09.836355 - [32m[INFO][0m
2026-08-04T00:15:11.747825 - [32m[INFO][0m Found comfy_kitchen backend cuda: {'available': True, 'disabled': False, 'unavailable_reason': None, 'capabilities': ['adaln', 'apply_rope', 'apply_rope1', 'apply_rope1_', 'apply_rope_', 'apply_rope_split_half', 'apply_rope_split_half1', 'apply_rope_split_half1_', 'apply_rope_split_half_', 'convrot_w4a4_linear', 'dequantize_convrot_w4a4_weight', 'dequantize_int8_convrot_weight', 'dequantize_int8_convrot_weight_dtype', 'dequantize_int8_simple', 'dequantize_int8_simple_dtype', 'dequantize_nvfp4', 'dequantize_per_tensor_fp8', 'gemv_awq_w4a16', 'int8_linear', 'prepare_int4_weight_for_int8_linear', 'quantize_and_rotate_rowwise', 'quantize_convrot_w4a4_weight', 'quantize_int8_convrot_weight', 'quantize_int8_rowwise', 'quantize_int8_tensorwise', 'quantize_mxfp8', 'quantize_nvfp4', 'quantize_per_tensor_fp8', 'quantize_svdquant_w4a4', 'rms_adaln', 'rms_rope', 'rms_rope1', 'rms_rope1_', 'rms_rope_', 'rms_rope_split_half', 'rms_rope_split_half1', 'rms_rope_split_half1_', 'rms_rope_split_half_', 'scaled_mm_nvfp4', 'scaled_mm_svdquant_w4a4', 'stochastic_rounding_fp8']}
2026-08-04T00:15:11.748008 - [32m[INFO][0m Found comfy_kitchen backend eager: {'available': True, 'disabled': False, 'unavailable_reason': None, 'capabilities': ['adaln', 'apply_rope', 'apply_rope1', 'apply_rope1_', 'apply_rope_', 'apply_rope_split_half', 'apply_rope_split_half1', 'apply_rope_split_half1_', 'apply_rope_split_half_', 'convrot_w4a4_linear', 'dequantize_convrot_w4a4_weight', 'dequantize_int8_convrot_weight', 'dequantize_int8_convrot_weight_dtype', 'dequantize_int8_embedding', 'dequantize_int8_simple', 'dequantize_int8_simple_dtype', 'dequantize_mxfp8', 'dequantize_nvfp4', 'dequantize_per_tensor_fp8', 'gemv_awq_w4a16', 'int8_linear', 'prepare_int4_weight_for_int8_linear', 'quantize_and_rotate_rowwise', 'quantize_convrot_w4a4_weight', 'quantize_int8_convrot_weight', 'quantize_int8_rowwise', 'quantize_int8_tensorwise', 'quantize_mxfp8', 'quantize_nvfp4', 'quantize_per_tensor_fp8', 'quantize_svdquant_w4a4', 'rms_adaln', 'rms_rope', 'rms_rope1', 'rms_rope1_', 'rms_rope_', 'rms_rope_split_half', 'rms_rope_split_half1', 'rms_rope_split_half1_', 'rms_rope_split_half_', 'scaled_mm_mxfp8', 'scaled_mm_nvfp4', 'scaled_mm_svdquant_w4a4', 'stochastic_rounding_fp8']}
2026-08-04T00:15:11.748132 - [32m[INFO][0m Found comfy_kitchen backend triton: {'available': False, 'disabled': True, 'unavailable_reason': "ImportError: No module named 'triton'", 'capabilities': []}
2026-08-04T00:15:11.748217 - [32m[INFO][0m Found comfy_kitchen backend hip: {'available': False, 'disabled': False, 'unavailable_reason': 'PyTorch ROCm/HIP runtime not available', 'capabilities': []}
2026-08-04T00:15:11.752650 - [32m[INFO][0m Checkpoint files will always be loaded safely.
2026-08-04T00:15:11.833113 - [32m[INFO][0m Total VRAM 32607 MB, total RAM 97394 MB
2026-08-04T00:15:11.833333 - [32m[INFO][0m pytorch version: 2.9.1+cu130
2026-08-04T00:15:11.833683 - [32m[INFO][0m Set vram state to: NORMAL_VRAM
2026-08-04T00:15:11.834025 - [32m[INFO][0m Device: cuda:0 NVIDIA GeForce RTX 5090 : cudaMallocAsync
2026-08-04T00:15:11.850848 - [32m[INFO][0m Using async weight offloading with 2 streams
2026-08-04T00:15:11.851152 - [32m[INFO][0m Enabled pinned memory 38957.0
2026-08-04T00:15:11.867967 - [32m[INFO][0m working around nvidia conv3d memory bug.
2026-08-04T00:15:11.876465 - [32m[INFO][0m Using pytorch attention
2026-08-04T00:15:14.203527 - [32m[INFO][0m DynamicVRAM support detected and enabled
2026-08-04T00:15:14.203668 - [32m[INFO][0m Python version: 3.13.12 (tags/v3.13.12:1cbe481, Feb 3 2026, 18:22:25) [MSC v.1944 64 bit (AMD64)]
2026-08-04T00:15:14.203752 - [32m[INFO][0m ComfyUI version: 0.29.0
2026-08-04T00:15:14.204279 - [32m[INFO][0m comfy-aimdo version: 0.4.10
2026-08-04T00:15:14.204908 - [32m[INFO][0m comfy-kitchen version: 0.2.25
2026-08-04T00:15:14.211713 - [32m[INFO][0m comfyui-frontend-package version: 1.47.11
2026-08-04T00:15:14.211836 - [32m[INFO][0m comfyui-workflow-templates version: 0.11.20
2026-08-04T00:15:14.211932 - [32m[INFO][0m comfyui-embedded-docs version: 0.5.9
2026-08-04T00:15:14.212009 - [32m[INFO][0m comfy-kitchen version: 0.2.25
2026-08-04T00:15:14.212089 - [32m[INFO][0m comfy-aimdo version: 0.4.10
2026-08-04T00:15:14.212928 - [32m[INFO][0m [Prompt Server] web root: F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\comfyui_frontend_package\static
2026-08-04T00:15:14.213666 - [32m[INFO][0m Asset seeder disabled
2026-08-04T00:15:14.554616 - [32m[INFO][0m No OpenGL_accelerate module loaded: No module named 'OpenGL_accelerate'
2026-08-04T00:15:17.350546 - [1m[33m[WARNING][0m Skipping import of cpp extensions due to incompatible torch version. Please upgrade to torch >= 2.11.0 (found 2.9.1+cu130).
2026-08-04T00:15:17.357618 - [1m[33m[WARNING][0m Warning: Detected no triton, on systems without Triton certain kernels will not work
2026-08-04T00:15:17.424038 - W0804 00:15:17.417000 23960 Lib\site-packages\torch\distributed\elastic\multiprocessing\redirects.py:29] NOTE: Redirects are currently not supported in Windows or MacOs.
2026-08-04T00:15:17.555284 - Unable to import `torchao` Tensor objects. This may affect loading checkpoints serialized with `torchao`
2026-08-04T00:15:18.206491 - [34m[ComfyUI-Easy-Use] server: [0mv1.3.7 [92mLoaded[0m2026-08-04T00:15:18.206611 -
2026-08-04T00:15:18.206699 - [34m[ComfyUI-Easy-Use] web root: [0mF:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Easy-Use-main\web_version/v2 [92mLoaded[0m2026-08-04T00:15:18.206797 -
2026-08-04T00:15:18.385990 - [32m[INFO][0m ### Loading: ComfyUI-Impact-Pack (V8.28.3)
2026-08-04T00:15:18.403645 - [1m[33m[WARNING][0m
----------------------------------------------------------------------------
[Impact Pack] The SAM2 functionality is unavailable because the `facebook/sam2` dependency is not installed.
Installation command:
F:\ComfyUI_windows_portable\python_embeded\python.exe -m pip install git+https://github.com/facebookresearch/sam2
----------------------------------------------------------------------------
2026-08-04T00:15:18.410335 - [1m[33m[WARNING][0m
----------------------------------------------------------------------------
[Impact Pack] The SAM2 functionality is unavailable because the `facebook/sam2` dependency is not installed.
Installation command:
F:\ComfyUI_windows_portable\python_embeded\python.exe -m pip install git+https://github.com/facebookresearch/sam2
----------------------------------------------------------------------------
2026-08-04T00:15:18.417105 - [1m[33m[WARNING][0m [Impact Pack] custom_wildcards path not found: F:\ComfyUI_windows_portable_nvidia_cu128\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-impact-pack\custom_wildcards. Using default path.
2026-08-04T00:15:18.418336 - [32m[INFO][0m [Impact Pack] Wildcard total size (0.00 MB) is within cache limit (50.00 MB). Using full cache mode.
2026-08-04T00:15:18.418980 - [32m[INFO][0m [Impact Pack] Wildcards loading done.
2026-08-04T00:15:18.419809 - [32m[INFO][0m ### Loading: ComfyUI-Impact-Subpack (V1.3.5)
2026-08-04T00:15:18.421071 - [32m[INFO][0m [Impact Pack/Subpack] Using folder_paths to determine whitelist path: F:\ComfyUI_windows_portable\ComfyUI\user\default\ComfyUI-Impact-Subpack\model-whitelist.txt
2026-08-04T00:15:18.421323 - [32m[INFO][0m [Impact Pack/Subpack] Ensured whitelist directory exists: F:\ComfyUI_windows_portable\ComfyUI\user\default\ComfyUI-Impact-Subpack
2026-08-04T00:15:18.421562 - [32m[INFO][0m [Impact Pack/Subpack] Loaded 0 model(s) from whitelist: F:\ComfyUI_windows_portable\ComfyUI\user\default\ComfyUI-Impact-Subpack\model-whitelist.txt
2026-08-04T00:15:18.476644 - [32m[INFO][0m [Impact Subpack] ultralytics_bbox: F:\ComfyUI_windows_portable\ComfyUI\models\ultralytics\bbox
2026-08-04T00:15:18.476817 - [32m[INFO][0m [Impact Subpack] ultralytics_segm: F:\ComfyUI_windows_portable\ComfyUI\models\ultralytics\segm
2026-08-04T00:15:18.493230 - [32m[INFO][0m ### Loading: ComfyUI-Manager (V3.38.3)
2026-08-04T00:15:18.493783 - [32m[INFO][0m [ComfyUI-Manager] network_mode: public
2026-08-04T00:15:18.628687 - [32m[INFO][0m ### ComfyUI Version: v0.29.0-19-g7dd46274 | Released on '2026-07-30'
2026-08-04T00:15:18.829284 - ✨提示词小助手 V2.0.6 已启动2026-08-04T00:15:18.829356 -
2026-08-04T00:15:18.841791 - Error loading module AILab_QwenVL_GGUF_PromptEnhancer: No module named 'llama_cpp'2026-08-04T00:15:18.841878 -
2026-08-04T00:15:19.265833 - [32m[INFO][0m [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/alter-list.json
2026-08-04T00:15:19.275012 -
[0;33m[ReActor][0m - [38;5;173mSTATUS[0m - [0;32mRunning v0.6.1-b2 in ComfyUI[0m2026-08-04T00:15:19.275104 -
2026-08-04T00:15:19.336376 - Torch version: 2.9.1+cu1302026-08-04T00:15:19.336468 -
2026-08-04T00:15:19.371463 - ⚠️ SeedVR2 optimizations check: SageAttention ❌ | Flash Attention ❌ | Triton ❌2026-08-04T00:15:19.371582 -
2026-08-04T00:15:19.371689 - 💡 For best performance: pip install sageattention flash-attn triton2026-08-04T00:15:19.371755 -
2026-08-04T00:15:19.371831 - 🔧 Conv3d workaround active: PyTorch 2.9.1, cuDNN 91200 (fixing VAE 3x memory bug)2026-08-04T00:15:19.371891 -
2026-08-04T00:15:19.375649 - 📊 Initial CUDA memory: 30.26GB free / 31.84GB total2026-08-04T00:15:19.375721 -
2026-08-04T00:15:19.481542 - (pysssss:WD14Tagger) [DEBUG] Available ORT providers: TensorrtExecutionProvider, CUDAExecutionProvider, CPUExecutionProvider2026-08-04T00:15:19.481635 -
2026-08-04T00:15:19.481714 - (pysssss:WD14Tagger) [DEBUG] Using ORT providers: CUDAExecutionProvider, CPUExecutionProvider2026-08-04T00:15:19.481773 -
2026-08-04T00:15:19.493016 - [1m[33m[WARNING][0m Logger already set up. Skipping setup_logger().
2026-08-04T00:15:19.494347 - [1m[33m[WARNING][0m Traceback (most recent call last):
File "F:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 2247, in load_custom_node
module_spec.loader.exec_module(module)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^
File "", line 1023, in exec_module
File "", line 488, in _call_with_frames_removed
File "F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-ZImagePowerNodes-master\__init__.py", line 53, in
setup_logger(log_level=args.verbose, emoji=__PROJECT_EMOJI, name="ZI_POWER", use_stdout=args.log_stdout)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-ZImagePowerNodes-master\nodes\core\system.py", line 67, in setup_logger
logger.setLevel(log_level)
~~~~~~~~~~~~~~~^^^^^^^^^^^
File "logging\__init__.py", line 1495, in setLevel
File "logging\__init__.py", line 213, in _checkLevel
TypeError: Level not an integer or a valid string: []
2026-08-04T00:15:19.494569 - [1m[33m[WARNING][0m Cannot import F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-ZImagePowerNodes-master module for custom nodes: Level not an integer or a valid string: []
2026-08-04T00:15:19.497231 - [36;20m[F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux] | INFO -> Using ckpts path: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux\ckpts[0m
2026-08-04T00:15:19.498395 - [36;20m[F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux] | INFO -> Using symlinks: False[0m
2026-08-04T00:15:19.499386 - [36;20m[F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider'][0m
2026-08-04T00:15:19.510298 - DWPose: Onnxruntime with acceleration providers detected2026-08-04T00:15:19.510375 -
2026-08-04T00:15:19.638071 - USDU batch patches applied successfully.
2026-08-04T00:15:19.638167 - [32m[INFO][0m USDU batch patches applied successfully.
2026-08-04T00:15:19.672833 -
2026-08-04T00:15:19.672932 - [92m[rgthree-comfy] Loaded 48 exciting nodes. 🎉[0m2026-08-04T00:15:19.673011 -
2026-08-04T00:15:19.673072 -
2026-08-04T00:15:19.673132 - [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-08-04T00:15:19.673182 -
2026-08-04T00:15:19.708585 - SD-PPP: fastapi not found2026-08-04T00:15:19.708678 -
2026-08-04T00:15:19.758060 - [32m[INFO][0m [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/model-list.json
2026-08-04T00:15:20.188288 - [34mWAS Node Suite: [0mOpenCV Python FFMPEG support is enabled[0m2026-08-04T00:15:20.188404 -
2026-08-04T00:15:20.188525 - [34mWAS Node Suite [93mWarning: [0m`ffmpeg_bin_path` is not set in `F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\was-ns\was_suite_config.json` config file. Will attempt to use system ffmpeg binaries if available.[0m2026-08-04T00:15:20.188586 -
2026-08-04T00:15:20.536588 - [34mWAS Node Suite: [0mFinished.[0m [32mLoaded[0m [0m220[0m [32mnodes successfully.[0m2026-08-04T00:15:20.536669 -
2026-08-04T00:15:20.536755 -
[3m[93m"The harder I work, the luckier I get."[0m[3m - Samuel Goldwyn[0m
2026-08-04T00:15:20.536812 -
2026-08-04T00:15:20.539269 - [32m[INFO][0m
Import times for custom nodes:
2026-08-04T00:15:20.539396 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\latent_unsharp_any_channel.py
2026-08-04T00:15:20.539506 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\LatentGranularityEnhance.py
2026-08-04T00:15:20.539615 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\websocket_image_save.py
2026-08-04T00:15:20.539720 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-krea2edit-main
2026-08-04T00:15:20.539800 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-ConditioningKrea2Rebalance-main
2026-08-04T00:15:20.539875 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Krea2-Ostris-Edit-main
2026-08-04T00:15:20.539947 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_ttp_toolset
2026-08-04T00:15:20.540014 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\cg-use-everywhere
2026-08-04T00:15:20.540091 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\Latent_Nodes
2026-08-04T00:15:20.540145 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Inpaint-CropAndStitch
2026-08-04T00:15:20.540227 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Qwen-Image-Integrated-KSampler
2026-08-04T00:15:20.540305 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_SLK_joy_caption_two
2026-08-04T00:15:20.540372 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Conditioning-Rebalance
2026-08-04T00:15:20.540440 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI_StringEssentials-main
2026-08-04T00:15:20.540502 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-wd14-tagger
2026-08-04T00:15:20.540553 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\erosdiffusion-eulerflowmatchingdiscretescheduler
2026-08-04T00:15:20.540652 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-MooshieTiledDiffusion-main
2026-08-04T00:15:20.540734 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-enricos-nodes
2026-08-04T00:15:20.540786 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_essentials
2026-08-04T00:15:20.540844 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-adaptiveprompts
2026-08-04T00:15:20.540948 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\PortraitUtils-main
2026-08-04T00:15:20.541004 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-segment-anything-2
2026-08-04T00:15:20.541070 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_ultimatesdupscale
2026-08-04T00:15:20.541126 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-QwenVL-main
2026-08-04T00:15:20.541174 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-KJNodes
2026-08-04T00:15:20.541213 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\gguf
2026-08-04T00:15:20.541251 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\rgthree-comfy
2026-08-04T00:15:20.541294 - [32m[INFO][0m 0.0 seconds (IMPORT FAILED): F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-ZImagePowerNodes-master
2026-08-04T00:15:20.541344 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Prompt-Assistant-main
2026-08-04T00:15:20.541436 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_controlnet_aux
2026-08-04T00:15:20.541517 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-impact-pack
2026-08-04T00:15:20.541583 - [32m[INFO][0m 0.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\sd-ppp
2026-08-04T00:15:20.541637 - [32m[INFO][0m 0.1 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-impact-subpack
2026-08-04T00:15:20.541733 - [32m[INFO][0m 0.1 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-SeedVR2_VideoUpscaler
2026-08-04T00:15:20.541802 - [32m[INFO][0m 0.1 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui_instantid
2026-08-04T00:15:20.541853 - [32m[INFO][0m 0.2 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-manager
2026-08-04T00:15:20.541894 - [32m[INFO][0m 0.2 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-ollama
2026-08-04T00:15:20.541966 - [32m[INFO][0m 0.2 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-florence2
2026-08-04T00:15:20.542025 - [32m[INFO][0m 0.5 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-reactor
2026-08-04T00:15:20.542066 - [32m[INFO][0m 0.8 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\was-ns
2026-08-04T00:15:20.542103 - [32m[INFO][0m 3.0 seconds: F:\ComfyUI_windows_portable\ComfyUI\custom_nodes\ComfyUI-Easy-Use-main
2026-08-04T00:15:20.542142 - [32m[INFO][0m
2026-08-04T00:15:20.544297 - [32m[INFO][0m Context impl SQLiteImpl.
2026-08-04T00:15:20.544404 - [32m[INFO][0m Will assume non-transactional DDL.
2026-08-04T00:15:20.597560 - [32m[INFO][0m Using RAM pressure cache.
2026-08-04T00:15:20.598017 - [32m[INFO][0m Starting server
2026-08-04T00:15:20.598450 - [32m[INFO][0m To see the GUI go to: http://127.0.0.1:8188
2026-08-04T00:15:20.791519 - [32m[INFO][0m [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json
2026-08-04T00:15:21.443039 - [1m[33m[WARNING][0m [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-08-04T00:15:21.444486 - [1m[33m[WARNING][0m [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-08-04T00:15:21.445024 - [1m[33m[WARNING][0m [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-08-04T00:15:21.463882 - [Adaptive Prompts] Config Updated: {'default_rng_mode': 'Adaptive'}2026-08-04T00:15:21.463989 -
2026-08-04T00:15:21.464498 - [Adaptive Prompts] Config Updated: {'resolution_strategy': 'Scoped'}2026-08-04T00:15:21.464571 -
2026-08-04T00:15:21.465837 - [Adaptive Prompts] Config Updated: {'search_depth_limit': 80}2026-08-04T00:15:21.465902 -
2026-08-04T00:15:21.466788 - [Adaptive Prompts] Config Updated: {'hide_comments': True}2026-08-04T00:15:21.466873 -
2026-08-04T00:15:21.467732 - [Adaptive Prompts] Config Updated: {'missing_wildcard_behavior': 'Inject Warning'}2026-08-04T00:15:21.467799 -
2026-08-04T00:15:22.455179 - [Adaptive Prompts] Config Updated: {'default_rng_mode': 'Adaptive'}2026-08-04T00:15:22.455263 -
2026-08-04T00:15:22.456277 - [Adaptive Prompts] Config Updated: {'search_depth_limit': 80}2026-08-04T00:15:22.456364 -
2026-08-04T00:15:22.456832 - [Adaptive Prompts] Config Updated: {'resolution_strategy': 'Scoped'}2026-08-04T00:15:22.456895 -
2026-08-04T00:15:22.457325 - [Adaptive Prompts] Config Updated: {'hide_comments': True}2026-08-04T00:15:22.457384 -
2026-08-04T00:15:22.458166 - [Adaptive Prompts] Config Updated: {'missing_wildcard_behavior': 'Inject Warning'}2026-08-04T00:15:22.458235 -
2026-08-04T00:15:22.458423 - [1m[33m[WARNING][0m [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-08-04T00:15:22.460690 - [1m[33m[WARNING][0m [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-08-04T00:15:30.954391 - [32m[INFO][0m [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
2026-08-04T00:15:35.768936 - [32m[INFO][0m [ComfyUI-Manager] default cache updated: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json
2026-08-04T00:15:49.639774 - FETCH ComfyRegistry Data: 5/1662026-08-04T00:15:49.639870 -
2026-08-04T00:16:00.131982 - [32m[INFO][0m got prompt
2026-08-04T00:16:00.143116 - [32m[INFO][0m Using pytorch attention in VAE
2026-08-04T00:16:00.144397 - [32m[INFO][0m Using pytorch attention in VAE
2026-08-04T00:16:00.234463 - [32m[INFO][0m VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2026-08-04T00:16:00.247805 - [32m[INFO][0m Found quantization metadata version 1
2026-08-04T00:16:00.248696 - [32m[INFO][0m Using MixedPrecisionOps for text encoder
2026-08-04T00:16:00.580514 - [32m[INFO][0m CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16
2026-08-04T00:16:00.583271 - [32m[INFO][0m Requested to load Krea2TEModel_
2026-08-04T00:16:00.651929 - [32m[INFO][0m Model Krea2TEModel_ prepared for dynamic VRAM loading. 4999MB Staged. 0 patches attached. Force pre-loaded 249 weights: 627 KB.
2026-08-04T00:16:01.591982 - [32m[INFO][0m model weight dtype torch.float8_e4m3fn, manual cast: torch.bfloat16
2026-08-04T00:16:01.594222 - [32m[INFO][0m model_type FLUX
2026-08-04T00:16:01.600169 - [1m[33m[WARNING][0m unet unexpected: ['last.down.weight', 'last.up.weight']
2026-08-04T00:16:01.610830 - [32m[INFO][0m Requested to load Krea2
2026-08-04T00:16:01.661047 - [32m[INFO][0m Model Krea2 prepared for dynamic VRAM loading. 12224MB Staged. 0 patches attached. Force pre-loaded 160 weights: 1431 KB.
2026-08-04T00:16:01.703702 -
0%| | 0/3 [00:00.hypertile_in() got an unexpected keyword argument 'pe'
2026-08-04T00:16:02.026307 - [1m[31m[ERROR][0m Traceback (most recent call last):
File "F:\ComfyUI_windows_portable\ComfyUI\execution.py", line 545, 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 "F:\ComfyUI_windows_portable\ComfyUI\execution.py", line 344, 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 "F:\ComfyUI_windows_portable\ComfyUI\execution.py", line 318, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "F:\ComfyUI_windows_portable\ComfyUI\execution.py", line 306, in process_inputs
result = f(**inputs)
File "F:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 1641, in sample
return common_ksampler(model, noise_seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise, disable_noise=disable_noise, start_step=start_at_step, last_step=end_at_step, force_full_denoise=force_full_denoise)
File "F:\ComfyUI_windows_portable\ComfyUI\nodes.py", line 1571, in common_ksampler
samples = comfy.sample.sample(model, noise, steps, cfg, sampler_name, scheduler, positive, negative, latent_image,
denoise=denoise, disable_noise=disable_noise, start_step=start_step, last_step=last_step,
force_full_denoise=force_full_denoise, noise_mask=noise_mask, callback=callback, disable_pbar=disable_pbar, seed=seed)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\sample.py", line 74, 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 "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1453, 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 "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1343, in sample
return cfg_guider.sample(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1325, in sample
output = executor.execute(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed, latent_shapes=latent_shapes)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1260, in outer_sample
output = self.inner_sample(noise, latent_image, device, sampler, sigmas, denoise_mask, callback, disable_pbar, seed, latent_shapes=latent_shapes)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1235, in inner_sample
samples = executor.execute(self, sigmas, extra_args, callback, noise, latent_image, denoise_mask, disable_pbar)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1005, in sample
samples = self.sampler_function(model_k, noise, sigmas, extra_args=extra_args, callback=k_callback, disable=disable_pbar, **self.extra_options)
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\utils\_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\k_diffusion\sampling.py", line 205, in sample_euler
denoised = model(x, sigma_hat * s_in, **extra_args)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 640, in __call__
out = self.inner_model(x, sigma, model_options=model_options, seed=seed)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1208, in __call__
return self.outer_predict_noise(*args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1215, in outer_predict_noise
).execute(x, timestep, model_options, seed)
~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 1218, 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 "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 620, in sampling_function
out = calc_cond_batch(model, conds, x, timestep, model_options)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 211, in calc_cond_batch
return _calc_cond_batch_outer(model, conds, x_in, timestep, model_options)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 219, in _calc_cond_batch_outer
return executor.execute(model, conds, x_in, timestep, model_options)
~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\samplers.py", line 335, in _calc_cond_batch
output = model.apply_model(input_x, timestep_, **c).chunk(batch_chunks)
~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\model_base.py", line 194, in apply_model
return comfy.patcher_extension.WrapperExecutor.new_class_executor(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...<2 lines>...
comfy.patcher_extension.get_all_wrappers(comfy.patcher_extension.WrappersMP.APPLY_MODEL, transformer_options)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
).execute(x, t, c_concat, c_crossattn, control, transformer_options, **kwargs)
~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\model_base.py", line 238, in _apply_model
model_output = self.diffusion_model(xc, t, context=context, control=control, transformer_options=transformer_options, **extra_conds)
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1775, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1786, in _call_impl
return forward_call(*args, **kwargs)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\krea2\model.py", line 277, in forward
return comfy.patcher_extension.WrapperExecutor.new_class_executor(
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
...<2 lines>...
comfy.patcher_extension.get_all_wrappers(comfy.patcher_extension.WrappersMP.DIFFUSION_MODEL, transformer_options),
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
).execute(x, timesteps, context, attention_mask, ref_latents, transformer_options, **kwargs)
~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\patcher_extension.py", line 113, in execute
return self.original(*args, **kwargs)
~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\krea2\model.py", line 370, in _forward
combined = block(combined, tvec, freqs, None, timestep_zero_index=timestep_zero_index, transformer_options=transformer_options)
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1775, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1786, in _call_impl
return forward_call(*args, **kwargs)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\krea2\model.py", line 214, in forward
x = x + pregate * self.attn((1 + prescale) * self.prenorm(x) + preshift, freqs, mask, transformer_options=transformer_options)
~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1775, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "F:\ComfyUI_windows_portable\python_embeded\Lib\site-packages\torch\nn\modules\module.py", line 1786, in _call_impl
return forward_call(*args, **kwargs)
File "F:\ComfyUI_windows_portable\ComfyUI\comfy\ldm\krea2\model.py", line 87, in forward
out = p(q, k, v, pe=freqs, attn_mask=mask, extra_options=extra_options)
TypeError: HyperTile.execute..hypertile_in() got an unexpected keyword argument 'pe'
2026-08-04T00:16:02.030203 - [32m[INFO][0m [32mPrompt executed in 1.90 seconds[0m
## Attached Workflow
Please make sure that workflow does not contain any sensitive information such as API keys or passwords.
{"id":"56b9f086-6f98-4268-9b31-ddd5424fa9e3","revision":0,"last_node_id":1050,"last_link_id":35321,"nodes":[{"id":667,"type":"VAEDecode","pos":[2391.891986718323,2997.2705182295813],"size":[140,46],"flags":{"collapsed":false},"order":9,"mode":0,"inputs":[{"localized_name":"Latent","name":"samples","type":"LATENT","link":35162},{"localized_name":"vae","name":"vae","type":"VAE","link":35317}],"outputs":[{"localized_name":"图像","name":"IMAGE","type":"IMAGE","links":[31277]}],"properties":{"cnr_id":"comfy-core","ver":"0.27.0","Node name for S&R":"VAEDecode","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":[]},{"id":944,"type":"PreviewImage","pos":[2573.136419057713,2929.4137992605265],"size":[297.9315091541416,435.02805796777557],"flags":{},"order":10,"mode":0,"inputs":[{"localized_name":"图像","name":"images","type":"IMAGE","link":31277}],"outputs":[{"localized_name":"images","name":"images","type":"IMAGE","links":null}],"properties":{"cnr_id":"comfy-core","ver":"0.29.0","Node name for S&R":"PreviewImage","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":[]},{"id":148,"type":"ConditioningZeroOut","pos":[1894.0400809253317,3161.9215052548425],"size":[140,26],"flags":{},"order":7,"mode":0,"inputs":[{"localized_name":"条件","name":"conditioning","type":"CONDITIONING","link":34676}],"outputs":[{"localized_name":"条件","name":"CONDITIONING","type":"CONDITIONING","links":[35160]}],"properties":{"cnr_id":"comfy-core","ver":"0.26.0","Node name for S&R":"ConditioningZeroOut","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":[]},{"id":1019,"type":"EmptyLatentImage","pos":[1902.2932838757602,3252.2703095514494],"size":[210,106],"flags":{},"order":6,"mode":0,"inputs":[{"localized_name":"宽度","name":"width","type":"INT","widget":{"name":"width"},"link":35092},{"localized_name":"高度","name":"height","type":"INT","widget":{"name":"height"},"link":35093},{"localized_name":"批量大小","name":"batch_size","type":"INT","widget":{"name":"batch_size"},"link":null}],"outputs":[{"localized_name":"Latent","name":"LATENT","type":"LATENT","links":[35161]}],"properties":{"cnr_id":"comfy-core","ver":"0.29.0","Node name for S&R":"EmptyLatentImage","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":[1024,1536,1]},{"id":1038,"type":"KSamplerAdvanced","pos":[2157.997885150567,2993.753360768494],"size":[213.83210292308058,334],"flags":{},"order":8,"mode":0,"inputs":[{"localized_name":"模型","name":"model","type":"MODEL","link":35321},{"localized_name":"正面条件","name":"positive","type":"CONDITIONING","link":35159},{"localized_name":"负面条件","name":"negative","type":"CONDITIONING","link":35160},{"localized_name":"Latent图像","name":"latent_image","type":"LATENT","link":35161},{"localized_name":"添加噪波","name":"add_noise","type":"COMBO","widget":{"name":"add_noise"},"link":null},{"localized_name":"随机种","name":"noise_seed","type":"INT","widget":{"name":"noise_seed"},"link":null},{"localized_name":"步数","name":"steps","type":"INT","widget":{"name":"steps"},"link":null},{"localized_name":"cfg","name":"cfg","type":"FLOAT","widget":{"name":"cfg"},"link":null},{"localized_name":"采样器名称","name":"sampler_name","type":"COMBO","widget":{"name":"sampler_name"},"link":null},{"localized_name":"调度器","name":"scheduler","type":"COMBO","widget":{"name":"scheduler"},"link":null},{"localized_name":"开始步数","name":"start_at_step","type":"INT","widget":{"name":"start_at_step"},"link":null},{"localized_name":"结束步数","name":"end_at_step","type":"INT","widget":{"name":"end_at_step"},"link":null},{"localized_name":"返回剩余噪波","name":"return_with_leftover_noise","type":"COMBO","widget":{"name":"return_with_leftover_noise"},"link":null}],"outputs":[{"localized_name":"Latent","name":"LATENT","type":"LATENT","links":[35162]}],"properties":{"cnr_id":"comfy-core","ver":"0.29.0","Node name for S&R":"KSamplerAdvanced","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":["enable",10,"fixed",8,1,"euler","simple",0,3,"disable"]},{"id":495,"type":"CLIPLoader","pos":[909.0967712300254,3111.2203679369068],"size":[270,106],"flags":{},"order":0,"mode":0,"inputs":[{"localized_name":"CLIP名称","name":"clip_name","type":"COMBO","widget":{"name":"clip_name"},"link":null},{"localized_name":"类型","name":"type","type":"COMBO","widget":{"name":"type"},"link":null},{"localized_name":"设备","name":"device","shape":7,"type":"COMBO","widget":{"name":"device"},"link":null}],"outputs":[{"localized_name":"CLIP","name":"CLIP","type":"CLIP","links":[35316]}],"properties":{"cnr_id":"comfy-core","ver":"0.26.0","Node name for S&R":"CLIPLoader","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":["qwen3vl_4b_fp8_scaled.safetensors","krea2","default"]},{"id":496,"type":"UNETLoader","pos":[913.3195896056209,2977.024759676651],"size":[258.63439346538576,82],"flags":{},"order":1,"mode":0,"inputs":[{"localized_name":"UNet名称","name":"unet_name","type":"COMBO","widget":{"name":"unet_name"},"link":null},{"localized_name":"数据类型","name":"weight_dtype","type":"COMBO","widget":{"name":"weight_dtype"},"link":null}],"outputs":[{"localized_name":"模型","name":"MODEL","type":"MODEL","links":[35320]}],"properties":{"cnr_id":"comfy-core","ver":"0.26.0","Node name for S&R":"UNETLoader","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":["krea2_turbo_fp8.safetensors","default"]},{"id":1018,"type":"CLIPTextEncode","pos":[1356.5470941875394,3075.545324339671],"size":[400,200],"flags":{},"order":4,"mode":0,"inputs":[{"localized_name":"clip","name":"clip","type":"CLIP","link":35316},{"localized_name":"文本","name":"text","type":"STRING","widget":{"name":"text"},"link":null}],"outputs":[{"localized_name":"条件","name":"CONDITIONING","type":"CONDITIONING","links":[34676,35159]}],"properties":{"cnr_id":"comfy-core","ver":"0.29.0","Node name for S&R":"CLIPTextEncode","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":["写实摄影,真实照片,8k,穿深蓝色短裤和吊带衫的法国女人一只腿抬起踩在岩石上,一只手抓住藤曼,一只手叉腰看着观众微笑,干爽的皮肤,莫霍克发型,背景是丛林和远处的木屋,自然光"]},{"id":1031,"type":"ResolutionSelector","pos":[1488.5247613937306,3345.5508421795566],"size":[270,126],"flags":{},"order":2,"mode":0,"inputs":[{"localized_name":"宽高比","name":"aspect_ratio","type":"COMBO","widget":{"name":"aspect_ratio"},"link":null},{"localized_name":"百万像素","name":"megapixels","type":"FLOAT","widget":{"name":"megapixels"},"link":null},{"localized_name":"倍数","name":"multiple","type":"INT","widget":{"name":"multiple"},"link":null}],"outputs":[{"localized_name":"宽度","name":"width","type":"INT","links":[35092]},{"localized_name":"高度","name":"height","type":"INT","links":[35093]}],"properties":{"cnr_id":"comfy-core","ver":"0.29.0","Node name for S&R":"ResolutionSelector","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":["3:4 (Portrait Standard)",1,8]},{"id":1050,"type":"HyperTile","pos":[1466.237614741971,2878.40208505315],"size":[270,130],"flags":{},"order":5,"mode":0,"inputs":[{"localized_name":"模型","name":"model","type":"MODEL","link":35320},{"localized_name":"分块尺寸","name":"tile_size","type":"INT","widget":{"name":"tile_size"},"link":null},{"localized_name":"分割尺寸","name":"swap_size","type":"INT","widget":{"name":"swap_size"},"link":null},{"localized_name":"最大深度","name":"max_depth","type":"INT","widget":{"name":"max_depth"},"link":null},{"localized_name":"规模深度","name":"scale_depth","type":"BOOLEAN","widget":{"name":"scale_depth"},"link":null}],"outputs":[{"localized_name":"模型","name":"MODEL","type":"MODEL","links":[35321]}],"properties":{"cnr_id":"comfy-core","ver":"0.29.0","Node name for S&R":"HyperTile","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":[256,2,0,false]},{"id":497,"type":"VAELoader","pos":[916.4991074123658,3273.82936901153],"size":[270,58],"flags":{},"order":3,"mode":0,"inputs":[{"localized_name":"vae名称","name":"vae_name","type":"COMBO","widget":{"name":"vae_name"},"link":null}],"outputs":[{"localized_name":"VAE","name":"VAE","type":"VAE","links":[35317]}],"properties":{"cnr_id":"comfy-core","ver":"0.26.0","Node name for S&R":"VAELoader","ue_properties":{"widget_ue_connectable":{},"input_ue_unconnectable":{},"version":"7.5.2"}},"widgets_values":["qwen_image_vae.safetensors"]}],"links":[[31277,667,0,944,0,"IMAGE"],[34676,1018,0,148,0,"CONDITIONING"],[35092,1031,0,1019,0,"INT"],[35093,1031,1,1019,1,"INT"],[35159,1018,0,1038,1,"CONDITIONING"],[35160,148,0,1038,2,"CONDITIONING"],[35161,1019,0,1038,3,"LATENT"],[35162,1038,0,667,0,"LATENT"],[35316,495,0,1018,0,"CLIP"],[35317,497,0,667,1,"VAE"],[35320,496,0,1050,0,"MODEL"],[35321,1050,0,1038,0,"MODEL"]],"groups":[{"id":4,"title":"krea2文生图","bounding":[1884.0400809253317,2859.4137992605265,997.0278472865209,515.0280579677756],"color":"#3f789e","flags":{}}],"config":{},"extra":{"ue_links":[],"ds":{"scale":0.7627768444385488,"offset":[-489.2595812153517,-2206.125963234]},"links_added_by_ue":[],"frontendVersion":"1.45.19"},"version":0.4}
## Additional Context
(Please add any additional context or steps to reproduce the error here)
```
### Other
_No response_
Contributor guide
Research direction
Start with the reported TypeError and the stack-trace entry in comfy/ldm/krea2/model.py, then trace how HyperTile is applied during KSamplerAdvanced execution. Reproduce with the attached HyperTile_error (1).json on ComfyUI 0.29.0 and confirm that the Krea2 workflow runs with HyperTile enabled without the unexpected keyword argument error.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python, pytorch
- Domain
- machine-learning
- Issue type
- Bug
- Difficulty
- 3/5
- Estimated time
- 1-2 days
- Activity status
- Quiet
- Clarity
- Mostly clear
- Newbie friendliness
- 48/100