Comfy-Org / Comfy-Org/ComfyUI

SEEDVR2: RuntimeError: MPS backend out of memory (MPS allocated: 2.02 GiB, other allocations: 86.04 GiB, max allowed: 88.13 GiB).

Open
#15,029 0 comments 0 reactions 0 assignees View on GitHub
Potential Bug
Dominant language
Python
Stars
133k
Forks
15.7k
Avg merge
1d 7h
Merged PRs (30d)
158

Description

### Custom Node Testing

- [ ] I have tried disabling custom nodes and the issue persists (see [how to disable custom nodes](https://docs.comfy.org/troubleshooting/custom-node-issues#step-1%3A-test-with-all-custom-nodes-disabled) if you need help)

### Expected Behavior

SEEDVR2 works.

Comfy desktop: 1.0.29 (260714bj83fq3d3), Comfy 0.28.2
MacBook Pro M4 max, 64G RAM

### Actual Behavior

Error:Image

MPS backend out of memory (MPS allocated: 2.02 GiB, other allocations: 86.04 GiB, max allowed: 88.13 GiB). Tried to allocate 64.00 MiB on private pool. Use PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 to disable upper limit for memory allocations (may cause system failure).

### Steps to Reproduce

uses the Comfy official template: SEEDVR2 7B Int8: 缩放图像。 Run.

Image

Image

### Debug Logs

```powershell
MPS backend out of memory (MPS allocated: 2.02 GiB, other allocations: 86.04 GiB, max allowed: 88.13 GiB). Tried to allocate 64.00 MiB on private pool. Use PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 to disable upper limit for memory allocations (may cause system failure).

# ComfyUI Error Report
## Error Details
- **Node ID:** 66:48
- **Node Type:** VAEEncodeTiled
- **Exception Type:** RuntimeError
- **Exception Message:** RuntimeError: MPS backend out of memory (MPS allocated: 2.02 GiB, other allocations: 86.04 GiB, max allowed: 88.13 GiB). Tried to allocate 64.00 MiB on private pool. Use PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 to disable upper limit for memory allocations (may cause system failure).

## Stack Trace

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/execution.py", line 543, 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 "/Volumes/ORICO_Media/ComfyUI/ComfyUI/execution.py", line 342, 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 "/Volumes/ORICO_Media/ComfyUI/ComfyUI/execution.py", line 316, in _async_map_node_over_list
await process_inputs(input_dict, i)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/execution.py", line 304, in process_inputs
result = f(**inputs)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/nodes.py", line 402, in encode
t = vae.encode_tiled(pixels, tile_x=tile_size, tile_y=tile_size, overlap=overlap, tile_t=temporal_size, overlap_t=temporal_overlap)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/sd.py", line 1278, in encode_tiled
samples = self._encode_tiled_owned(pixel_samples, **self._owned_tiled_args(tile_x, tile_y, overlap, tile_t, overlap_t))

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/sd.py", line 1077, in _encode_tiled_owned
out = self.first_stage_model.encode_tiled(x, **kwargs)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1564, in encode_tiled
return tiled_vae(
x,
...<5 lines>...
encode=True,
)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 163, in tiled_vae
for _, y_idx, y_end, x_idx, x_end, tile_out in ordered_tile_outputs:
^^^^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 159, in
run_tile(tile_index, tile_range)
~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 155, in run_tile
tile_out = run_temporal_chunks(tile_x)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 118, in run_temporal_chunks
out = model.encode(t_chunk)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1467, in encode
z, _ = self._encode_with_raw_latent(x)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1462, in _encode_with_raw_latent
p = super().encode(x)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1349, in encode
h = self.slicing_encode(x)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1407, in slicing_encode
return self._encode(x)
~~~~~~~~~~~~^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1371, in _encode
h = self.encoder(_x, memory_state=memory_state, memory_cache=memory_cache)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1776, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1787, in _call_impl
return forward_call(*args, **kwargs)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1187, in forward
sample = down_block(sample, memory_state=memory_state, memory_cache=memory_cache)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1776, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1787, in _call_impl
return forward_call(*args, **kwargs)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 934, in forward
hidden_states = resnet(hidden_states, temb=None, memory_state=memory_state, memory_cache=memory_cache)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1776, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1787, in _call_impl
return forward_call(*args, **kwargs)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 867, in forward
hidden_states = self.conv2(hidden_states, memory_state=memory_state, memory_cache=memory_cache)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1776, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1787, in _call_impl
return forward_call(*args, **kwargs)

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 591, in forward
return self.slicing_forward(input, memory_state, memory_cache)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 656, in slicing_forward
input[i] = self.memory_limit_conv(
~~~~~~~~~~~~~~~~~~~~~~^
input[i],
^^^^^^^^^
padding=padding,
^^^^^^^^^^^^^^^^
prev_cache=cache
^^^^^^^^^^^^^^^^
)
^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 522, in memory_limit_conv
return pad_and_forward()

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 520, in pad_and_forward
return torch.nn.Conv3d.forward(self, padded)
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/conv.py", line 723, in forward
return self._conv_forward(input, self.weight, self.bias)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 483, in _conv_forward
return super()._conv_forward(input, weight, bias, *args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ops.py", line 554, in _conv_forward
return super()._conv_forward(input, weight, bias, *args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/conv.py", line 718, in _conv_forward
return F.conv3d(
~~~~~~~~^
input, weight, bias, self.stride, self.padding, self.dilation, self.groups
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^

## System Information
- **ComfyUI Version:** 0.28.2
- **Arguments:** ComfyUI/main.py --feature-flag show_signin_button=true --feature-flag enable_telemetry=true --enable-manager --extra-model-paths-config /Users/lucasye/Library/Application Support/Comfy Desktop/shared_model_paths.yaml --input-directory /Users/lucasye/ComfyUI-Shared/input --output-directory /Users/lucasye/ComfyUI-Shared/output
- **OS:** darwin
- **Python Version:** 3.13.12 (main, Feb 12 2026, 01:06:02) [Clang 21.1.4 ]
- **Embedded Python:** false
- **PyTorch Version:** 2.10.0
## Devices

- **Name:** mps
- **Type:** mps
- **VRAM Total:** 68719476736
- **VRAM Free:** 50661244928
- **Torch VRAM Total:** 68719476736
- **Torch VRAM Free:** 50661244928

## Logs

2026-07-22T23:08:26.560714 - [INFO] setup plugin alembic.autogenerate.schemas
2026-07-22T23:08:26.560769 - [INFO] setup plugin alembic.autogenerate.tables
2026-07-22T23:08:26.560795 - [INFO] setup plugin alembic.autogenerate.types
2026-07-22T23:08:26.560814 - [INFO] setup plugin alembic.autogenerate.constraints
2026-07-22T23:08:26.560832 - [INFO] setup plugin alembic.autogenerate.defaults
2026-07-22T23:08:26.560849 - [INFO] setup plugin alembic.autogenerate.comments
2026-07-22T23:08:26.634564 - [WARNING] Could not autodetect AIMDO implementation, assuming Nvidia
2026-07-22T23:08:26.634631 - [INFO] comfy-aimdo unsupported operating system: Darwin
2026-07-22T23:08:26.634642 - [INFO] NOTE: comfy-aimdo currently only supports Windows and Linux
2026-07-22T23:08:26.719501 - [INFO] Adding extra search path checkpoints /Users/lucasye/ComfyUI-Shared/models/checkpoints
2026-07-22T23:08:26.719537 - [INFO] Adding extra search path classifiers /Users/lucasye/ComfyUI-Shared/models/classifiers
2026-07-22T23:08:26.719554 - [INFO] Adding extra search path clip_vision /Users/lucasye/ComfyUI-Shared/models/clip_vision
2026-07-22T23:08:26.719564 - [INFO] Adding extra search path configs /Users/lucasye/ComfyUI-Shared/models/configs
2026-07-22T23:08:26.719572 - [INFO] Adding extra search path controlnet /Users/lucasye/ComfyUI-Shared/models/controlnet
2026-07-22T23:08:26.719579 - [INFO] Adding extra search path controlnet /Users/lucasye/ComfyUI-Shared/models/t2i_adapter
2026-07-22T23:08:26.719586 - [INFO] Adding extra search path diffusers /Users/lucasye/ComfyUI-Shared/models/diffusers
2026-07-22T23:08:26.719594 - [INFO] Adding extra search path diffusion_models /Users/lucasye/ComfyUI-Shared/models/diffusion_models
2026-07-22T23:08:26.719600 - [INFO] Adding extra search path embeddings /Users/lucasye/ComfyUI-Shared/models/embeddings
2026-07-22T23:08:26.719609 - [INFO] Adding extra search path gligen /Users/lucasye/ComfyUI-Shared/models/gligen
2026-07-22T23:08:26.719616 - [INFO] Adding extra search path hypernetworks /Users/lucasye/ComfyUI-Shared/models/hypernetworks
2026-07-22T23:08:26.719622 - [INFO] Adding extra search path latent_upscale_models /Users/lucasye/ComfyUI-Shared/models/latent_upscale_models
2026-07-22T23:08:26.719629 - [INFO] Adding extra search path loras /Users/lucasye/ComfyUI-Shared/models/loras
2026-07-22T23:08:26.719635 - [INFO] Adding extra search path model_patches /Users/lucasye/ComfyUI-Shared/models/model_patches
2026-07-22T23:08:26.719641 - [INFO] Adding extra search path audio_encoders /Users/lucasye/ComfyUI-Shared/models/audio_encoders
2026-07-22T23:08:26.719648 - [INFO] Adding extra search path photomaker /Users/lucasye/ComfyUI-Shared/models/photomaker
2026-07-22T23:08:26.719654 - [INFO] Adding extra search path style_models /Users/lucasye/ComfyUI-Shared/models/style_models
2026-07-22T23:08:26.719661 - [INFO] Adding extra search path text_encoders /Users/lucasye/ComfyUI-Shared/models/text_encoders
2026-07-22T23:08:26.719668 - [INFO] Adding extra search path upscale_models /Users/lucasye/ComfyUI-Shared/models/upscale_models
2026-07-22T23:08:26.719676 - [INFO] Adding extra search path background_removal /Users/lucasye/ComfyUI-Shared/models/background_removal
2026-07-22T23:08:26.719682 - [INFO] Adding extra search path frame_interpolation /Users/lucasye/ComfyUI-Shared/models/frame_interpolation
2026-07-22T23:08:26.719688 - [INFO] Adding extra search path geometry_estimation /Users/lucasye/ComfyUI-Shared/models/geometry_estimation
2026-07-22T23:08:26.719694 - [INFO] Adding extra search path optical_flow /Users/lucasye/ComfyUI-Shared/models/optical_flow
2026-07-22T23:08:26.719700 - [INFO] Adding extra search path detection /Users/lucasye/ComfyUI-Shared/models/detection
2026-07-22T23:08:26.719707 - [INFO] Adding extra search path vae /Users/lucasye/ComfyUI-Shared/models/vae
2026-07-22T23:08:26.719713 - [INFO] Adding extra search path vae_approx /Users/lucasye/ComfyUI-Shared/models/vae_approx
2026-07-22T23:08:26.719719 - [INFO] Adding extra search path SEEDVR2 /Users/lucasye/ComfyUI-Shared/models/SEEDVR2
2026-07-22T23:08:26.719726 - [INFO] Adding extra search path onnx /Users/lucasye/ComfyUI-Shared/models/onnx
2026-07-22T23:08:26.719732 - [INFO] Adding extra search path sams /Users/lucasye/ComfyUI-Shared/models/sams
2026-07-22T23:08:26.719739 - [INFO] Adding extra search path ultralytics /Users/lucasye/ComfyUI-Shared/models/ultralytics
2026-07-22T23:08:26.719745 - [INFO] Adding extra search path clip /Users/lucasye/ComfyUI-Shared/models/clip
2026-07-22T23:08:26.719751 - [INFO] Adding extra search path unet /Users/lucasye/ComfyUI-Shared/models/unet
2026-07-22T23:08:26.719763 - [INFO] Setting output directory to: /Users/lucasye/ComfyUI-Shared/output
2026-07-22T23:08:26.719775 - [INFO] Setting input directory to: /Users/lucasye/ComfyUI-Shared/input
2026-07-22T23:08:26.842609 - [START] Security scan2026-07-22T23:08:26.842617 -
2026-07-22T23:08:27.269395 - [DONE] Security scan2026-07-22T23:08:27.269411 -
2026-07-22T23:08:27.270032 - ** ComfyUI startup time:2026-07-22T23:08:27.270066 - 2026-07-22T23:08:27.270081 - 2026-07-22 23:08:27.2692026-07-22T23:08:27.270097 -
2026-07-22T23:08:27.270117 - ** Platform:2026-07-22T23:08:27.270126 - 2026-07-22T23:08:27.270136 - Darwin2026-07-22T23:08:27.270143 -
2026-07-22T23:08:27.270150 - ** Python version:2026-07-22T23:08:27.270156 - 2026-07-22T23:08:27.270163 - 3.13.12 (main, Feb 12 2026, 01:06:02) [Clang 21.1.4 ]2026-07-22T23:08:27.270169 -
2026-07-22T23:08:27.270176 - ** Python executable:2026-07-22T23:08:27.270182 - 2026-07-22T23:08:27.270191 - /Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/bin/python32026-07-22T23:08:27.270199 -
2026-07-22T23:08:27.270208 - ** ComfyUI Path:2026-07-22T23:08:27.270217 - 2026-07-22T23:08:27.270224 - /Volumes/ORICO_Media/ComfyUI/ComfyUI2026-07-22T23:08:27.270231 -
2026-07-22T23:08:27.270239 - ** ComfyUI Base Folder Path:2026-07-22T23:08:27.270246 - 2026-07-22T23:08:27.270254 - /Volumes/ORICO_Media/ComfyUI/ComfyUI2026-07-22T23:08:27.270262 -
2026-07-22T23:08:27.270269 - ** User directory:2026-07-22T23:08:27.270276 - 2026-07-22T23:08:27.270282 - /Volumes/ORICO_Media/ComfyUI/ComfyUI/user2026-07-22T23:08:27.270288 -
2026-07-22T23:08:27.270295 - ** ComfyUI-Manager config path:2026-07-22T23:08:27.270301 - 2026-07-22T23:08:27.270307 - /Volumes/ORICO_Media/ComfyUI/ComfyUI/user/__manager/config.ini2026-07-22T23:08:27.270314 -
2026-07-22T23:08:27.270326 - ** Log path:2026-07-22T23:08:27.270333 - 2026-07-22T23:08:27.270339 - /Volumes/ORICO_Media/ComfyUI/ComfyUI/user/comfyui.log2026-07-22T23:08:27.270345 -
2026-07-22T23:08:27.270393 - [ComfyUI-Manager] WARN: Unsafe - SSL verification bypass option is Enabled. (see /Volumes/ORICO_Media/ComfyUI/ComfyUI/user/__manager/config.ini)2026-07-22T23:08:27.270402 -
2026-07-22T23:08:27.640778 - [INFO] [PRE] ComfyUI-Manager
2026-07-22T23:08:27.641318 - [INFO]
Prestartup times for custom nodes:
2026-07-22T23:08:27.641356 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-easy-use
2026-07-22T23:08:27.641381 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/rgthree-comfy
2026-07-22T23:08:27.641401 - [INFO]
2026-07-22T23:08:28.581376 - [INFO] Found comfy_kitchen backend eager: {'available': True, 'disabled': False, 'unavailable_reason': None, 'capabilities': ['adaln', 'apply_rope', 'apply_rope1', 'apply_rope_split_half', 'apply_rope_split_half1', 'convrot_w4a4_linear', 'dequantize_convrot_w4a4_weight', 'dequantize_int8_convrot_weight', 'dequantize_int8_convrot_weight_dtype', 'dequantize_int8_simple', 'dequantize_int8_simple_dtype', 'dequantize_mxfp8', 'dequantize_nvfp4', 'dequantize_per_tensor_fp8', 'gemv_awq_w4a16', 'int8_linear', 'prepare_int4_weight_for_int8_linear', 'quantize_and_rotate_rowwise', 'quantize_convrot_w4a4_weight', 'quantize_int8_convrot_weight', 'quantize_int8_rowwise', 'quantize_int8_tensorwise', 'quantize_mxfp8', 'quantize_nvfp4', 'quantize_per_tensor_fp8', 'quantize_svdquant_w4a4', 'rms_rope', 'rms_rope1', 'rms_rope_split_half', 'rms_rope_split_half1', 'scaled_mm_mxfp8', 'scaled_mm_nvfp4', 'scaled_mm_svdquant_w4a4', 'stochastic_rounding_fp8']}
2026-07-22T23:08:28.581448 - [INFO] Found comfy_kitchen backend cuda: {'available': False, 'disabled': True, 'unavailable_reason': 'Extension file not found: /Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfy_kitchen/backends/cuda/_C.abi3.so', 'capabilities': []}
2026-07-22T23:08:28.581474 - [INFO] Found comfy_kitchen backend triton: {'available': False, 'disabled': True, 'unavailable_reason': "ImportError: No module named 'triton'", 'capabilities': []}
2026-07-22T23:08:28.585568 - [INFO] Checkpoint files will always be loaded safely.
2026-07-22T23:08:28.599612 - [INFO] Total VRAM 65536 MB, total RAM 65536 MB
2026-07-22T23:08:28.599692 - [INFO] pytorch version: 2.10.0
2026-07-22T23:08:28.600616 - [INFO] Mac Version (26, 5, 2)
2026-07-22T23:08:28.600701 - [INFO] Set vram state to: SHARED
2026-07-22T23:08:28.600730 - [INFO] Device: mps
2026-07-22T23:08:28.769016 - [INFO] Using sub quadratic optimization for attention, if you have memory or speed issues try using: --use-split-cross-attention
2026-07-22T23:08:30.374842 - [INFO] Python version: 3.13.12 (main, Feb 12 2026, 01:06:02) [Clang 21.1.4 ]
2026-07-22T23:08:30.374914 - [INFO] ComfyUI version: 0.28.2
2026-07-22T23:08:30.375135 - [INFO] comfy-aimdo version: 0.4.10
2026-07-22T23:08:30.375333 - [INFO] comfy-kitchen version: 0.2.20
2026-07-22T23:08:30.376742 - [INFO] comfyui-frontend-package version: 1.45.21
2026-07-22T23:08:30.376776 - [INFO] comfyui-workflow-templates version: 0.11.12
2026-07-22T23:08:30.376798 - [INFO] comfyui-embedded-docs version: 0.5.8
2026-07-22T23:08:30.376819 - [INFO] comfy-kitchen version: 0.2.20
2026-07-22T23:08:30.376836 - [INFO] comfy-aimdo version: 0.4.10
2026-07-22T23:08:30.377262 - [INFO] [Prompt Server] web root: /Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfyui_frontend_package/static
2026-07-22T23:08:30.377670 - [INFO] Asset seeder disabled
2026-07-22T23:08:30.377714 - [INFO] [START] ComfyUI-Manager
2026-07-22T23:08:30.452267 - [ComfyUI-Manager] Using GitPython backend2026-07-22T23:08:30.452334 -
2026-07-22T23:08:30.471738 - [INFO] [ComfyUI-Manager] network_mode: public
2026-07-22T23:08:30.476418 - [WARNING] [ComfyUI-Manager] The matrix sharing feature has been disabled because the `matrix-nio` dependency is not installed.
To use this feature, please run the following command:
/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/bin/python3 -m pip install matrix-nio

2026-07-22T23:08:30.707988 - [INFO] No OpenGL_accelerate module loaded: No module named 'OpenGL_accelerate'
2026-07-22T23:08:31.140305 - [INFO] ComfyUI-GGUF: Allowing full torch compile
2026-07-22T23:08:31.147718 -
2026-07-22T23:08:31.147754 - [rgthree-comfy] Loaded 48 magnificent nodes. 🎉2026-07-22T23:08:31.147768 -
2026-07-22T23:08:31.147780 -
2026-07-22T23:08:31.147798 - [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-07-22T23:08:31.147807 -
2026-07-22T23:08:31.149029 - [INFO] ### Loading: ComfyUI-Impact-Pack (V8.28.3)
2026-07-22T23:08:31.245577 - [INFO] [Impact Pack] Wildcard total size (0.00 MB) is within cache limit (50.00 MB). Using full cache mode.
2026-07-22T23:08:31.245930 - [INFO] [Impact Pack] Wildcards loading done.
2026-07-22T23:08:31.249205 - USDU batch patches applied successfully.
2026-07-22T23:08:31.249225 - [INFO] USDU batch patches applied successfully.
2026-07-22T23:08:31.258149 - [WARNING] KJNodes: PatchTritonVAE node could not be imported. PatchTritonVAE will be unavailable.
Traceback (most recent call last):
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-kjnodes/nodes/triton_vae.py", line 18, in
import triton
ModuleNotFoundError: No module named 'triton'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-kjnodes/__init__.py", line 364, in
from .nodes.triton_vae import PatchTritonVAE
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-kjnodes/nodes/triton_vae.py", line 21, in
raise ImportError("PatchTritonVAE requires triton (pip install triton, or triton-windows)") from e
ImportError: PatchTritonVAE requires triton (pip install triton, or triton-windows)
2026-07-22T23:08:31.259209 - [INFO] ### Loading: ComfyUI-Impact-Subpack (V1.3.5)
2026-07-22T23:08:31.259720 - [INFO] [Impact Pack/Subpack] Using folder_paths to determine whitelist path: /Volumes/ORICO_Media/ComfyUI/ComfyUI/user/default/ComfyUI-Impact-Subpack/model-whitelist.txt
2026-07-22T23:08:31.259761 - [INFO] [Impact Pack/Subpack] Ensured whitelist directory exists: /Volumes/ORICO_Media/ComfyUI/ComfyUI/user/default/ComfyUI-Impact-Subpack
2026-07-22T23:08:31.259824 - [INFO] [Impact Pack/Subpack] Loaded 0 model(s) from whitelist: /Volumes/ORICO_Media/ComfyUI/ComfyUI/user/default/ComfyUI-Impact-Subpack/model-whitelist.txt
2026-07-22T23:08:31.490186 - [INFO] [Impact Subpack] ultralytics_bbox: /Volumes/ORICO_Media/ComfyUI/ComfyUI/models/ultralytics/bbox
2026-07-22T23:08:31.490288 - [INFO] [Impact Subpack] ultralytics_segm: /Volumes/ORICO_Media/ComfyUI/ComfyUI/models/ultralytics/segm
2026-07-22T23:08:32.310593 - [ComfyUI-Easy-Use] server: v1.3.6 Loaded2026-07-22T23:08:32.310623 -
2026-07-22T23:08:32.310640 - [ComfyUI-Easy-Use] web root: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-easy-use/web_version/v2 Loaded2026-07-22T23:08:32.310652 -
2026-07-22T23:08:32.884103 - WAS Node Suite: OpenCV Python FFMPEG support is enabled2026-07-22T23:08:32.884227 -
2026-07-22T23:08:32.884269 - WAS Node Suite Warning: `ffmpeg_bin_path` is not set in `/Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/was-ns/was_suite_config.json` config file. Will attempt to use system ffmpeg binaries if available.2026-07-22T23:08:32.884290 -
2026-07-22T23:08:33.030201 - WAS Node Suite: Finished. Loaded 220 nodes successfully.2026-07-22T23:08:33.030311 -
2026-07-22T23:08:33.030379 -
"Everything you've ever wanted is on the other side of fear." - George Addair
2026-07-22T23:08:33.030409 -
2026-07-22T23:08:33.033597 - [INFO]
Import times for custom nodes:
2026-07-22T23:08:33.033665 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/websocket_image_save.py
2026-07-22T23:08:33.033693 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/cg-use-everywhere
2026-07-22T23:08:33.033715 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-custom-scripts
2026-07-22T23:08:33.033730 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/LanPaint
2026-07-22T23:08:33.033748 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui_essentials
2026-07-22T23:08:33.033773 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui_ultimatesdupscale
2026-07-22T23:08:33.033824 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/rgthree-comfy
2026-07-22T23:08:33.033875 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-kjnodes
2026-07-22T23:08:33.033899 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/ComfyUI_LayerStyle_Advance
2026-07-22T23:08:33.034041 - [INFO] 0.0 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/ComfyUI-GGUF
2026-07-22T23:08:33.034065 - [INFO] 0.1 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-impact-pack
2026-07-22T23:08:33.034084 - [INFO] 0.2 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-impact-subpack
2026-07-22T23:08:33.034114 - [INFO] 0.3 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui_layerstyle
2026-07-22T23:08:33.034130 - [INFO] 0.4 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/was-ns
2026-07-22T23:08:33.034144 - [INFO] 0.8 seconds: /Volumes/ORICO_Media/ComfyUI/ComfyUI/custom_nodes/comfyui-easy-use
2026-07-22T23:08:33.034167 - [INFO]
2026-07-22T23:08:33.036450 - [INFO] Context impl SQLiteImpl.
2026-07-22T23:08:33.036515 - [INFO] Will assume non-transactional DDL.
2026-07-22T23:08:33.061748 - [INFO] Using RAM pressure cache.
2026-07-22T23:08:33.062199 - [INFO] Starting server

2026-07-22T23:08:33.062585 - [INFO] To see the GUI go to: http://127.0.0.1:8188
2026-07-22T23:08:33.648860 - [WARNING] [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-07-22T23:08:33.654545 - [WARNING] [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-07-22T23:08:34.134548 - [WARNING] [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-07-22T23:08:46.772830 - [INFO] [ComfyUI-Manager] The ComfyRegistry cache update is still in progress, so an outdated cache is being used.
2026-07-22T23:08:46.819846 - FETCH DATA from: /Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfyui_manager/custom-node-list.json2026-07-22T23:08:46.819901 - 2026-07-22T23:08:46.828867 - [DONE]2026-07-22T23:08:46.828908 -
2026-07-22T23:08:48.692462 - [INFO] got prompt
2026-07-22T23:08:49.052569 - [INFO] Using split attention in VAE
2026-07-22T23:08:49.052937 - [INFO] Using split attention in VAE
2026-07-22T23:08:49.807641 - [INFO] VAE load device: mps, offload device: cpu, dtype: torch.float16
2026-07-22T23:08:49.832206 - [INFO] Requested to load VideoAutoencoderKLWrapper
2026-07-22T23:08:49.912387 - [INFO] loaded completely; 478.07 MB loaded, full load: True
2026-07-22T23:09:06.783583 - [ERROR] [ComfyUI-Manager] Failed to perform initial fetching 'extension-node-map.json': Connection timeout to host https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
2026-07-22T23:09:06.794016 - Traceback (most recent call last):
2026-07-22T23:09:06.794068 - 2026-07-22T23:09:06.794307 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/connector.py", line 1474, in _start_tls_connection
tls_transport = await self._loop.start_tls(
^^^^^^^^^^^^^^^^^^^^^^^^^^^
...<5 lines>...
)
^
2026-07-22T23:09:06.794333 - 2026-07-22T23:09:06.794354 - File "/Volumes/ORICO_Media/ComfyUI/standalone-env/lib/python3.13/asyncio/base_events.py", line 1356, in start_tls
await waiter
2026-07-22T23:09:06.794370 - 2026-07-22T23:09:06.794387 - asyncio.exceptions.CancelledError
2026-07-22T23:09:06.794401 - 2026-07-22T23:09:06.794462 -
The above exception was the direct cause of the following exception:

2026-07-22T23:09:06.794476 - 2026-07-22T23:09:06.794488 - Traceback (most recent call last):
2026-07-22T23:09:06.794500 - 2026-07-22T23:09:06.794852 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/client.py", line 742, in _connect_and_send_request
conn = await self._connector.connect(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
req, traces=traces, timeout=real_timeout
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
2026-07-22T23:09:06.794870 - 2026-07-22T23:09:06.794885 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/connector.py", line 672, in connect
proto = await self._create_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-07-22T23:09:06.794897 - 2026-07-22T23:09:06.794912 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/connector.py", line 1249, in _create_connection
_, proto = await self._create_proxy_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-07-22T23:09:06.794923 - 2026-07-22T23:09:06.794935 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/connector.py", line 1717, in _create_proxy_connection
return await self._start_tls_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...<5 lines>...
)
^
2026-07-22T23:09:06.794945 - 2026-07-22T23:09:06.794958 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/connector.py", line 1459, in _start_tls_connection
async with ceil_timeout(
~~~~~~~~~~~~^
timeout.sock_connect, ceil_threshold=timeout.ceil_threshold
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
):
^
2026-07-22T23:09:06.794969 - 2026-07-22T23:09:06.794980 - File "/Volumes/ORICO_Media/ComfyUI/standalone-env/lib/python3.13/asyncio/timeouts.py", line 116, in __aexit__
raise TimeoutError from exc_val
2026-07-22T23:09:06.794992 - 2026-07-22T23:09:06.795005 - TimeoutError
2026-07-22T23:09:06.795015 - 2026-07-22T23:09:06.795028 -
The above exception was the direct cause of the following exception:

2026-07-22T23:09:06.795038 - 2026-07-22T23:09:06.795051 - Traceback (most recent call last):
2026-07-22T23:09:06.795062 - 2026-07-22T23:09:06.795226 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfyui_manager/glob/manager_server.py", line 2131, in get_cache
json_obj = await manager_util.get_data(uri, True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-07-22T23:09:06.795243 - 2026-07-22T23:09:06.795259 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfyui_manager/common/manager_util.py", line 197, in get_data
async with session.get(uri, headers=headers) as resp:
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^
2026-07-22T23:09:06.795271 - 2026-07-22T23:09:06.795282 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/client.py", line 1521, in __aenter__
self._resp: _RetType = await self._coro
^^^^^^^^^^^^^^^^
2026-07-22T23:09:06.795292 - 2026-07-22T23:09:06.795307 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/client.py", line 788, in _request
resp = await handler(req)
^^^^^^^^^^^^^^^^^^
2026-07-22T23:09:06.795316 - 2026-07-22T23:09:06.795327 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/aiohttp/client.py", line 746, in _connect_and_send_request
raise ConnectionTimeoutError(
f"Connection timeout to host {req.url}"
) from exc
2026-07-22T23:09:06.795337 - 2026-07-22T23:09:06.795351 - aiohttp.client_exceptions.ConnectionTimeoutError: Connection timeout to host https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/extension-node-map.json
2026-07-22T23:09:06.795361 - 2026-07-22T23:10:00.318457 - [WARNING] Cannot connect to comfyregistry.
2026-07-22T23:10:00.402529 - [ERROR] [ComfyUI-Manager] An invalid channel was used: https://cdn.jsdelivr.net/gh/ltdrdata/ComfyUI-Manager@main
2026-07-22T23:10:00.415019 - Exception in thread 2026-07-22T23:10:00.415134 - Thread-1 ()2026-07-22T23:10:00.415153 - :
2026-07-22T23:10:00.537548 - Traceback (most recent call last):
2026-07-22T23:10:00.537605 - 2026-07-22T23:10:00.538285 - File "/Volumes/ORICO_Media/ComfyUI/standalone-env/lib/python3.13/threading.py", line 1044, in _bootstrap_inner
self.run()
~~~~~~~~^^
2026-07-22T23:10:00.538324 - 2026-07-22T23:10:00.538360 - File "/Volumes/ORICO_Media/ComfyUI/standalone-env/lib/python3.13/threading.py", line 995, in run
self._target(*self._args, **self._kwargs)
~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-07-22T23:10:00.538401 - 2026-07-22T23:10:00.538453 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfyui_manager/glob/manager_server.py", line 2172, in
threading.Thread(target=lambda: asyncio.run(default_cache_update())).start()
~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
2026-07-22T23:10:00.538496 - 2026-07-22T23:10:00.538514 - File "/Volumes/ORICO_Media/ComfyUI/standalone-env/lib/python3.13/asyncio/runners.py", line 195, in run
return runner.run(main)
~~~~~~~~~~^^^^^^
2026-07-22T23:10:00.538528 - 2026-07-22T23:10:00.538542 - File "/Volumes/ORICO_Media/ComfyUI/standalone-env/lib/python3.13/asyncio/runners.py", line 118, in run
return self._loop.run_until_complete(task)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^
2026-07-22T23:10:00.538568 - 2026-07-22T23:10:00.538582 - File "/Volumes/ORICO_Media/ComfyUI/standalone-env/lib/python3.13/asyncio/base_events.py", line 725, in run_until_complete
return future.result()
~~~~~~~~~~~~~^^
2026-07-22T23:10:00.538594 - 2026-07-22T23:10:00.538608 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfyui_manager/glob/manager_server.py", line 2161, in default_cache_update
await core.unified_manager.get_custom_nodes(
channel_url, ManagerDatabaseSource.remote.value
)
2026-07-22T23:10:00.538619 - 2026-07-22T23:10:00.538633 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfyui_manager/glob/manager_core.py", line 809, in get_custom_nodes
nodes = await self.load_nightly(channel, mode)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-07-22T23:10:00.538644 - 2026-07-22T23:10:00.538656 - File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/comfyui_manager/glob/manager_core.py", line 779, in load_nightly
raise InvalidChannel(channel_url)
2026-07-22T23:10:00.538667 - 2026-07-22T23:10:00.538682 - comfyui_manager.glob.manager_core.InvalidChannel: https://cdn.jsdelivr.net/gh/ltdrdata/ComfyUI-Manager@main
2026-07-22T23:10:00.538694 - 2026-07-22T23:10:02.083095 - [ERROR] !!! Exception during processing !!! MPS backend out of memory (MPS allocated: 2.02 GiB, other allocations: 86.04 GiB, max allowed: 88.13 GiB). Tried to allocate 64.00 MiB on private pool. Use PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 to disable upper limit for memory allocations (may cause system failure).
2026-07-22T23:10:02.198632 - [ERROR] Traceback (most recent call last):
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/execution.py", line 543, 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 "/Volumes/ORICO_Media/ComfyUI/ComfyUI/execution.py", line 342, 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 "/Volumes/ORICO_Media/ComfyUI/ComfyUI/execution.py", line 316, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/execution.py", line 304, in process_inputs
result = f(**inputs)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/nodes.py", line 402, in encode
t = vae.encode_tiled(pixels, tile_x=tile_size, tile_y=tile_size, overlap=overlap, tile_t=temporal_size, overlap_t=temporal_overlap)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/sd.py", line 1278, in encode_tiled
samples = self._encode_tiled_owned(pixel_samples, **self._owned_tiled_args(tile_x, tile_y, overlap, tile_t, overlap_t))
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/sd.py", line 1077, in _encode_tiled_owned
out = self.first_stage_model.encode_tiled(x, **kwargs)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1564, in encode_tiled
return tiled_vae(
x,
...<5 lines>...
encode=True,
)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 163, in tiled_vae
for _, y_idx, y_end, x_idx, x_end, tile_out in ordered_tile_outputs:
^^^^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 159, in
run_tile(tile_index, tile_range)
~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 155, in run_tile
tile_out = run_temporal_chunks(tile_x)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 118, in run_temporal_chunks
out = model.encode(t_chunk)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1467, in encode
z, _ = self._encode_with_raw_latent(x)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1462, in _encode_with_raw_latent
p = super().encode(x)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1349, in encode
h = self.slicing_encode(x)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1407, in slicing_encode
return self._encode(x)
~~~~~~~~~~~~^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1371, in _encode
h = self.encoder(_x, memory_state=memory_state, memory_cache=memory_cache)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1776, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1787, in _call_impl
return forward_call(*args, **kwargs)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 1187, in forward
sample = down_block(sample, memory_state=memory_state, memory_cache=memory_cache)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1776, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1787, in _call_impl
return forward_call(*args, **kwargs)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 934, in forward
hidden_states = resnet(hidden_states, temb=None, memory_state=memory_state, memory_cache=memory_cache)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1776, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1787, in _call_impl
return forward_call(*args, **kwargs)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 867, in forward
hidden_states = self.conv2(hidden_states, memory_state=memory_state, memory_cache=memory_cache)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1776, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/module.py", line 1787, in _call_impl
return forward_call(*args, **kwargs)
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 591, in forward
return self.slicing_forward(input, memory_state, memory_cache)
~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 656, in slicing_forward
input[i] = self.memory_limit_conv(
~~~~~~~~~~~~~~~~~~~~~~^
input[i],
^^^^^^^^^
padding=padding,
^^^^^^^^^^^^^^^^
prev_cache=cache
^^^^^^^^^^^^^^^^
)
^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 522, in memory_limit_conv
return pad_and_forward()
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 520, in pad_and_forward
return torch.nn.Conv3d.forward(self, padded)
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/conv.py", line 723, in forward
return self._conv_forward(input, self.weight, self.bias)
~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ldm/seedvr/vae.py", line 483, in _conv_forward
return super()._conv_forward(input, weight, bias, *args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/comfy/ops.py", line 554, in _conv_forward
return super()._conv_forward(input, weight, bias, *args, **kwargs)
~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Volumes/ORICO_Media/ComfyUI/ComfyUI/.venv/lib/python3.13/site-packages/torch/nn/modules/conv.py", line 718, in _conv_forward
return F.conv3d(
~~~~~~~~^
input, weight, bias, self.stride, self.padding, self.dilation, self.groups
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
RuntimeError: MPS backend out of memory (MPS allocated: 2.02 GiB, other allocations: 86.04 GiB, max allowed: 88.13 GiB). Tried to allocate 64.00 MiB on private pool. Use PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 to disable upper limit for memory allocations (may cause system failure).

2026-07-22T23:10:02.214368 - [INFO] Prompt executed in 73.52 seconds

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

{"id":"e2c3e7f6-e19d-4eb7-b9a5-dbc31fc43988","revision":0,"last_node_id":75,"last_link_id":66,"nodes":[{"id":9,"type":"SaveImage","pos":[1030,-20],"size":[380,430],"flags":{},"order":3,"mode":0,"inputs":[{"localized_name":"图片","name":"images","type":"IMAGE","link":49},{"localized_name":"文件名前缀","name":"filename_prefix","type":"STRING","widget":{"name":"filename_prefix"},"link":null}],"outputs":[{"localized_name":"images","name":"images","type":"IMAGE","links":[37]}],"properties":{"Node name for S&R":"SaveImage","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":["seedvr2_after/image"]},{"id":65,"type":"ImageCompare","pos":[1460,-20],"size":[450,430],"flags":{},"order":4,"mode":0,"inputs":[{"localized_name":"image_a","name":"image_a","shape":7,"type":"IMAGE","link":59},{"localized_name":"image_b","name":"image_b","shape":7,"type":"IMAGE","link":37},{"localized_name":"compare_view","name":"compare_view","type":"IMAGECOMPARE","widget":{"name":"compare_view"},"link":null}],"outputs":[],"properties":{"Node name for S&R":"ImageCompare","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":[]},{"id":1,"type":"LoadImage","pos":[180,-20],"size":[360,400],"flags":{},"order":0,"mode":0,"inputs":[{"localized_name":"图像","name":"image","type":"COMBO","widget":{"name":"image"},"link":null},{"localized_name":"选择文件上传","name":"upload","type":"IMAGEUPLOAD","widget":{"name":"upload"},"link":null}],"outputs":[{"localized_name":"图像","name":"IMAGE","type":"IMAGE","links":[46,59]},{"localized_name":"遮罩","name":"MASK","type":"MASK","links":[47]}],"properties":{"Node name for S&R":"LoadImage","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":["ComfyUI_01700_.png","image"]},{"id":72,"type":"MarkdownNote","pos":[-360,-20],"size":[500,760],"flags":{},"order":1,"mode":0,"inputs":[],"outputs":[],"title":"Note: Model Links","properties":{"ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":["Guide: [Subgraph](https://docs.comfy.org/interface/features/subgraph)\n\n## Model Links (for Local Users)\n\n**SEEDVR2**\n\n- [ema_vae_fp16.safetensors](https://huggingface.co/numz/SeedVR2_comfyUI/resolve/main/ema_vae_fp16.safetensors)\n\n**diffusion_models**\n\n- [seedvr2_7b_int8_convrot.safetensors](https://huggingface.co/Comfy-Org/SeedVR2/resolve/main/diffusion_models/seedvr2_7b_int8_convrot.safetensors)\n\n\n## Model Storage Location\n\n\n📂 ComfyUI/\n├── 📂 models/\n│ ├── 📂 SEEDVR2/\n│ │ └── ema_vae_fp16.safetensors\n│ └── 📂 diffusion_models/\n│ └── seedvr2_7b_int8_convrot.safetensors\n\n\n## Report Issue\n\nNote: Please update ComfyUI first ([guide](https://docs.comfy.org/installation/update_comfyui)) and prepare required models. Desktop/Cloud updates follow stable releases, so some nightly-supported models may not be available yet.\n\n- Cannot run / runtime errors: [ComfyUI/issues](https://github.com/comfyanonymous/ComfyUI/issues)\n- UI / frontend issues: [ComfyUI_frontend/issues](https://github.com/Comfy-Org/ComfyUI_frontend/issues)\n- Workflow issues: [workflow_templates/issues](https://github.com/Comfy-Org/workflow_templates/issues)\n"],"color":"#222","bgcolor":"#000"},{"id":66,"type":"1970dcb4-982a-4c01-a373-4d239a3041e4","pos":[580,-20],"size":[410,450],"flags":{"collapsed":false},"order":2,"mode":0,"inputs":[{"localized_name":"image","name":"image","type":"IMAGE","link":46},{"localized_name":"alpha","name":"alpha","type":"MASK","link":47},{"label":"scale_multiplier","name":"resize_type.multiplier","type":"FLOAT","widget":{"name":"resize_type.multiplier"},"link":null},{"name":"seed","type":"INT","widget":{"name":"seed"},"link":null},{"name":"sampler_name","type":"COMBO","widget":{"name":"sampler_name"},"link":null},{"name":"scheduler","type":"COMBO","widget":{"name":"scheduler"},"link":null},{"name":"denoise","type":"FLOAT","widget":{"name":"denoise"},"link":null},{"name":"unet_name","type":"COMBO","widget":{"name":"unet_name"},"link":null},{"name":"vae_name","type":"COMBO","widget":{"name":"vae_name"},"link":null},{"name":"color_correction_method","type":"COMBO","widget":{"name":"color_correction_method"},"link":null}],"outputs":[{"localized_name":"images","name":"images","type":"IMAGE","links":[49]}],"properties":{"proxyWidgets":[["57","resize_type.multiplier"],["54","seed"],["54","sampler_name"],["54","scheduler"],["54","denoise"],["52","unet_name"],["51","vae_name"],["59","color_correction_method"]],"cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{"resize_type.multiplier":true},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":[]}],"links":[[37,9,0,65,1,"IMAGE"],[46,1,0,66,0,"IMAGE"],[47,1,1,66,1,"MASK"],[49,66,0,9,0,"IMAGE"],[59,1,0,65,0,"IMAGE"]],"groups":[],"definitions":{"subgraphs":[{"id":"1970dcb4-982a-4c01-a373-4d239a3041e4","version":1,"state":{"lastGroupId":1,"lastNodeId":75,"lastLinkId":66,"lastRerouteId":0},"revision":0,"config":{},"name":"Upscale Image (SeedVR2 7B Int8)","inputNode":{"id":-10,"bounding":[470,59.901214308973096,189.134765625,247.99999999999997]},"outputNode":{"id":-20,"bounding":[2480,201,128,68]},"inputs":[{"id":"e981cdcd-e740-4932-91e0-06392d5ac526","name":"image","type":"IMAGE","linkIds":[41],"localized_name":"image","pos":[635.134765625,83.9012143089731]},{"id":"bd600399-ea77-48ba-91f6-cf83c95051c8","name":"alpha","type":"MASK","linkIds":[40],"localized_name":"alpha","pos":[635.134765625,103.9012143089731]},{"id":"df3b8dbd-5649-4dbd-8551-c5cb254eafc5","name":"resize_type.multiplier","type":"FLOAT","linkIds":[50],"label":"scale_multiplier","pos":[635.134765625,123.9012143089731]},{"id":"9bf1e154-0009-45fb-a43c-ae3fc9361b37","name":"seed","type":"INT","linkIds":[51],"pos":[635.134765625,143.9012143089731]},{"id":"408ed65b-0681-4ffc-93dd-cab04ffabe06","name":"sampler_name","type":"COMBO","linkIds":[54],"pos":[635.134765625,163.9012143089731]},{"id":"dbd3e56e-9696-41fa-8549-9f65dcf34b8e","name":"scheduler","type":"COMBO","linkIds":[55],"pos":[635.134765625,183.9012143089731]},{"id":"fe2df403-641b-4d01-87a7-0f730febd917","name":"denoise","type":"FLOAT","linkIds":[56],"pos":[635.134765625,203.9012143089731]},{"id":"7739a0b8-6e3a-4788-a671-dadd904c2d87","name":"unet_name","type":"COMBO","linkIds":[57],"pos":[635.134765625,223.9012143089731]},{"id":"2de2f222-32fd-402f-98da-73cf111b2f37","name":"vae_name","type":"COMBO","linkIds":[58],"pos":[635.134765625,243.9012143089731]},{"id":"6b8a6fef-e542-4fb4-9a4e-a3c0d46cd6b7","name":"color_correction_method","type":"COMBO","linkIds":[64],"pos":[635.134765625,263.90121430897307]}],"outputs":[{"id":"517ebe35-9129-4f66-a88e-2fdca4c417cf","name":"images","type":"IMAGE","linkIds":[15],"localized_name":"images","pos":[2504,225]}],"widgets":[],"nodes":[{"id":48,"type":"VAEEncodeTiled","pos":[1360,110],"size":[270,230],"flags":{},"order":0,"mode":0,"showAdvanced":true,"inputs":[{"localized_name":"像素","name":"pixels","type":"IMAGE","link":16},{"localized_name":"vae","name":"vae","type":"VAE","link":17},{"localized_name":"分块尺寸","name":"tile_size","type":"INT","widget":{"name":"tile_size"},"link":null},{"localized_name":"重叠","name":"overlap","type":"INT","widget":{"name":"overlap"},"link":null},{"localized_name":"时间尺寸","name":"temporal_size","type":"INT","widget":{"name":"temporal_size"},"link":null},{"localized_name":"时间重叠","name":"temporal_overlap","type":"INT","widget":{"name":"temporal_overlap"},"link":null}],"outputs":[{"localized_name":"Latent","name":"LATENT","type":"LATENT","links":[28,36]}],"properties":{"Node name for S&R":"VAEEncodeTiled","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":[512,128,4096,8]},{"id":50,"type":"JoinImageWithAlpha","pos":[930,240],"size":[280,80],"flags":{},"order":1,"mode":0,"inputs":[{"localized_name":"图像","name":"image","type":"IMAGE","link":41},{"localized_name":"阿尔法","name":"alpha","type":"MASK","link":40}],"outputs":[{"localized_name":"图像","name":"IMAGE","type":"IMAGE","links":[45]}],"properties":{"Node name for S&R":"JoinImageWithAlpha","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":[]},{"id":51,"type":"VAELoader","pos":[940,100],"size":[270,80],"flags":{},"order":2,"mode":0,"inputs":[{"localized_name":"vae名称","name":"vae_name","type":"COMBO","widget":{"name":"vae_name"},"link":58}],"outputs":[{"localized_name":"VAE","name":"VAE","type":"VAE","links":[17,22]}],"properties":{"Node name for S&R":"VAELoader","cnr_id":"comfy-core","ver":"0.27.0","models":[{"name":"ema_vae_fp16.safetensors","url":"https://huggingface.co/numz/SeedVR2_comfyUI/resolve/main/ema_vae_fp16.safetensors","directory":"SEEDVR2"}],"ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":["ema_vae_fp16.safetensors"]},{"id":52,"type":"UNETLoader","pos":[940,-70],"size":[270,110],"flags":{},"order":3,"mode":0,"showAdvanced":false,"inputs":[{"localized_name":"UNet名称","name":"unet_name","type":"COMBO","widget":{"name":"unet_name"},"link":57},{"localized_name":"数据类型","name":"weight_dtype","type":"COMBO","widget":{"name":"weight_dtype"},"link":null}],"outputs":[{"localized_name":"模型","name":"MODEL","type":"MODEL","links":[27,31]}],"properties":{"Node name for S&R":"UNETLoader","cnr_id":"comfy-core","ver":"0.27.0","models":[{"name":"seedvr2_7b_int8_convrot.safetensors","url":"https://huggingface.co/Comfy-Org/SeedVR2/resolve/main/diffusion_models/seedvr2_7b_int8_convrot.safetensors","directory":"diffusion_models"}],"ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":["SEEDVR2/seedvr2_7b_int8_convrot.safetensors","default"]},{"id":54,"type":"KSampler","pos":[1740,-40],"size":[270,320],"flags":{},"order":4,"mode":0,"inputs":[{"localized_name":"模型","name":"model","type":"MODEL","link":31},{"localized_name":"正面条件","name":"positive","type":"CONDITIONING","link":29},{"localized_name":"负面条件","name":"negative","type":"CONDITIONING","link":30},{"localized_name":"Latent图像","name":"latent_image","type":"LATENT","link":36},{"localized_name":"种子","name":"seed","type":"INT","widget":{"name":"seed"},"link":51},{"localized_name":"步数","name":"steps","type":"INT","widget":{"name":"steps"},"link":null},{"localized_name":"cfg","name":"cfg","type":"FLOAT","widget":{"name":"cfg"},"link":null},{"localized_name":"采样器名称","name":"sampler_name","type":"COMBO","widget":{"name":"sampler_name"},"link":54},{"localized_name":"调度器","name":"scheduler","type":"COMBO","widget":{"name":"scheduler"},"link":55},{"localized_name":"降噪","name":"denoise","type":"FLOAT","widget":{"name":"denoise"},"link":56}],"outputs":[{"localized_name":"Latent","name":"LATENT","type":"LATENT","links":[21]}],"properties":{"Node name for S&R":"KSampler","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":[959948902156062,"fixed",1,1,"euler","simple",1]},{"id":55,"type":"VAEDecodeTiled","pos":[2110,-40],"size":[270,230],"flags":{},"order":5,"mode":0,"showAdvanced":true,"inputs":[{"localized_name":"Latent","name":"samples","type":"LATENT","link":21},{"localized_name":"vae","name":"vae","type":"VAE","link":22},{"localized_name":"分块尺寸","name":"tile_size","type":"INT","widget":{"name":"tile_size"},"link":null},{"localized_name":"重叠","name":"overlap","type":"INT","widget":{"name":"overlap"},"link":null},{"localized_name":"时间尺寸","name":"temporal_size","type":"INT","widget":{"name":"temporal_size"},"link":null},{"localized_name":"时间重叠","name":"temporal_overlap","type":"INT","widget":{"name":"temporal_overlap"},"link":null}],"outputs":[{"localized_name":"图像","name":"IMAGE","type":"IMAGE","links":[25]}],"properties":{"Node name for S&R":"VAEDecodeTiled","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":[512,128,4096,8]},{"id":57,"type":"ResizeImageMaskNode","pos":[930,370],"size":[270,106],"flags":{},"order":6,"mode":0,"inputs":[{"localized_name":"输入","name":"input","type":"IMAGE,MASK","link":45},{"localized_name":"调整类型","name":"resize_type","type":"COMFY_DYNAMICCOMBO_V3","widget":{"name":"resize_type"},"link":null},{"localized_name":"resize_type.multiplier","name":"resize_type.multiplier","type":"FLOAT","widget":{"name":"resize_type.multiplier"},"link":50},{"localized_name":"缩放方法","name":"scale_method","type":"COMBO","widget":{"name":"scale_method"},"link":null}],"outputs":[{"localized_name":"已调整大小","name":"resized","type":"IMAGE","links":[24,26]}],"properties":{"Node name for S&R":"ResizeImageMaskNode","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":["scale by multiplier",4,"lanczos"]},{"id":58,"type":"SeedVR2Preprocess","pos":[930,570],"size":[270,60],"flags":{},"order":7,"mode":0,"inputs":[{"localized_name":"resized_images","name":"resized_images","type":"IMAGE","link":24}],"outputs":[{"localized_name":"images","name":"images","type":"IMAGE","links":[16]}],"properties":{"Node name for S&R":"SeedVR2Preprocess","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":[]},{"id":59,"type":"SeedVR2PostProcessing","pos":[2110,350],"size":[310,110],"flags":{},"order":8,"mode":0,"inputs":[{"localized_name":"images","name":"images","type":"IMAGE","link":25},{"localized_name":"original_resized_images","name":"original_resized_images","type":"IMAGE","link":26},{"localized_name":"color_correction_method","name":"color_correction_method","type":"COMBO","widget":{"name":"color_correction_method"},"link":64}],"outputs":[{"localized_name":"images","name":"images","type":"IMAGE","links":[15]}],"properties":{"Node name for S&R":"SeedVR2PostProcessing","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":["none"]},{"id":61,"type":"SeedVR2Conditioning","pos":[1330,-40],"size":[270,80],"flags":{},"order":9,"mode":0,"inputs":[{"localized_name":"model","name":"model","type":"MODEL","link":27},{"label":"latent","localized_name":"vae_conditioning","name":"vae_conditioning","type":"LATENT","link":28}],"outputs":[{"localized_name":"positive","name":"positive","type":"CONDITIONING","links":[29]},{"localized_name":"negative","name":"negative","type":"CONDITIONING","links":[30]}],"properties":{"Node name for S&R":"SeedVR2Conditioning","cnr_id":"comfy-core","ver":"0.27.0","ue_properties":{"widget_ue_connectable":{},"version":"7.8","input_ue_unconnectable":{}}},"widgets_values":[]}],"groups":[{"id":1,"title":"Models","bounding":[930,-140,290,330.15625],"color":"#3f789e","flags":{}}],"links":[{"id":16,"origin_id":58,"origin_slot":0,"target_id":48,"target_slot":0,"type":"IMAGE"},{"id":17,"origin_id":51,"origin_slot":0,"target_id":48,"target_slot":1,"type":"VAE"},{"id":31,"origin_id":52,"origin_slot":0,"target_id":54,"target_slot":0,"type":"MODEL"},{"id":29,"origin_id":61,"origin_slot":0,"target_id":54,"target_slot":1,"type":"CONDITIONING"},{"id":30,"origin_id":61,"origin_slot":1,"target_id":54,"target_slot":2,"type":"CONDITIONING"},{"id":36,"origin_id":48,"origin_slot":0,"target_id":54,"target_slot":3,"type":"LATENT"},{"id":21,"origin_id":54,"origin_slot":0,"target_id":55,"target_slot":0,"type":"LATENT"},{"id":22,"origin_id":51,"origin_slot":0,"target_id":55,"target_slot":1,"type":"VAE"},{"id":45,"origin_id":50,"origin_slot":0,"target_id":57,"target_slot":0,"type":"IMAGE"},{"id":24,"origin_id":57,"origin_slot":0,"target_id":58,"target_slot":0,"type":"IMAGE"},{"id":25,"origin_id":55,"origin_slot":0,"target_id":59,"target_slot":0,"type":"IMAGE"},{"id":26,"origin_id":57,"origin_slot":0,"target_id":59,"target_slot":1,"type":"IMAGE"},{"id":27,"origin_id":52,"origin_slot":0,"target_id":61,"target_slot":0,"type":"MODEL"},{"id":28,"origin_id":48,"origin_slot":0,"target_id":61,"target_slot":1,"type":"LATENT"},{"id":41,"origin_id":-10,"origin_slot":0,"target_id":50,"target_slot":0,"type":"IMAGE"},{"id":40,"origin_id":-10,"origin_slot":1,"target_id":50,"target_slot":1,"type":"MASK"},{"id":15,"origin_id":59,"origin_slot":0,"target_id":-20,"target_slot":0,"type":"IMAGE"},{"id":50,"origin_id":-10,"origin_slot":2,"target_id":57,"target_slot":2,"type":"FLOAT"},{"id":51,"origin_id":-10,"origin_slot":3,"target_id":54,"target_slot":4,"type":"INT"},{"id":54,"origin_id":-10,"origin_slot":4,"target_id":54,"target_slot":7,"type":"COMBO"},{"id":55,"origin_id":-10,"origin_slot":5,"target_id":54,"target_slot":8,"type":"COMBO"},{"id":56,"origin_id":-10,"origin_slot":6,"target_id":54,"target_slot":9,"type":"FLOAT"},{"id":57,"origin_id":-10,"origin_slot":7,"target_id":52,"target_slot":0,"type":"COMBO"},{"id":58,"origin_id":-10,"origin_slot":8,"target_id":51,"target_slot":0,"type":"COMBO"},{"id":64,"origin_id":-10,"origin_slot":9,"target_id":59,"target_slot":2,"type":"COMBO"}],"extra":{"ue_links":[],"links_added_by_ue":[]}}]},"config":{},"extra":{"ds":{"scale":0.7627768444385474,"offset":[-125.42463458116441,446.89180161071516]},"frontendVersion":"1.45.20","ue_links":[],"links_added_by_ue":[]},"version":0.4}

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

### Other

_No response_

Contributor guide

Open the contributing guide

Research direction

Reproduce the official SEEDVR2 7B Int8 template on the reported MPS setup, starting at the VAEEncodeTiled path in nodes.py and comfy/ldm/seedvr/vae.py. Trace the tiled and temporal encoding path around tiled_vae and memory_limit_conv; done means the template completes without the reported MPS out-of-memory error.

Written by the indexing model from the issue text.

Assessment

Tech stack
python, pytorch
Domain
machine-learning
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Quiet
Clarity
Needs clarification
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.