Skip to content

异步分片加载bug #15492

Description

@xp9797

Custom Node Testing

Expected Behavior

在之前0.20.1版本时没有没有出现加载模型异常问题,一直用的这个模型,更新版本后不能用了,模型时没问题的,求解决,上次就反馈了这个问题,还没解决

Image

Actual Behavior

退回到0.20.1能用,更新不能用

Steps to Reproduce

硬件信息

Image

Debug Logs

节点在执行过程中发生错误。


# ComfyUI Error Report
## Error Details
- **Node ID:** 3
- **Node Type:** KSampler
- **Exception Type:** RuntimeError
- **Exception Message:** RuntimeError: hostbuf_file_reader_read failed

## Stack Trace

  File "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\ComfyUI\execution.py", line 318, in _async_map_node_over_list
    await process_inputs(input_dict, i)

  File "G:\ComfyUI\ComfyUI\ComfyUI\execution.py", line 306, in process_inputs
    result = f(**inputs)

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

  File "G:\ComfyUI\ComfyUI\ComfyUI\nodes.py", line 1580, 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 "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 1463, 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\ComfyUI\comfy\samplers.py", line 1353, in sample
    return cfg_guider.sample(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
           ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

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

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

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

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

  File "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\utils\_contextlib.py", line 124, in decorate_context
    return func(*args, **kwargs)

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\k_diffusion\sampling.py", line 205, in sample_euler
    denoised = model(x, sigma_hat * s_in, **extra_args)

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

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

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 1215, in outer_predict_noise
    ).execute(x, timestep, model_options, seed)
      ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

  File "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 620, in sampling_function
    out = calc_cond_batch(model, conds, x, timestep, model_options)

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 211, in calc_cond_batch
    return _calc_cond_batch_outer(model, conds, x_in, timestep, model_options)

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

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

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 335, in _calc_cond_batch
    output = model.apply_model(input_x, timestep_, **c).chunk(batch_chunks)
             ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\model_base.py", line 203, 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 "G:\ComfyUI\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 113, in execute
    return self.original(*args, **kwargs)
           ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\model_base.py", line 247, in _apply_model
    model_output = self.diffusion_model(xc, t, context=context, control=control, transformer_options=transformer_options, **extra_conds)

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1778, in _wrapped_call_impl
    return self._call_impl(*args, **kwargs)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1789, in _call_impl
    return forward_call(*args, **kwargs)

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ldm\qwen_image\model.py", line 430, 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, timestep, context, attention_mask, ref_latents, additional_t_cond, transformer_options, **kwargs)
    ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

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

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ldm\qwen_image\model.py", line 537, in _forward
    encoder_hidden_states, hidden_states = block(
                                           ~~~~~^
        hidden_states=hidden_states,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<5 lines>...
        transformer_options=transformer_options,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1778, in _wrapped_call_impl
    return self._call_impl(*args, **kwargs)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1789, in _call_impl
    return forward_call(*args, **kwargs)

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ldm\qwen_image\model.py", line 311, in forward
    hidden_states = self._apply_gate(self.img_mlp(img_modulated2), hidden_states, img_gate2, timestep_zero_index)
                                     ~~~~~~~~~~~~^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1778, in _wrapped_call_impl
    return self._call_impl(*args, **kwargs)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1789, in _call_impl
    return forward_call(*args, **kwargs)

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ldm\qwen_image\model.py", line 50, in forward
    hidden_states = module(hidden_states)

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1778, in _wrapped_call_impl
    return self._call_impl(*args, **kwargs)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1789, in _call_impl
    return forward_call(*args, **kwargs)

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 549, in forward
    return self.forward_comfy_cast_weights(*args, **kwargs)
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 541, in forward_comfy_cast_weights
    weight, bias, offload_stream = cast_bias_weight(self, input, offloadable=True)
                                   ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 371, in cast_bias_weight
    offload_stream = cast_modules_with_vbar([s], dtype, device, bias_dtype, non_blocking)

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 230, in cast_modules_with_vbar
    handle_pin(s, pin, xfer_source, xfer_dest, subset=subset, size=dest_size)
    ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 228, in handle_pin
    cast_maybe_lowvram_patch(source, pin, offload_stream, xfer_dest2=dest)
    ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 219, in cast_maybe_lowvram_patch
    comfy.model_management.cast_to_gathered(xfer_source, xfer_dest, non_blocking=non_blocking, stream=stream, r2=xfer_dest2)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\model_management.py", line 1500, in cast_to_gathered
    if comfy.memory_management.read_tensor_file_slice_into(tensor, dest_view, stream=stream, destination2=dest2_view):
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\memory_management.py", line 59, in read_tensor_file_slice_into
    comfy_aimdo.host_buffer.read_file_to_device(file_obj, info.offset, info.size,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                                stream_ptr, destination2.data_ptr(),
                                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                                destination2.device.index,
                                                ^^^^^^^^^^^^^^^^^^^^^^^^^^
                                                mark_cold=False)
                                                ^^^^^^^^^^^^^^^^

  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\comfy_aimdo\host_buffer.py", line 71, in read_file_to_device
    raise RuntimeError("hostbuf_file_reader_read failed")


## System Information
- **ComfyUI Version:** 0.31.1
- **Arguments:** ComfyUI\main.py --feature-flag show_signin_button=true --feature-flag enable_telemetry=true --enable-manager --extra-model-paths-config C:\Users\Administrator\AppData\Roaming\Comfy Desktop\shared_model_paths.yaml --input-directory G:\ComfyUI\ComfyUI\ComfyUI\input --output-directory G:\ComfyUI\ComfyUI\ComfyUI\output
- **OS:** win32
- **Python Version:** 3.13.12 (main, Feb 12 2026, 00:38:53) [MSC v.1944 64 bit (AMD64)]
- **Embedded Python:** false
- **PyTorch Version:** 2.12.0+cu130
## Devices

- **Name:** cuda:0 NVIDIA GeForce RTX 4080 SUPER : cudaMallocAsync
  - **Type:** cuda
  - **VRAM Total:** 34350825472
  - **VRAM Free:** 32865386496
  - **Torch VRAM Total:** 33554432
  - **Torch VRAM Free:** 25034752

## Logs

2026-08-11T18:17:36.614240 - Warning: GroundingDINO not available. Text prompts will use fallback method.2026-08-11T18:17:36.614269 - 
2026-08-11T18:17:36.616125 - Error loading G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-rmbg\py\AILab_SegmentV2.py: No module named 'groundingdino'2026-08-11T18:17:36.616151 - 
2026-08-11T18:17:36.617066 - [ComfyUI-RMBG]2026-08-11T18:17:36.617096 -  v2026-08-11T18:17:36.617114 - 3.0.02026-08-11T18:17:36.617128 -  | 2026-08-11T18:17:36.617142 - 42 nodes2026-08-11T18:17:36.617156 -  2026-08-11T18:17:36.617174 - Loaded2026-08-11T18:17:36.617193 - 
2026-08-11T18:17:36.630310 - Warning: GroundingDINO not available. Text prompts will use fallback method.2026-08-11T18:17:36.630339 - 
2026-08-11T18:17:36.634529 - Error loading G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-RMBG-main\py\AILab_SegmentV2.py: No module named 'groundingdino'2026-08-11T18:17:36.634578 - 
2026-08-11T18:17:36.645691 - Warning: GroundingDINO not available. Text prompts will use fallback method.2026-08-11T18:17:36.645719 - 
2026-08-11T18:17:36.648279 - Error loading G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-RMBG-main\py\AILab_SegmentV2.py: No module named 'groundingdino'2026-08-11T18:17:36.648660 - 
2026-08-11T18:17:36.650072 - [ComfyUI-RMBG]2026-08-11T18:17:36.650099 -  v2026-08-11T18:17:36.650114 - 3.0.02026-08-11T18:17:36.650128 -  | 2026-08-11T18:17:36.650140 - 42 nodes2026-08-11T18:17:36.650154 -  2026-08-11T18:17:36.650167 - Loaded2026-08-11T18:17:36.650183 - 
2026-08-11T18:17:36.724662 - �[1m�[33m[WARNING]�[0m Traceback (most recent call last):
  File "G:\ComfyUI\ComfyUI\ComfyUI\nodes.py", line 2256, in load_custom_node
    module_spec.loader.exec_module(module)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^
  File "<frozen importlib._bootstrap_external>", line 1023, in exec_module
  File "<frozen importlib._bootstrap>", line 488, in _call_with_frames_removed
  File "G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-tensorops\__init__.py", line 1, in <module>
    from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
  File "G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-tensorops\nodes\__init__.py", line 8, in <module>
    from .fal import FalDifferentialDiffusion, FalDiffusion
  File "G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-tensorops\nodes\fal.py", line 6, in <module>
    import fal_client
ModuleNotFoundError: No module named 'fal_client'

2026-08-11T18:17:36.724788 - �[1m�[33m[WARNING]�[0m Cannot import G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-tensorops module for custom nodes: No module named 'fal_client'
2026-08-11T18:17:37.408965 - 
__     ______   ____                      ____              ____ _      _ 
\ \   / /  _ \ / ___| __ _ _ __ ___   ___|  _ \  _____   __/ ___(_)_ __| |
 \ \ / /| |_) | |  _ / _` | '_ ` _ \ / _ \ | | |/ _ \ \ / / |  _| | '__| |
  \ V / |  _ <| |_| | (_| | | | | | |  __/ |_| |  __/\ V /| |_| | | |  | |
   \_/  |_| \_\\____|\__,_|_| |_| |_|\___|____/ \___| \_/  \____|_|_|  |_|
                                                                          
             🎮 VRGameDevGirl custom nodes loaded successfully! 🎞️
2026-08-11T18:17:37.409001 - 
2026-08-11T18:17:38.045112 - (pysssss:WD14Tagger) [DEBUG] Available ORT providers: AzureExecutionProvider, CPUExecutionProvider2026-08-11T18:17:38.045146 - 
2026-08-11T18:17:38.045169 - (pysssss:WD14Tagger) [DEBUG] Using ORT providers: CUDAExecutionProvider, CPUExecutionProvider2026-08-11T18:17:38.045185 - 
2026-08-11T18:17:38.360381 - ### ComfyUI-Workflow-Encrypt: Copy .js from 'G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-workflow-encrypt\js\comfyui-workflow-encrypt.js' to 'G:\ComfyUI\ComfyUI\ComfyUI\web\extensions\comfyui-workflow-encrypt'2026-08-11T18:17:38.360415 - 
2026-08-11T18:17:38.423973 - ------------------------------------------2026-08-11T18:17:38.424004 - 
2026-08-11T18:17:38.424027 - Comfyroll Studio v1.76 : 2026-08-11T18:17:38.424043 -  175 Nodes Loaded2026-08-11T18:17:38.424059 - 
2026-08-11T18:17:38.424075 - ------------------------------------------2026-08-11T18:17:38.424089 - 
2026-08-11T18:17:38.424105 - ** For changes, please see patch notes at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/blob/main/Patch_Notes.md2026-08-11T18:17:38.424119 - 
2026-08-11T18:17:38.424134 - ** For help, please see the wiki at https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki2026-08-11T18:17:38.424147 - 
2026-08-11T18:17:38.424163 - ------------------------------------------2026-08-11T18:17:38.424176 - 
2026-08-11T18:17:38.432200 - [G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_controlnet_aux] | INFO -> Using ckpts path: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_controlnet_aux\ckpts2026-08-11T18:17:38.432523 - 
2026-08-11T18:17:38.432851 - [G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_controlnet_aux] | INFO -> Using symlinks: False2026-08-11T18:17:38.433114 - 
2026-08-11T18:17:38.433411 - [G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_controlnet_aux] | INFO -> Using ort providers: ['CUDAExecutionProvider', 'DirectMLExecutionProvider', 'OpenVINOExecutionProvider', 'ROCMExecutionProvider', 'CPUExecutionProvider', 'CoreMLExecutionProvider']2026-08-11T18:17:38.433669 - 
2026-08-11T18:17:38.452862 - G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_controlnet_aux\node_wrappers\dwpose.py:26: UserWarning: DWPose: Onnxruntime not found or doesn't come with acceleration providers, switch to OpenCV with CPU device. DWPose might run very slowly
  warnings.warn("DWPose: Onnxruntime not found or doesn't come with acceleration providers, switch to OpenCV with CPU device. DWPose might run very slowly")
2026-08-11T18:17:38.481764 - Loading ComfyUI-Lam2026-08-11T18:17:38.481790 - 
2026-08-11T18:17:43.301418 - �[32m[INFO]�[0m Imported existing <module 'comtypes.gen' from 'G:\\ComfyUI\\ComfyUI\\ComfyUI\\.venv\\Lib\\site-packages\\comtypes\\gen\\__init__.py'>
2026-08-11T18:17:43.301602 - �[32m[INFO]�[0m Using writeable comtypes cache directory: 'G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\comtypes\gen'
2026-08-11T18:17:44.159528 - �[32m[INFO]�[0m Total VRAM 32760 MB, total RAM 95901 MB
2026-08-11T18:17:44.159700 - �[32m[INFO]�[0m pytorch version: 2.12.0+cu130
2026-08-11T18:17:44.160702 - �[32m[INFO]�[0m Set vram state to: NORMAL_VRAM
2026-08-11T18:17:44.160795 - �[32m[INFO]�[0m Device: cuda:0 NVIDIA GeForce RTX 4080 SUPER : cudaMallocAsync
2026-08-11T18:17:44.180619 - �[32m[INFO]�[0m Using async weight offloading with 2 streams
2026-08-11T18:17:44.183022 - �[32m[INFO]�[0m Enabled pinned memory 38360.0
2026-08-11T18:17:44.322109 - Loaded custom node: node2026-08-11T18:17:44.322143 - 
2026-08-11T18:17:44.332561 - 
2026-08-11T18:17:44.332597 -  ██████╗2026-08-11T18:17:44.332613 - ██╗   ██╗2026-08-11T18:17:44.332627 - ██████╗ 2026-08-11T18:17:44.332641 - ███████╗2026-08-11T18:17:44.332655 - ██████╗ 2026-08-11T18:17:44.332668 - ██████╗ 2026-08-11T18:17:44.332681 - ██╗   ██╗2026-08-11T18:17:44.332695 - ███╗   ██╗2026-08-11T18:17:44.332708 - ██╗  ██╗2026-08-11T18:17:44.332724 - 
2026-08-11T18:17:44.332742 - ██╔════╝2026-08-11T18:17:44.332756 - ╚██╗ ██╔╝2026-08-11T18:17:44.332769 - ██╔══██╗2026-08-11T18:17:44.332787 - ██╔════╝2026-08-11T18:17:44.332800 - ██╔══██╗2026-08-11T18:17:44.332812 - ██╔══██╗2026-08-11T18:17:44.332825 - ██║   ██║2026-08-11T18:17:44.332838 - ████╗  ██║2026-08-11T18:17:44.332850 - ██║ ██╔╝2026-08-11T18:17:44.332864 - 
2026-08-11T18:17:44.332880 - ██║     2026-08-11T18:17:44.332893 -  ╚████╔╝ 2026-08-11T18:17:44.332920 - ██████╔╝2026-08-11T18:17:44.332961 - █████╗  2026-08-11T18:17:44.332978 - ██████╔╝2026-08-11T18:17:44.332992 - ██████╔╝2026-08-11T18:17:44.333006 - ██║   ██║2026-08-11T18:17:44.333018 - ██╔██╗ ██║2026-08-11T18:17:44.333031 - █████╔╝ 2026-08-11T18:17:44.333048 - 
2026-08-11T18:17:44.333066 - ██║     2026-08-11T18:17:44.333080 -   ╚██╔╝  2026-08-11T18:17:44.333093 - ██╔══██╗2026-08-11T18:17:44.333106 - ██╔══╝  2026-08-11T18:17:44.333118 - ██╔═══╝ 2026-08-11T18:17:44.333131 - ██╔═══╝ 2026-08-11T18:17:44.333144 - ██║   ██║2026-08-11T18:17:44.333156 - ██║╚██╗██║2026-08-11T18:17:44.333169 - ██╔═██╗ 2026-08-11T18:17:44.333183 - 
2026-08-11T18:17:44.333199 - ╚██████╗2026-08-11T18:17:44.333212 -    ██║   2026-08-11T18:17:44.333224 - ██████╔╝2026-08-11T18:17:44.333237 - ███████╗2026-08-11T18:17:44.333254 - ██║     2026-08-11T18:17:44.333267 - ██║     2026-08-11T18:17:44.333282 - ╚██████╔╝2026-08-11T18:17:44.333295 - ██║ ╚████║2026-08-11T18:17:44.333308 - ██║  ██╗2026-08-11T18:17:44.333322 - 
2026-08-11T18:17:44.333337 -  ╚═════╝2026-08-11T18:17:44.333350 -    ╚═╝   2026-08-11T18:17:44.333363 - ╚═════╝ 2026-08-11T18:17:44.333376 - ╚══════╝2026-08-11T18:17:44.333388 - ╚═╝     2026-08-11T18:17:44.333401 - ╚═╝     2026-08-11T18:17:44.333414 -  ╚═════╝ 2026-08-11T18:17:44.333427 - ╚═╝  ╚═══╝2026-08-11T18:17:44.333439 - ╚═╝  ╚═╝2026-08-11T18:17:44.333453 - 
2026-08-11T18:17:44.333467 - 
2026-08-11T18:17:44.333485 - 🚀 CYBERPUNK-STYLE-DIY Custom Nodes Loaded! 🚀2026-08-11T18:17:44.333500 - 
2026-08-11T18:17:44.333513 - 
2026-08-11T18:17:44.865321 - �[32m[INFO]�[0m Using pytorch attention
2026-08-11T18:17:44.876612 - (RES4LYF) Init2026-08-11T18:17:44.876643 - 
2026-08-11T18:17:44.876770 - (RES4LYF) Importing beta samplers.2026-08-11T18:17:44.876786 - 
2026-08-11T18:17:44.897134 - (RES4LYF) Importing legacy samplers.2026-08-11T18:17:44.897162 - 
2026-08-11T18:17:44.926553 - 
2026-08-11T18:17:44.926597 - [rgthree-comfy] Loaded 48 extraordinary nodes. 🎉2026-08-11T18:17:44.926615 - 
2026-08-11T18:17:44.926632 - 
2026-08-11T18:17:44.926666 - [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.
2026-08-11T18:17:44.926686 - 
2026-08-11T18:17:44.935648 - ⚡ SeedVR2 optimizations check: SageAttention ✅ | Flash Attention ❌ | Triton ✅2026-08-11T18:17:44.935676 - 
2026-08-11T18:17:44.935697 - 💡 Optional: pip install flash-attn2026-08-11T18:17:44.935712 - 
2026-08-11T18:17:45.136978 - 📊 Initial CUDA memory: 30.58GB free / 31.99GB total2026-08-11T18:17:45.137015 - 
2026-08-11T18:17:46.470233 - WAS Node Suite: 2026-08-11T18:17:46.470271 - OpenCV Python FFMPEG support is enabled2026-08-11T18:17:46.470291 - 
2026-08-11T18:17:46.470327 - WAS Node Suite 2026-08-11T18:17:46.470341 - Warning: 2026-08-11T18:17:46.470359 - `ffmpeg_bin_path` is not set in `G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\was-ns\was_suite_config.json` config file. Will attempt to use system ffmpeg binaries if available.2026-08-11T18:17:46.470376 - 
2026-08-11T18:17:46.817488 - WAS Node Suite: 2026-08-11T18:17:46.817520 - Finished.2026-08-11T18:17:46.817541 -  2026-08-11T18:17:46.817557 - Loaded2026-08-11T18:17:46.817571 -  2026-08-11T18:17:46.817585 - 2202026-08-11T18:17:46.817599 -  2026-08-11T18:17:46.817613 - nodes successfully.2026-08-11T18:17:46.817630 - 
2026-08-11T18:17:46.817663 - 
	2026-08-11T18:17:46.817679 - "Art is the most intense mode of individualism that the world has known."2026-08-11T18:17:46.817693 -  - Oscar Wilde2026-08-11T18:17:46.817707 - 
2026-08-11T18:17:46.817723 - 
2026-08-11T18:17:46.831883 - �[32m[INFO]�[0m 
Import times for custom nodes:
2026-08-11T18:17:46.831966 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\websocket_image_save.py
2026-08-11T18:17:46.832000 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI_RH_LLM_API
2026-08-11T18:17:46.832025 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI_RH_SeedXPro
2026-08-11T18:17:46.832049 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\Comfyui-PainterFluxImageEdit-main
2026-08-11T18:17:46.832070 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_memory_cleanup
2026-08-11T18:17:46.832092 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-FeiHou-Toolbox-main
2026-08-11T18:17:46.832113 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-DD-Translation-main
2026-08-11T18:17:46.832137 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI_EasySize
2026-08-11T18:17:46.832158 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI_YOLO_For_Multi_SDPose_Detection
2026-08-11T18:17:46.832181 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Licon-MSR
2026-08-11T18:17:46.832201 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-MiniMaxH3_LatentUpscaler
2026-08-11T18:17:46.832224 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\masquerade-nodes-comfyui
2026-08-11T18:17:46.832247 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-FreeMemory
2026-08-11T18:17:46.832269 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-ReservedVRAM
2026-08-11T18:17:46.832290 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-TT-Resolution_selector-Node
2026-08-11T18:17:46.832311 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Chinese-Translation-main
2026-08-11T18:17:46.832331 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_ttp_toolset
2026-08-11T18:17:46.832402 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\qweneditutils
2026-08-11T18:17:46.832459 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-spectrum-sdxl
2026-08-11T18:17:46.832488 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-inpaint-cropandstitch
2026-08-11T18:17:46.832512 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-FeiHou-Toolbox
2026-08-11T18:17:46.832532 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\CYBERPUNK-STYLE-DIY
2026-08-11T18:17:46.832553 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\Comfyui-Segment-Queue-Runner
2026-08-11T18:17:46.832574 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI_UniBlockSwap
2026-08-11T18:17:46.832594 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-post-processing-nodes
2026-08-11T18:17:46.832614 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-SCAIL-Pose
2026-08-11T18:17:46.832634 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyLiterals
2026-08-11T18:17:46.832654 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-wd14-tagger
2026-08-11T18:17:46.832676 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\erosdiffusion-eulerflowmatchingdiscretescheduler
2026-08-11T18:17:46.832699 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-GGUF
2026-08-11T18:17:46.832720 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\Comfyui-Anima-Tools
2026-08-11T18:17:46.832740 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_ipadapter_plus
2026-08-11T18:17:46.832759 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-PromptRelay
2026-08-11T18:17:46.832779 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-RH-Bernini
2026-08-11T18:17:46.832797 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\Comfyui-Resolution-Master
2026-08-11T18:17:46.832818 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-inpaint-nodes
2026-08-11T18:17:46.832839 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_essentials
2026-08-11T18:17:46.832859 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-WanAni-SQR
2026-08-11T18:17:46.832879 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-WanAnimatePreprocess
2026-08-11T18:17:46.832899 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\WhatDreamsCost-ComfyUI
2026-08-11T18:17:46.832918 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-custom-scripts
2026-08-11T18:17:46.832938 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-luminawrapper
2026-08-11T18:17:46.832956 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\CS-WhatDreamsCost-ComfyUI
2026-08-11T18:17:46.832975 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Frame-Interpolation
2026-08-11T18:17:46.832993 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\derfuu_comfyui_moddednodes
2026-08-11T18:17:46.833012 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-segment-anything-2
2026-08-11T18:17:46.833031 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-ProportionChanger
2026-08-11T18:17:46.833050 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\rgthree-comfy
2026-08-11T18:17:46.833069 - �[32m[INFO]�[0m    0.0 seconds (IMPORT FAILED): G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-LTXVideo
2026-08-11T18:17:46.833093 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-ollama
2026-08-11T18:17:46.833113 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-kjnodes
2026-08-11T18:17:46.833133 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-RMBG-main
2026-08-11T18:17:46.833153 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes
2026-08-11T18:17:46.833172 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Prompt-Assistant
2026-08-11T18:17:46.833191 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Inspire-Pack
2026-08-11T18:17:46.833211 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-vrgamedevgirl
2026-08-11T18:17:46.833229 - �[32m[INFO]�[0m    0.0 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_controlnet_aux
2026-08-11T18:17:46.833249 - �[32m[INFO]�[0m    0.0 seconds (IMPORT FAILED): G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-tensorops
2026-08-11T18:17:46.833270 - �[32m[INFO]�[0m    0.1 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Lumina-Next-SFT-DiffusersWrapper
2026-08-11T18:17:46.833290 - �[32m[INFO]�[0m    0.1 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-impact-pack
2026-08-11T18:17:46.833309 - �[32m[INFO]�[0m    0.1 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-easy-use
2026-08-11T18:17:46.833328 - �[32m[INFO]�[0m    0.1 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui_layerstyle
2026-08-11T18:17:46.833347 - �[32m[INFO]�[0m    0.1 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-WJNodes
2026-08-11T18:17:46.833366 - �[32m[INFO]�[0m    0.1 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-BodyRatioMapper
2026-08-11T18:17:46.833384 - �[32m[INFO]�[0m    0.2 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-workflow-encrypt
2026-08-11T18:17:46.833403 - �[32m[INFO]�[0m    0.3 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-WanVideoWrapper
2026-08-11T18:17:46.833423 - �[32m[INFO]�[0m    0.3 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\seedvr2_videoupscaler
2026-08-11T18:17:46.833442 - �[32m[INFO]�[0m    0.3 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-impact-subpack
2026-08-11T18:17:46.833505 - �[32m[INFO]�[0m    0.3 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-WanAnimatePlus
2026-08-11T18:17:46.833567 - �[32m[INFO]�[0m    0.3 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-easy-sam3
2026-08-11T18:17:46.833595 - �[32m[INFO]�[0m    0.5 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\RES4LYF
2026-08-11T18:17:46.833617 - �[32m[INFO]�[0m    0.6 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-CustomNodeKit
2026-08-11T18:17:46.833640 - �[32m[INFO]�[0m    0.6 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-rmbg
2026-08-11T18:17:46.833660 - �[32m[INFO]�[0m    0.7 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\comfyui-videohelpersuite
2026-08-11T18:17:46.833683 - �[32m[INFO]�[0m    0.9 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI-Crystools
2026-08-11T18:17:46.833704 - �[32m[INFO]�[0m    1.6 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\was-ns
2026-08-11T18:17:46.833724 - �[32m[INFO]�[0m    4.1 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\alex-seedvr-node
2026-08-11T18:17:46.833743 - �[32m[INFO]�[0m    5.7 seconds: G:\ComfyUI\ComfyUI\ComfyUI\custom_nodes\ComfyUI_Lam
2026-08-11T18:17:46.833765 - �[32m[INFO]�[0m 
2026-08-11T18:17:46.836564 - �[32m[INFO]�[0m Context impl SQLiteImpl.
2026-08-11T18:17:46.836627 - �[32m[INFO]�[0m Will assume non-transactional DDL.
2026-08-11T18:17:46.941917 - �[32m[INFO]�[0m Using RAM pressure cache.
2026-08-11T18:17:46.942447 - �[32m[INFO]�[0m Starting server

2026-08-11T18:17:46.942826 - �[32m[INFO]�[0m To see the GUI go to: http://127.0.0.1:8188
2026-08-11T18:17:47.030172 - �[1m�[31m[ERROR]�[0m Exception in callback _ProactorBasePipeTransport._call_connection_lost()
handle: <Handle _ProactorBasePipeTransport._call_connection_lost()>
Traceback (most recent call last):
  File "G:\ComfyUI\ComfyUI\standalone-env\Lib\asyncio\events.py", line 89, in _run
    self._context.run(self._callback, *self._args)
    ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\standalone-env\Lib\asyncio\proactor_events.py", line 165, in _call_connection_lost
    self._sock.shutdown(socket.SHUT_RDWR)
    ~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^
ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。
2026-08-11T18:17:47.958331 - �[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-11T18:17:47.959213 - �[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-11T18:17:47.962919 - �[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-11T18:17:47.963717 - �[1m�[33m[WARNING]�[0m [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-08-11T18:17:47.964365 - �[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-11T18:17:49.912227 - �[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-11T18:17:50.154309 - �[32m[INFO]�[0m [ComfyUI-Manager] The ComfyRegistry cache update is still in progress, so an outdated cache is being used.
2026-08-11T18:17:50.228985 - FETCH DATA from: G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\comfyui_manager\custom-node-list.json2026-08-11T18:17:50.241225 -  [DONE]2026-08-11T18:17:50.241257 - 
2026-08-11T18:18:15.584362 - �[32m[INFO]�[0m got prompt
2026-08-11T18:18:15.630560 - �[32m[INFO]�[0m Using pytorch attention in VAE
2026-08-11T18:18:15.631211 - �[32m[INFO]�[0m Using pytorch attention in VAE
2026-08-11T18:18:15.796066 - �[32m[INFO]�[0m VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2026-08-11T18:18:15.916580 - # 😺dzNodes: LayerStyle -> 2026-08-11T18:18:15.916632 - ImageScaleByAspectRatio V2 Processed 1 image(s).2026-08-11T18:18:15.916658 - 
2026-08-11T18:18:15.932467 - �[32m[INFO]�[0m Requested to load WanVAE
2026-08-11T18:18:15.983085 - �[32m[INFO]�[0m Model WanVAE prepared for dynamic VRAM loading. 241MB Staged. 0 patches attached. Force pre-loaded 60 weights: 61 KB.
2026-08-11T18:18:16.728145 - �[32m[INFO]�[0m Found quantization metadata version 1
2026-08-11T18:18:16.728650 - �[32m[INFO]�[0m Using MixedPrecisionOps for text encoder
2026-08-11T18:18:17.008801 - �[32m[INFO]�[0m CLIP/text encoder model load device: cuda:0, offload device: cpu, current: cpu, dtype: torch.float16
2026-08-11T18:18:17.015871 - �[32m[INFO]�[0m Requested to load QwenImageTEModel_
2026-08-11T18:18:17.085908 - �[32m[INFO]�[0m Model QwenImageTEModel_ prepared for dynamic VRAM loading. 7910MB Staged. 0 patches attached. Force pre-loaded 122 weights: 561 KB.
2026-08-11T18:18:24.634402 - �[32m[INFO]�[0m Model WanVAE prepared for dynamic VRAM loading. 241MB Staged. 0 patches attached. Force pre-loaded 60 weights: 61 KB.
2026-08-11T18:18:24.981000 - �[32m[INFO]�[0m Model QwenImageTEModel_ prepared for dynamic VRAM loading. 7910MB Staged. 0 patches attached. Force pre-loaded 122 weights: 561 KB.
2026-08-11T18:18:27.159269 - �[32m[INFO]�[0m model weight dtype torch.bfloat16, manual cast: None
2026-08-11T18:18:27.162988 - �[32m[INFO]�[0m model_type FLUX
2026-08-11T18:18:27.356891 - �[32m[INFO]�[0m Requested to load QwenImage
2026-08-11T18:18:27.489336 - �[32m[INFO]�[0m Model QwenImage prepared for dynamic VRAM loading. 38967MB Staged. 840 patches attached. Force pre-loaded 241 weights: 70 KB.
2026-08-11T18:19:03.032448 - 
  0%|          | 0/4 [00:35<?, ?it/s,   Model Initializing ...  ]2026-08-11T18:19:03.032537 - 
2026-08-11T18:19:03.193975 - �[1m�[31m[ERROR]�[0m !!! Exception during processing !!! hostbuf_file_reader_read failed
2026-08-11T18:19:03.207520 - �[1m�[31m[ERROR]�[0m Traceback (most recent call last):
  File "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\ComfyUI\execution.py", line 318, in _async_map_node_over_list
    await process_inputs(input_dict, i)
  File "G:\ComfyUI\ComfyUI\ComfyUI\execution.py", line 306, in process_inputs
    result = f(**inputs)
  File "G:\ComfyUI\ComfyUI\ComfyUI\nodes.py", line 1616, in sample
    return common_ksampler(model, seed, steps, cfg, sampler_name, scheduler, positive, negative, latent_image, denoise=denoise)
  File "G:\ComfyUI\ComfyUI\ComfyUI\nodes.py", line 1580, 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 "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 1463, 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\ComfyUI\comfy\samplers.py", line 1353, in sample
    return cfg_guider.sample(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed)
           ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 1335, in sample
    output = executor.execute(noise, latent_image, sampler, sigmas, denoise_mask, callback, disable_pbar, seed, latent_shapes=latent_shapes)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 113, in execute
    return self.original(*args, **kwargs)
           ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 1262, in outer_sample
    output = self.inner_sample(noise, latent_image, device, sampler, sigmas, denoise_mask, callback, disable_pbar, seed, latent_shapes=latent_shapes)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 1237, in inner_sample
    samples = executor.execute(self, sigmas, extra_args, callback, noise, latent_image, denoise_mask, disable_pbar)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 113, in execute
    return self.original(*args, **kwargs)
           ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\utils\_contextlib.py", line 124, in decorate_context
    return func(*args, **kwargs)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\k_diffusion\sampling.py", line 205, in sample_euler
    denoised = model(x, sigma_hat * s_in, **extra_args)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 640, in __call__
    out = self.inner_model(x, sigma, model_options=model_options, seed=seed)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 1208, in __call__
    return self.outer_predict_noise(*args, **kwargs)
           ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 1215, in outer_predict_noise
    ).execute(x, timestep, model_options, seed)
      ~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 113, in execute
    return self.original(*args, **kwargs)
           ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\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 "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 620, in sampling_function
    out = calc_cond_batch(model, conds, x, timestep, model_options)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 211, in calc_cond_batch
    return _calc_cond_batch_outer(model, conds, x_in, timestep, model_options)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 219, in _calc_cond_batch_outer
    return executor.execute(model, conds, x_in, timestep, model_options)
           ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 113, in execute
    return self.original(*args, **kwargs)
           ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\samplers.py", line 335, in _calc_cond_batch
    output = model.apply_model(input_x, timestep_, **c).chunk(batch_chunks)
             ~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\model_base.py", line 203, 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 "G:\ComfyUI\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 113, in execute
    return self.original(*args, **kwargs)
           ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\model_base.py", line 247, in _apply_model
    model_output = self.diffusion_model(xc, t, context=context, control=control, transformer_options=transformer_options, **extra_conds)
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1778, in _wrapped_call_impl
    return self._call_impl(*args, **kwargs)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1789, in _call_impl
    return forward_call(*args, **kwargs)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ldm\qwen_image\model.py", line 430, 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, timestep, context, attention_mask, ref_latents, additional_t_cond, transformer_options, **kwargs)
    ~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\patcher_extension.py", line 113, in execute
    return self.original(*args, **kwargs)
           ~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ldm\qwen_image\model.py", line 537, in _forward
    encoder_hidden_states, hidden_states = block(
                                           ~~~~~^
        hidden_states=hidden_states,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    ...<5 lines>...
        transformer_options=transformer_options,
        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    )
    ^
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1778, in _wrapped_call_impl
    return self._call_impl(*args, **kwargs)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1789, in _call_impl
    return forward_call(*args, **kwargs)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ldm\qwen_image\model.py", line 311, in forward
    hidden_states = self._apply_gate(self.img_mlp(img_modulated2), hidden_states, img_gate2, timestep_zero_index)
                                     ~~~~~~~~~~~~^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1778, in _wrapped_call_impl
    return self._call_impl(*args, **kwargs)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1789, in _call_impl
    return forward_call(*args, **kwargs)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ldm\qwen_image\model.py", line 50, in forward
    hidden_states = module(hidden_states)
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1778, in _wrapped_call_impl
    return self._call_impl(*args, **kwargs)
           ~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\torch\nn\modules\module.py", line 1789, in _call_impl
    return forward_call(*args, **kwargs)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 549, in forward
    return self.forward_comfy_cast_weights(*args, **kwargs)
           ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 541, in forward_comfy_cast_weights
    weight, bias, offload_stream = cast_bias_weight(self, input, offloadable=True)
                                   ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 371, in cast_bias_weight
    offload_stream = cast_modules_with_vbar([s], dtype, device, bias_dtype, non_blocking)
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 230, in cast_modules_with_vbar
    handle_pin(s, pin, xfer_source, xfer_dest, subset=subset, size=dest_size)
    ~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 228, in handle_pin
    cast_maybe_lowvram_patch(source, pin, offload_stream, xfer_dest2=dest)
    ~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\ops.py", line 219, in cast_maybe_lowvram_patch
    comfy.model_management.cast_to_gathered(xfer_source, xfer_dest, non_blocking=non_blocking, stream=stream, r2=xfer_dest2)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\model_management.py", line 1500, in cast_to_gathered
    if comfy.memory_management.read_tensor_file_slice_into(tensor, dest_view, stream=stream, destination2=dest2_view):
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\comfy\memory_management.py", line 59, in read_tensor_file_slice_into
    comfy_aimdo.host_buffer.read_file_to_device(file_obj, info.offset, info.size,
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                                stream_ptr, destination2.data_ptr(),
                                                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                                destination2.device.index,
                                                ^^^^^^^^^^^^^^^^^^^^^^^^^^
                                                mark_cold=False)
                                                ^^^^^^^^^^^^^^^^
  File "G:\ComfyUI\ComfyUI\ComfyUI\.venv\Lib\site-packages\comfy_aimdo\host_buffer.py", line 71, in read_file_to_device
    raise RuntimeError("hostbuf_file_reader_read failed")
RuntimeError: hostbuf_file_reader_read failed

2026-08-11T18:19:03.214686 - 结束拦截测试:2026-08-11T18:19:03.214794 -  2026-08-11T18:19:03.214818 - 02026-08-11T18:19:03.214838 - 
2026-08-11T18:19:03.215118 - �[32m[INFO]�[0m �[32mPrompt executed in 47.62 seconds�[0m


## Attached Workflow
Please make sure that workflow does not contain any sensitive information such as API keys or passwords.

Workflow too large. Please manually upload the workflow from local file system.


## Additional Context
(Please add any additional context or steps to reproduce the error here)

Other

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    Potential BugUser is reporting a bug. This should be tested.

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions