Skip to content

CUDA SETUP: Required library version not found: libbitsandbytes_cuda128.dll? #4

@Romanio1997

Description

@Romanio1997

DownloadAndLoadFlorence2Model
Command '['C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\tcc\tcc.exe', 'C:\Users\user\AppData\Local\Temp\latentsync_26e2f00c\tmpj18cpmg1\cuda_utils.c', '-O3', '-shared', '-Wno-psabi', '-o', 'C:\Users\user\AppData\Local\Temp\latentsync_26e2f00c\tmpj18cpmg1\cuda_utils.cp312-win_amd64.pyd', '-fPIC', '-lcuda', '-lpython3', '-LC:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\lib', '-LC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8\lib\x64', '-IC:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\include', '-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8\include', '-IC:\Users\user\AppData\Local\Temp\latentsync_26e2f00c\tmpj18cpmg1', '-IC:\AI\ComfyUI_Windows_portable-2\python_embeded\Include']' returned non-zero exit status 1.

Image

ComfyUI Error Report

Error Details

  • Node ID: 96
  • Node Type: DownloadAndLoadFlorence2Model
  • Exception Type: subprocess.CalledProcessError
  • Exception Message: Command '['C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\tcc\tcc.exe', 'C:\Users\user\AppData\Local\Temp\latentsync_26e2f00c\tmp8to4yrrd\cuda_utils.c', '-O3', '-shared', '-Wno-psabi', '-o', 'C:\Users\user\AppData\Local\Temp\latentsync_26e2f00c\tmp8to4yrrd\cuda_utils.cp312-win_amd64.pyd', '-fPIC', '-lcuda', '-lpython3', '-LC:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\lib', '-LC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8\lib\x64', '-IC:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\include', '-IC:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v12.8\include', '-IC:\Users\user\AppData\Local\Temp\latentsync_26e2f00c\tmp8to4yrrd', '-IC:\AI\ComfyUI_Windows_portable-2\python_embeded\Include']' returned non-zero exit status 1.

Stack Trace

  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 361, in execute
    output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 236, in get_output_data
    return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 208, in _map_node_over_list
    process_inputs(input_dict, i)

  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 197, in process_inputs
    results.append(getattr(obj, func)(**inputs))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Florence2\nodes.py", line 159, in loadmodel
    model = PeftModel.from_pretrained(model, adapter_name, trust_remote_code=True)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 533, in from_pretrained
    model = MODEL_TYPE_TO_PEFT_MODEL_MAPPING[config.task_type](
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 1722, in __init__
    super().__init__(model, peft_config, adapter_name, **kwargs)

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 132, in __init__
    self.base_model = cls(model, {adapter_name: peft_config}, adapter_name)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 142, in __init__
    super().__init__(model, config, adapter_name, low_cpu_mem_usage=low_cpu_mem_usage)

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\tuners_utils.py", line 180, in __init__
    self.inject_adapter(self.model, adapter_name, low_cpu_mem_usage=low_cpu_mem_usage)

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\tuners_utils.py", line 508, in inject_adapter
    self._create_and_replace(peft_config, adapter_name, target, target_name, parent, current_key=key)

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 237, in _create_and_replace
    new_module = self._create_new_module(lora_config, adapter_name, target, device_map=device_map, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 318, in _create_new_module
    from .bnb import dispatch_bnb_8bit

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\bnb.py", line 19, in <module>
    import bitsandbytes as bnb

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\__init__.py", line 19, in <module>
    from .nn import modules

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\nn\__init__.py", line 21, in <module>
    from .triton_based_modules import (

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\nn\triton_based_modules.py", line 6, in <module>
    from bitsandbytes.triton.dequantize_rowwise import dequantize_rowwise

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\triton\dequantize_rowwise.py", line 18, in <module>
    @triton.autotune(
     ^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\autotuner.py", line 378, in decorator
    return Autotuner(fn, fn.arg_names, configs, key, reset_to_zero, restore_value, pre_hook=pre_hook,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\autotuner.py", line 130, in __init__
    self.do_bench = driver.active.get_benchmarker()
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 23, in __getattr__
    self._initialize_obj()

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 20, in _initialize_obj
    self._obj = self._init_fn()
                ^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 9, in _create_driver
    return actives[0]()
           ^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 576, in __init__
    self.utils = CudaUtils()  # TODO: make static
                 ^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 101, in __init__
    mod = compile_module_from_src(Path(os.path.join(dirname, "driver.c")).read_text(), "cuda_utils")
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 74, in compile_module_from_src
    so = _build(name, src_path, tmpdir, library_dirs(), include_dir, libraries)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\build.py", line 100, in _build
    raise e

  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\build.py", line 97, in _build
    ret = subprocess.check_call(cc_cmd)
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  File "subprocess.py", line 413, in check_call

System Information

  • ComfyUI Version: 0.3.43
  • Arguments: ComfyUI\main.py --windows-standalone-build --fast fp16_accumulation
  • OS: nt
  • Python Version: 3.12.10 (tags/v3.12.10:0cc8128, Apr 8 2025, 12:21:36) [MSC v.1943 64 bit (AMD64)]
  • Embedded Python: true
  • PyTorch Version: 2.7.1+cu128

Devices

  • Name: cuda:0 NVIDIA GeForce RTX 3090 : cudaMallocAsync
    • Type: cuda
    • VRAM Total: 25769279488
    • VRAM Free: 23601348864
    • Torch VRAM Total: 17448304640
    • Torch VRAM Free: 16676552960

Logs

2025-07-03T20:48:59.973379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mxtoolkit
2025-07-03T20:48:59.975379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_ttp_toolset
2025-07-03T20:48:59.975379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\cg-use-everywhere
2025-07-03T20:48:59.977379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_jc2
2025-07-03T20:48:59.978382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\DistillT5ComfyUI
2025-07-03T20:48:59.979380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyLiterals
2025-07-03T20:48:59.979380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Jjk-Nodes
2025-07-03T20:48:59.980379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-OreX
2025-07-03T20:48:59.980379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\cozy-sal-vton
2025-07-03T20:48:59.981381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\Comfyui_Object_Detect_QWen_VL
2025-07-03T20:48:59.981381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-in-context-lora-utils
2025-07-03T20:48:59.982380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-inpainteasy
2025-07-03T20:48:59.982380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-ultimate-openpose-editor
2025-07-03T20:48:59.985380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-inpaint-cropandstitch
2025-07-03T20:48:59.986381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-42lux
2025-07-03T20:48:59.988380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-get-meta
2025-07-03T20:48:59.989383 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_slk_joy_caption_two
2025-07-03T20:48:59.991380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-automaticcfg
2025-07-03T20:48:59.992382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_JPS-Nodes
2025-07-03T20:48:59.992382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Flux-Continuum
2025-07-03T20:48:59.993381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_face_parsing
2025-07-03T20:48:59.993381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-MagCache
2025-07-03T20:48:59.994382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_Searge_LLM
2025-07-03T20:48:59.994382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\LanPaint
2025-07-03T20:48:59.995381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_ipadapter_plus
2025-07-03T20:48:59.995381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-inpaint-nodes
2025-07-03T20:48:59.996380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\sd-perturbed-attention
2025-07-03T20:48:59.996380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Florence2
2025-07-03T20:48:59.997382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\mikey_nodes
2025-07-03T20:48:59.998379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-TiledDiffusion
2025-07-03T20:48:59.999379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-QualityOfLifeSuit_Omar92
2025-07-03T20:49:00.001382 -    0.0 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_TensorRT
2025-07-03T20:49:00.003380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-various
2025-07-03T20:49:00.003380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\cg-image-filter
2025-07-03T20:49:00.004382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-AutoCropFaces
2025-07-03T20:49:00.005380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_fizznodes
2025-07-03T20:49:00.006380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-BiRefNet-Hugo
2025-07-03T20:49:00.006380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Custom-Scripts
2025-07-03T20:49:00.007382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-impact-subpack
2025-07-03T20:49:00.007382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-tooling-nodes
2025-07-03T20:49:00.008381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\hd_node
2025-07-03T20:49:00.008381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_patches_ll
2025-07-03T20:49:00.009381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-portrait-master
2025-07-03T20:49:00.009381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\human-parser-comfyui-node-in-pure-python
2025-07-03T20:49:00.010380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyMath
2025-07-03T20:49:00.010380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_essentials
2025-07-03T20:49:00.010380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-image-saver
2025-07-03T20:49:00.012380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\wavespeed
2025-07-03T20:49:00.013381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\efficiency-nodes-comfyui
2025-07-03T20:49:00.013381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_ultimatesdupscale
2025-07-03T20:49:00.013381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_Mira
2025-07-03T20:49:00.014382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_MatAnyone_Kytra
2025-07-03T20:49:00.014382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-NeuralMedia
2025-07-03T20:49:00.015383 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Gallery
2025-07-03T20:49:00.018379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-frame-interpolation
2025-07-03T20:49:00.021379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\derfuu_comfyui_moddednodes
2025-07-03T20:49:00.021379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-HyperLoRA
2025-07-03T20:49:00.022380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-depthanythingv2
2025-07-03T20:49:00.022380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-segment-anything-2
2025-07-03T20:49:00.022380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfy-image-saver
2025-07-03T20:49:00.023381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\x-flux-comfyui
2025-07-03T20:49:00.023381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-advanced-controlnet
2025-07-03T20:49:00.024380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\controlaltai-nodes
2025-07-03T20:49:00.024380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-dream-project
2025-07-03T20:49:00.025382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_ExtraModels
2025-07-03T20:49:00.026380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\gguf
2025-07-03T20:49:00.027380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-KJNodes
2025-07-03T20:49:00.027380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_segment_anything
2025-07-03T20:49:00.028382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Translator
2025-07-03T20:49:00.028382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-GGUF
2025-07-03T20:49:00.029380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-jakeupgrade
2025-07-03T20:49:00.029380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-multigpu
2025-07-03T20:49:00.030379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-SaveImageWithMetaData
2025-07-03T20:49:00.030379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_caption_this
2025-07-03T20:49:00.031379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-lf
2025-07-03T20:49:00.034380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Florence-2
2025-07-03T20:49:00.035381 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-LLaVA-Captioner
2025-07-03T20:49:00.037379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_BiRefNet_ll
2025-07-03T20:49:00.037379 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_Comfyroll_CustomNodes
2025-07-03T20:49:00.038380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-MingNodes
2025-07-03T20:49:00.038380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-ic-light
2025-07-03T20:49:00.041380 -    0.0 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-TeaCache
2025-07-03T20:49:00.042382 -    0.0 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-layerdiffuse
2025-07-03T20:49:00.042382 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_MiniCPM-V-2_6-int4
2025-07-03T20:49:00.043380 -    0.0 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_CatVTON_Wrapper
2025-07-03T20:49:00.043380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_controlnet_aux
2025-07-03T20:49:00.044381 -    0.0 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\FitDiT
2025-07-03T20:49:00.044381 -    0.0 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\FitDiT-ComfyUI
2025-07-03T20:49:00.045380 -    0.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_wav2lip
2025-07-03T20:49:00.047381 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\OmniGen-ComfyUI
2025-07-03T20:49:00.050381 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-idm-vton
2025-07-03T20:49:00.051380 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-WanVideoWrapper
2025-07-03T20:49:00.053380 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-WanVideoWrapper-MultiTalk
2025-07-03T20:49:00.054381 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Flux-TryOff
2025-07-03T20:49:00.055379 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-inspire-pack
2025-07-03T20:49:00.056381 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-nunchaku
2025-07-03T20:49:00.056381 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-replicate
2025-07-03T20:49:00.057381 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\Comfyui-ergouzi-Nodes
2025-07-03T20:49:00.059380 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-LTXVideo
2025-07-03T20:49:00.060382 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_hellomeme
2025-07-03T20:49:00.061380 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-OmniGen2
2025-07-03T20:49:00.063380 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-tensorops
2025-07-03T20:49:00.064380 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_tinyterranodes
2025-07-03T20:49:00.066380 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-LatentSyncWrapper
2025-07-03T20:49:00.066380 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-impact-pack
2025-07-03T20:49:00.068380 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-YoloWorld-EfficientSAM
2025-07-03T20:49:00.069380 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\rgthree-comfy
2025-07-03T20:49:00.069380 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Inspyrenet-Rembg
2025-07-03T20:49:00.070379 -    0.1 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-fluxtrainer
2025-07-03T20:49:00.070379 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\djz-nodes
2025-07-03T20:49:00.071379 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Crystools
2025-07-03T20:49:00.071379 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_pulid_flux_ll
2025-07-03T20:49:00.072379 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-videohelpersuite
2025-07-03T20:49:00.072379 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-advancedliveportrait
2025-07-03T20:49:00.073379 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_layerstyle
2025-07-03T20:49:00.073379 -    0.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-logicutils
2025-07-03T20:49:00.075379 -    0.2 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-reactor
2025-07-03T20:49:00.075379 -    0.2 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_HF_Servelress_Inference
2025-07-03T20:49:00.076380 -    0.2 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-tbox
2025-07-03T20:49:00.076380 -    0.2 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-rmbg
2025-07-03T20:49:00.077379 -    0.2 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Lora-Manager
2025-07-03T20:49:00.077379 -    0.3 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-propost
2025-07-03T20:49:00.078379 -    0.4 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Hunyuan3DWrapper
2025-07-03T20:49:00.080380 -    0.4 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-SP-Nodes
2025-07-03T20:49:00.083380 -    0.4 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_facetools
2025-07-03T20:49:00.084380 -    0.4 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-art-venture
2025-07-03T20:49:00.084380 -    0.4 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-FLOAT
2025-07-03T20:49:00.085380 -    0.5 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI_LayerStyle_Advance
2025-07-03T20:49:00.085380 -    0.7 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Image-Filters
2025-07-03T20:49:00.086382 -    0.8 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Addoor
2025-07-03T20:49:00.087379 -    1.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Manager
2025-07-03T20:49:00.087379 -    1.0 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\SeargeSDXL
2025-07-03T20:49:00.089379 -    1.0 seconds (IMPORT FAILED): C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_fill-nodes
2025-07-03T20:49:00.089379 -    1.3 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mixlab-nodes
2025-07-03T20:49:00.090379 -    1.4 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui_custom_nodes_alekpet
2025-07-03T20:49:00.090379 -    1.9 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\was-node-suite-comfyui
2025-07-03T20:49:00.091380 -    2.1 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfy-mtb
2025-07-03T20:49:00.091380 -    4.5 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-crewai
2025-07-03T20:49:00.092379 -    5.9 seconds: C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-easy-use
2025-07-03T20:49:00.092379 - 
2025-07-03T20:49:00.492893 - Context impl SQLiteImpl.
2025-07-03T20:49:00.492893 - Will assume non-transactional DDL.
2025-07-03T20:49:00.494894 - No target revision found.
2025-07-03T20:49:00.572847 - Starting server

2025-07-03T20:49:00.573847 - To see the GUI go to: http://127.0.0.1:8188
2025-07-03T20:49:01.604693 - FETCH ComfyRegistry Data: 15/902025-07-03T20:49:01.605692 - 
2025-07-03T20:49:02.762924 - C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/photoswipe-lightbox.esm.min.js2025-07-03T20:49:02.763925 - 
2025-07-03T20:49:02.823925 - C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/pickr.min.js2025-07-03T20:49:02.824925 - 
2025-07-03T20:49:02.846925 - C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/photoswipe.min.css2025-07-03T20:49:02.847925 - 
2025-07-03T20:49:02.905924 - disable_logs2025-07-03T20:49:02.906926 -  2025-07-03T20:49:02.906926 - False2025-07-03T20:49:02.906926 - 
2025-07-03T20:49:02.907925 - use_polling_observer2025-07-03T20:49:02.908924 -  2025-07-03T20:49:02.908924 - False2025-07-03T20:49:02.908924 - 
2025-07-03T20:49:02.909925 - Serving static files from C:\AI\ComfyUI_Windows_portable-2\ComfyUI\output at /static_gallery2025-07-03T20:49:02.909925 - 
2025-07-03T20:49:07.048678 - FETCH ComfyRegistry Data: 20/902025-07-03T20:49:07.048678 - 
2025-07-03T20:49:08.817899 - FileSystemMonitor: Watchdog monitoring thread started.2025-07-03T20:49:08.818901 - 
2025-07-03T20:49:09.067896 - C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/model-viewer.min.js2025-07-03T20:49:09.068896 - 
2025-07-03T20:49:09.073896 - C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/classic.min.css2025-07-03T20:49:09.073896 - 
2025-07-03T20:49:09.075896 - C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/juxtapose.css2025-07-03T20:49:09.075896 - 
2025-07-03T20:49:09.333697 - �[36;20m[C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfy-mtb] | INFO -> Found multiple match, we will pick the last C:\pinokio\ComfyUI_windows_portable\ComfyUI\models\insightface
['C:\\AI\\ComfyUI_Windows_portable-2\\ComfyUI\\models\\insightface', 'C:\\pinokio\\ComfyUI_windows_portable\\ComfyUI\\models\\insightface']�[0m
2025-07-03T20:49:09.389695 - Error. No styles.csv found. Put your styles.csv in the root directory of ComfyUI. Then press "Refresh".
                  Your current root directory is: C:\AI\ComfyUI_Windows_portable-2\ComfyUI
            2025-07-03T20:49:09.389695 - 
2025-07-03T20:49:09.390696 - Error. No styles.csv found. Put your styles.csv in the root directory of ComfyUI. Then press "Refresh".
                  Your current root directory is: C:\AI\ComfyUI_Windows_portable-2\ComfyUI
            2025-07-03T20:49:09.395542 - 
2025-07-03T20:49:10.837326 - �[33mQualityOfLifeSuit_Omar92:�[0m:NSP ready2025-07-03T20:49:10.837326 - 
2025-07-03T20:49:12.060414 - FETCH ComfyRegistry Data: 25/902025-07-03T20:49:12.060414 - 
2025-07-03T20:49:12.961396 - []2025-07-03T20:49:12.961396 - 
2025-07-03T20:49:12.962395 - []2025-07-03T20:49:12.964395 - 
2025-07-03T20:49:19.056778 - FETCH ComfyRegistry Data: 30/902025-07-03T20:49:19.088777 - 
2025-07-03T20:49:23.820674 - disable_logs2025-07-03T20:49:23.821674 -  2025-07-03T20:49:23.821674 - False2025-07-03T20:49:23.821674 - 
2025-07-03T20:49:23.821674 - use_polling_observer2025-07-03T20:49:23.822676 -  2025-07-03T20:49:23.822676 - False2025-07-03T20:49:23.822676 - 
2025-07-03T20:49:23.822676 - FileSystemMonitor: Monitor already running, stopping previous monitor.2025-07-03T20:49:23.826674 - 
2025-07-03T20:49:23.827674 - FileSystemMonitor: Watchdog monitoring thread stopped.2025-07-03T20:49:23.827674 - 
2025-07-03T20:49:23.828674 - Serving static files from C:\AI\ComfyUI_Windows_portable-2\ComfyUI\output at /static_gallery2025-07-03T20:49:23.828674 - 
2025-07-03T20:49:29.600607 - FileSystemMonitor: Watchdog monitoring thread started.2025-07-03T20:49:29.600607 - 
2025-07-03T20:49:30.327275 - FETCH ComfyRegistry Data: 35/902025-07-03T20:49:30.329277 - 
2025-07-03T20:49:40.143683 - C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\comfyui-mixlab-nodes\webApp\lib/juxtapose.min.js2025-07-03T20:49:40.143683 - 
2025-07-03T20:49:40.525720 - Error. No styles.csv found. Put your styles.csv in the root directory of ComfyUI. Then press "Refresh".
                  Your current root directory is: C:\AI\ComfyUI_Windows_portable-2\ComfyUI
            2025-07-03T20:49:40.525720 - 
2025-07-03T20:49:40.529720 - Error. No styles.csv found. Put your styles.csv in the root directory of ComfyUI. Then press "Refresh".
                  Your current root directory is: C:\AI\ComfyUI_Windows_portable-2\ComfyUI
            2025-07-03T20:49:40.529720 - 
2025-07-03T20:49:41.010295 - FETCH ComfyRegistry Data: 40/902025-07-03T20:49:41.015298 - 
2025-07-03T20:49:44.435780 - []2025-07-03T20:49:44.435780 - 
2025-07-03T20:49:44.435780 - []2025-07-03T20:49:44.437781 - 
2025-07-03T20:49:44.984779 - FETCH ComfyRegistry Data: 45/902025-07-03T20:49:44.984779 - 
2025-07-03T20:49:48.783541 - FETCH ComfyRegistry Data: 50/902025-07-03T20:49:48.783541 - 
2025-07-03T20:49:50.032303 - got prompt
2025-07-03T20:49:51.403255 - Using pytorch attention in VAE
2025-07-03T20:49:51.404256 - Using pytorch attention in VAE
2025-07-03T20:49:51.903782 - VAE load device: cuda:0, offload device: cpu, dtype: torch.bfloat16
2025-07-03T20:49:51.921780 - Requested to load AutoencodingEngine
2025-07-03T20:49:51.922781 - 0 models unloaded.
2025-07-03T20:49:52.028782 - loaded partially 128.0 127.999755859375 0
2025-07-03T20:49:52.730443 - FETCH ComfyRegistry Data: 55/902025-07-03T20:49:52.730443 - 
2025-07-03T20:49:56.726358 - FETCH ComfyRegistry Data: 60/902025-07-03T20:49:56.726358 - 
2025-07-03T20:50:00.644183 - FETCH ComfyRegistry Data: 65/902025-07-03T20:50:00.644183 - 
2025-07-03T20:50:04.645588 - FETCH ComfyRegistry Data: 70/902025-07-03T20:50:04.645588 - 
2025-07-03T20:50:08.647582 - FETCH ComfyRegistry Data: 75/902025-07-03T20:50:08.647582 - 
2025-07-03T20:50:13.094861 - FETCH ComfyRegistry Data: 80/902025-07-03T20:50:13.094861 - 
2025-07-03T20:50:16.942707 - FETCH ComfyRegistry Data: 85/902025-07-03T20:50:16.942707 - 
2025-07-03T20:50:21.010808 - FETCH ComfyRegistry Data: 90/902025-07-03T20:50:21.010808 - 
2025-07-03T20:50:21.513472 - FETCH ComfyRegistry Data [DONE]2025-07-03T20:50:21.513472 - 
2025-07-03T20:50:21.653470 - [ComfyUI-Manager] default cache updated: https://api.comfy.org/nodes
2025-07-03T20:50:21.788630 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2025-07-03T20:50:21.788630 - 2025-07-03T20:50:21.954662 -  [DONE]2025-07-03T20:50:21.956662 - 
2025-07-03T20:50:22.051662 - [ComfyUI-Manager] All startup tasks have been completed.
2025-07-03T20:51:32.850289 - Error. No styles.csv found. Put your styles.csv in the root directory of ComfyUI. Then press "Refresh".
                  Your current root directory is: C:\AI\ComfyUI_Windows_portable-2\ComfyUI
            2025-07-03T20:51:32.850289 - 
2025-07-03T20:51:32.851289 - Error. No styles.csv found. Put your styles.csv in the root directory of ComfyUI. Then press "Refresh".
                  Your current root directory is: C:\AI\ComfyUI_Windows_portable-2\ComfyUI
            2025-07-03T20:51:32.851289 - 
2025-07-03T20:51:36.379083 - []2025-07-03T20:51:36.379083 - 
2025-07-03T20:51:36.380082 - []2025-07-03T20:51:36.380082 - 
2025-07-03T20:51:36.457083 - [ComfyUI-Manager] The ComfyRegistry cache update is still in progress, so an outdated cache is being used.2025-07-03T20:51:36.457083 - 
2025-07-03T20:51:36.678081 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2025-07-03T20:51:36.679082 - 2025-07-03T20:51:36.838081 -  [DONE]2025-07-03T20:51:36.838081 - 
2025-07-03T20:51:36.926600 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/github-stats.json2025-07-03T20:51:36.926600 - 2025-07-03T20:51:37.069598 -  [DONE]2025-07-03T20:51:37.069598 - 
2025-07-03T20:51:37.090599 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extras.json2025-07-03T20:51:37.090599 - 2025-07-03T20:51:37.177185 -  [DONE]2025-07-03T20:51:37.177185 - 
2025-07-03T20:51:37.279184 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json2025-07-03T20:51:37.279184 - 2025-07-03T20:51:37.432697 -  [DONE]2025-07-03T20:51:37.433696 - 
2025-07-03T20:52:00.444809 - SELECTED: input12025-07-03T20:52:00.444809 - 
2025-07-03T20:52:00.445806 - Florence2 using sdpa for attention2025-07-03T20:52:00.446807 - 
2025-07-03T20:52:08.085610 - Failed to compile. cc_cmd:2025-07-03T20:52:08.086609 -  2025-07-03T20:52:08.086609 - ['C:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\runtime\\tcc\\tcc.exe', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1\\cuda_utils.c', '-O3', '-shared', '-Wno-psabi', '-o', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1\\cuda_utils.cp312-win_amd64.pyd', '-fPIC', '-lcuda', '-lpython3', '-LC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\lib', '-LC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\lib\\x64', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\include', '-IC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\include', '-IC:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Include']2025-07-03T20:52:08.086609 - 
2025-07-03T20:52:08.087608 - !!! Exception during processing !!! Command '['C:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\runtime\\tcc\\tcc.exe', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1\\cuda_utils.c', '-O3', '-shared', '-Wno-psabi', '-o', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1\\cuda_utils.cp312-win_amd64.pyd', '-fPIC', '-lcuda', '-lpython3', '-LC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\lib', '-LC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\lib\\x64', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\include', '-IC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\include', '-IC:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Include']' returned non-zero exit status 1.
2025-07-03T20:52:08.101609 - Traceback (most recent call last):
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 361, in execute
    output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 236, in get_output_data
    return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 208, in _map_node_over_list
    process_inputs(input_dict, i)
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 197, in process_inputs
    results.append(getattr(obj, func)(**inputs))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Florence2\nodes.py", line 159, in loadmodel
    model = PeftModel.from_pretrained(model, adapter_name, trust_remote_code=True)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 533, in from_pretrained
    model = MODEL_TYPE_TO_PEFT_MODEL_MAPPING[config.task_type](
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 1722, in __init__
    super().__init__(model, peft_config, adapter_name, **kwargs)
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 132, in __init__
    self.base_model = cls(model, {adapter_name: peft_config}, adapter_name)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 142, in __init__
    super().__init__(model, config, adapter_name, low_cpu_mem_usage=low_cpu_mem_usage)
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\tuners_utils.py", line 180, in __init__
    self.inject_adapter(self.model, adapter_name, low_cpu_mem_usage=low_cpu_mem_usage)
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\tuners_utils.py", line 508, in inject_adapter
    self._create_and_replace(peft_config, adapter_name, target, target_name, parent, current_key=key)
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 237, in _create_and_replace
    new_module = self._create_new_module(lora_config, adapter_name, target, device_map=device_map, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 318, in _create_new_module
    from .bnb import dispatch_bnb_8bit
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\bnb.py", line 19, in <module>
    import bitsandbytes as bnb
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\__init__.py", line 19, in <module>
    from .nn import modules
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\nn\__init__.py", line 21, in <module>
    from .triton_based_modules import (
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\nn\triton_based_modules.py", line 6, in <module>
    from bitsandbytes.triton.dequantize_rowwise import dequantize_rowwise
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\triton\dequantize_rowwise.py", line 18, in <module>
    @triton.autotune(
     ^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\autotuner.py", line 378, in decorator
    return Autotuner(fn, fn.arg_names, configs, key, reset_to_zero, restore_value, pre_hook=pre_hook,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\autotuner.py", line 130, in __init__
    self.do_bench = driver.active.get_benchmarker()
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 23, in __getattr__
    self._initialize_obj()
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 20, in _initialize_obj
    self._obj = self._init_fn()
                ^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 9, in _create_driver
    return actives[0]()
           ^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 576, in __init__
    self.utils = CudaUtils()  # TODO: make static
                 ^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 101, in __init__
    mod = compile_module_from_src(Path(os.path.join(dirname, "driver.c")).read_text(), "cuda_utils")
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 74, in compile_module_from_src
    so = _build(name, src_path, tmpdir, library_dirs(), include_dir, libraries)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\build.py", line 100, in _build
    raise e
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\build.py", line 97, in _build
    ret = subprocess.check_call(cc_cmd)
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "subprocess.py", line 413, in check_call
subprocess.CalledProcessError: Command '['C:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\runtime\\tcc\\tcc.exe', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1\\cuda_utils.c', '-O3', '-shared', '-Wno-psabi', '-o', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1\\cuda_utils.cp312-win_amd64.pyd', '-fPIC', '-lcuda', '-lpython3', '-LC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\lib', '-LC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\lib\\x64', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\include', '-IC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\include', '-IC:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmpj18cpmg1', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Include']' returned non-zero exit status 1.

2025-07-03T20:52:08.107610 - Prompt executed in 137.78 seconds
2025-07-03T20:53:04.362129 - got prompt
2025-07-03T20:53:05.158299 - Florence2 using sdpa for attention2025-07-03T20:53:05.159298 - 
2025-07-03T20:53:08.204643 - Failed to compile. cc_cmd:2025-07-03T20:53:08.204643 -  2025-07-03T20:53:08.204643 - ['C:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\runtime\\tcc\\tcc.exe', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd\\cuda_utils.c', '-O3', '-shared', '-Wno-psabi', '-o', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd\\cuda_utils.cp312-win_amd64.pyd', '-fPIC', '-lcuda', '-lpython3', '-LC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\lib', '-LC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\lib\\x64', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\include', '-IC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\include', '-IC:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Include']2025-07-03T20:53:08.204643 - 
2025-07-03T20:53:08.205643 - !!! Exception during processing !!! Command '['C:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\runtime\\tcc\\tcc.exe', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd\\cuda_utils.c', '-O3', '-shared', '-Wno-psabi', '-o', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd\\cuda_utils.cp312-win_amd64.pyd', '-fPIC', '-lcuda', '-lpython3', '-LC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\lib', '-LC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\lib\\x64', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\include', '-IC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\include', '-IC:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Include']' returned non-zero exit status 1.
2025-07-03T20:53:08.211643 - Traceback (most recent call last):
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 361, in execute
    output_data, output_ui, has_subgraph = get_output_data(obj, input_data_all, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 236, in get_output_data
    return_values = _map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True, execution_block_cb=execution_block_cb, pre_execute_cb=pre_execute_cb)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 208, in _map_node_over_list
    process_inputs(input_dict, i)
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\execution.py", line 197, in process_inputs
    results.append(getattr(obj, func)(**inputs))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\ComfyUI\custom_nodes\ComfyUI-Florence2\nodes.py", line 159, in loadmodel
    model = PeftModel.from_pretrained(model, adapter_name, trust_remote_code=True)
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 533, in from_pretrained
    model = MODEL_TYPE_TO_PEFT_MODEL_MAPPING[config.task_type](
            ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 1722, in __init__
    super().__init__(model, peft_config, adapter_name, **kwargs)
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\peft_model.py", line 132, in __init__
    self.base_model = cls(model, {adapter_name: peft_config}, adapter_name)
                      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 142, in __init__
    super().__init__(model, config, adapter_name, low_cpu_mem_usage=low_cpu_mem_usage)
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\tuners_utils.py", line 180, in __init__
    self.inject_adapter(self.model, adapter_name, low_cpu_mem_usage=low_cpu_mem_usage)
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\tuners_utils.py", line 508, in inject_adapter
    self._create_and_replace(peft_config, adapter_name, target, target_name, parent, current_key=key)
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 237, in _create_and_replace
    new_module = self._create_new_module(lora_config, adapter_name, target, device_map=device_map, **kwargs)
                 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\model.py", line 318, in _create_new_module
    from .bnb import dispatch_bnb_8bit
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\peft\tuners\lora\bnb.py", line 19, in <module>
    import bitsandbytes as bnb
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\__init__.py", line 19, in <module>
    from .nn import modules
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\nn\__init__.py", line 21, in <module>
    from .triton_based_modules import (
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\nn\triton_based_modules.py", line 6, in <module>
    from bitsandbytes.triton.dequantize_rowwise import dequantize_rowwise
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\bitsandbytes\triton\dequantize_rowwise.py", line 18, in <module>
    @triton.autotune(
     ^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\autotuner.py", line 378, in decorator
    return Autotuner(fn, fn.arg_names, configs, key, reset_to_zero, restore_value, pre_hook=pre_hook,
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\autotuner.py", line 130, in __init__
    self.do_bench = driver.active.get_benchmarker()
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 23, in __getattr__
    self._initialize_obj()
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 20, in _initialize_obj
    self._obj = self._init_fn()
                ^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\driver.py", line 9, in _create_driver
    return actives[0]()
           ^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 576, in __init__
    self.utils = CudaUtils()  # TODO: make static
                 ^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 101, in __init__
    mod = compile_module_from_src(Path(os.path.join(dirname, "driver.c")).read_text(), "cuda_utils")
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\backends\nvidia\driver.py", line 74, in compile_module_from_src
    so = _build(name, src_path, tmpdir, library_dirs(), include_dir, libraries)
         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\build.py", line 100, in _build
    raise e
  File "C:\AI\ComfyUI_Windows_portable-2\python_embeded\Lib\site-packages\triton\runtime\build.py", line 97, in _build
    ret = subprocess.check_call(cc_cmd)
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "subprocess.py", line 413, in check_call
subprocess.CalledProcessError: Command '['C:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\runtime\\tcc\\tcc.exe', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd\\cuda_utils.c', '-O3', '-shared', '-Wno-psabi', '-o', 'C:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd\\cuda_utils.cp312-win_amd64.pyd', '-fPIC', '-lcuda', '-lpython3', '-LC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\lib', '-LC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\lib\\x64', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Lib\\site-packages\\triton\\backends\\nvidia\\include', '-IC:\\Program Files\\NVIDIA GPU Computing Toolkit\\CUDA\\v12.8\\include', '-IC:\\Users\\user\\AppData\\Local\\Temp\\latentsync_26e2f00c\\tmp8to4yrrd', '-IC:\\AI\\ComfyUI_Windows_portable-2\\python_embeded\\Include']' returned non-zero exit status 1.

2025-07-03T20:53:08.218644 - Prompt executed in 3.51 seconds




Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions