ImageUpscaleWithModel view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
- Dominant language
- Python
- Stars
- 133k
- Forks
- 15.7k
- Avg merge
- 1d 7h
- Merged PRs (30d)
- 158
Description
### Custom Node Testing
- [x] I have tried disabling custom nodes and the issue persists (see [how to disable custom nodes](https://docs.comfy.org/troubleshooting/custom-node-issues#step-1%3A-test-with-all-custom-nodes-disabled) if you need help)
### Expected Behavior
Upscale works
### Actual Behavior
When loading an image from a file, upscale always fails with this error message:
**ImageUpscaleWithModel**
view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
### Steps to Reproduce
1. Create a simple workflow which loads an image from a file, loads an upscale model, and upscales that image using that model
2. Select a file to load as an image
3. Run
### Hardware
MacBook Pro with M4 Pro & 48GB of RAM/VRAM
### Debug Logs
```powershell
# ComfyUI Error Report
## Error Details
- **Node ID:** 371
- **Node Type:** ImageUpscaleWithModel
- **Exception Type:** RuntimeError
- **Exception Message:** view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
## Stack Trace
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 498, 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, hidden_inputs=hidden_inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 316, 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, hidden_inputs=hidden_inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 290, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 278, in process_inputs
result = f(**inputs)
^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_api/internal/__init__.py", line 149, in wrapped_func
return method(locked_class, **inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_api/latest/_io.py", line 1270, in EXECUTE_NORMALIZED
to_return = cls.execute(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_extras/nodes_upscale_model.py", line 85, in execute
s = comfy.utils.tiled_scale(in_img, lambda a: upscale_model(a), tile_x=tile, tile_y=tile, overlap=overlap, upscale_amount=upscale_model.scale, pbar=pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy/utils.py", line 1016, in tiled_scale
return tiled_scale_multidim(samples, function, (tile_y, tile_x), overlap=overlap, upscale_amount=upscale_amount, out_channels=out_channels, output_device=output_device, pbar=pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/utils/_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy/utils.py", line 988, in tiled_scale_multidim
ps = function(s_in).to(output_device)
^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_extras/nodes_upscale_model.py", line 85, in
s = comfy.utils.tiled_scale(in_img, lambda a: upscale_model(a), tile_x=tile, tile_y=tile, overlap=overlap, upscale_amount=upscale_model.scale, pbar=pbar)
^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/utils/_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/__helpers/model_descriptor.py", line 472, in __call__
output = self._call_fn(self.model, image)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/__helpers/model_descriptor.py", line 439, in
self._call_fn = call_fn or (lambda model, image: model(image))
^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/architectures/ESRGAN/__arch/RRDB.py", line 144, in forward
return self.model(x)
^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/container.py", line 244, in forward
input = module(input)
^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/conv.py", line 548, in forward
return self._conv_forward(input, self.weight, self.bias)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/conv.py", line 543, in _conv_forward
return F.conv2d(
^^^^^^^^^
## System Information
- **ComfyUI Version:** 0.3.67
- **Arguments:** /Applications/ComfyUI.app/Contents/Resources/ComfyUI/main.py --user-directory /Applications/ComfyUI/user --input-directory /Applications/ComfyUI/input --output-directory /Applications/ComfyUI/output --front-end-root /Applications/ComfyUI.app/Contents/Resources/ComfyUI/web_custom_versions/desktop_app --base-directory /Applications/ComfyUI --extra-model-paths-config /Users/ky/Library/Application Support/ComfyUI/extra_models_config.yaml --log-stdout --listen 127.0.0.1 --port 8000
- **OS:** posix
- **Python Version:** 3.12.9 (main, Feb 12 2025, 15:09:19) [Clang 19.1.6 ]
- **Embedded Python:** false
- **PyTorch Version:** 2.8.0.dev20250624
## Devices
- **Name:** mps
- **Type:** mps
- **VRAM Total:** 51539607552
- **VRAM Free:** 22061957120
- **Torch VRAM Total:** 51539607552
- **Torch VRAM Free:** 22061957120
## Logs
2026-01-13T12:40:05.454664 - 0.0 seconds: /Applications/ComfyUI/custom_nodes/ComfyUI_restart_sampling
2026-01-13T12:40:05.454748 - 0.0 seconds: /Applications/ComfyUI/custom_nodes/ComfyUI-Logic
2026-01-13T12:40:05.454782 - 0.0 seconds: /Applications/ComfyUI/custom_nodes/comfyui-inpaint-nodes
2026-01-13T12:40:05.454843 - 0.0 seconds: /Applications/ComfyUI/custom_nodes/comfyui-various
2026-01-13T12:40:05.454891 - 0.0 seconds: /Applications/ComfyUI/custom_nodes/comfyui-tooling-nodes
2026-01-13T12:40:05.454919 - 0.0 seconds: /Applications/ComfyUI/custom_nodes/x-flux-comfyui
2026-01-13T12:40:05.454943 - 0.0 seconds: /Applications/ComfyUI/custom_nodes/comfyui_ipadapter_plus
2026-01-13T12:40:05.454987 - 0.0 seconds: /Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager
2026-01-13T12:40:05.455035 - 0.3 seconds: /Applications/ComfyUI/custom_nodes/comfyui_controlnet_aux
2026-01-13T12:40:05.455060 - 1.4 seconds: /Applications/ComfyUI/custom_nodes/was-node-suite-comfyui
2026-01-13T12:40:05.455078 -
2026-01-13T12:40:05.539911 - [ComfyUI-Manager] Failed to perform initial fetching 'github-stats.json': Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.563626 - Traceback (most recent call last):
2026-01-13T12:40:05.563767 - 2026-01-13T12:40:05.564097 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1248, in _wrap_create_connection
sock = await aiohappyeyeballs.start_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.564228 - 2026-01-13T12:40:05.564366 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 122, in start_connection
raise first_exception
2026-01-13T12:40:05.564428 - 2026-01-13T12:40:05.564480 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 73, in start_connection
sock = await _connect_sock(
^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.564620 - 2026-01-13T12:40:05.564698 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 208, in _connect_sock
await loop.sock_connect(sock, address)
2026-01-13T12:40:05.564746 - 2026-01-13T12:40:05.564794 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 651, in sock_connect
return await fut
^^^^^^^^^
2026-01-13T12:40:05.564886 - 2026-01-13T12:40:05.565041 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 691, in _sock_connect_cb
raise OSError(err, f'Connect call failed {address}')
2026-01-13T12:40:05.565134 - 2026-01-13T12:40:05.565216 - OSError: [Errno 9] Connect call failed ('185.199.110.133', 443)
2026-01-13T12:40:05.565272 - 2026-01-13T12:40:05.565745 -
The above exception was the direct cause of the following exception:
2026-01-13T12:40:05.565820 - 2026-01-13T12:40:05.565890 - Traceback (most recent call last):
2026-01-13T12:40:05.565940 - 2026-01-13T12:40:05.566130 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_server.py", line 1735, in get_cache
json_obj = await manager_util.get_data(uri, True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.566176 - 2026-01-13T12:40:05.566466 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_util.py", line 145, in get_data
async with session.get(uri, headers=headers) as resp:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.566533 - 2026-01-13T12:40:05.566603 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 1482, in __aenter__
self._resp: _RetType = await self._coro
^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.566664 - 2026-01-13T12:40:05.569279 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 770, in _request
resp = await handler(req)
^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.569353 - 2026-01-13T12:40:05.569422 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 725, in _connect_and_send_request
conn = await self._connector.connect(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.569463 - 2026-01-13T12:40:05.569512 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 622, in connect
proto = await self._create_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.569552 - 2026-01-13T12:40:05.569595 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1189, in _create_connection
_, proto = await self._create_direct_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.569896 - 2026-01-13T12:40:05.569960 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1561, in _create_direct_connection
raise last_exc
2026-01-13T12:40:05.570029 - 2026-01-13T12:40:05.570074 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1530, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.570115 - 2026-01-13T12:40:05.570325 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1271, in _wrap_create_connection
raise client_error(req.connection_key, exc) from exc
2026-01-13T12:40:05.570482 - 2026-01-13T12:40:05.570559 - aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.572238 - 2026-01-13T12:40:05.572349 - [ComfyUI-Manager] Failed to perform initial fetching 'extension-node-map.json': Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.574278 - Traceback (most recent call last):
2026-01-13T12:40:05.574350 - 2026-01-13T12:40:05.574717 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1248, in _wrap_create_connection
sock = await aiohappyeyeballs.start_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.574820 - 2026-01-13T12:40:05.574929 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 122, in start_connection
raise first_exception
2026-01-13T12:40:05.575009 - 2026-01-13T12:40:05.575058 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 73, in start_connection
sock = await _connect_sock(
^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.575340 - 2026-01-13T12:40:05.575460 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 208, in _connect_sock
await loop.sock_connect(sock, address)
2026-01-13T12:40:05.575523 - 2026-01-13T12:40:05.575599 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 651, in sock_connect
return await fut
^^^^^^^^^
2026-01-13T12:40:05.575723 - 2026-01-13T12:40:05.575798 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 691, in _sock_connect_cb
raise OSError(err, f'Connect call failed {address}')
2026-01-13T12:40:05.576344 - 2026-01-13T12:40:05.576476 - OSError: [Errno 9] Connect call failed ('185.199.110.133', 443)
2026-01-13T12:40:05.576540 - 2026-01-13T12:40:05.576934 -
The above exception was the direct cause of the following exception:
2026-01-13T12:40:05.577016 - 2026-01-13T12:40:05.577062 - Traceback (most recent call last):
2026-01-13T12:40:05.577104 - 2026-01-13T12:40:05.577596 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_server.py", line 1735, in get_cache
json_obj = await manager_util.get_data(uri, True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.577704 - 2026-01-13T12:40:05.577791 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_util.py", line 145, in get_data
async with session.get(uri, headers=headers) as resp:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.577834 - 2026-01-13T12:40:05.577876 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 1482, in __aenter__
self._resp: _RetType = await self._coro
^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.577916 - 2026-01-13T12:40:05.577956 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 770, in _request
resp = await handler(req)
^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.577995 - 2026-01-13T12:40:05.578042 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 725, in _connect_and_send_request
conn = await self._connector.connect(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.578080 - 2026-01-13T12:40:05.578125 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 622, in connect
proto = await self._create_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.578672 - 2026-01-13T12:40:05.578756 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1189, in _create_connection
_, proto = await self._create_direct_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.578842 - 2026-01-13T12:40:05.580327 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1561, in _create_direct_connection
raise last_exc
2026-01-13T12:40:05.580450 - 2026-01-13T12:40:05.580502 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1530, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.580545 - 2026-01-13T12:40:05.580588 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1271, in _wrap_create_connection
raise client_error(req.connection_key, exc) from exc
2026-01-13T12:40:05.581718 - 2026-01-13T12:40:05.581824 - aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.581919 - 2026-01-13T12:40:05.582089 - [ComfyUI-Manager] Failed to perform initial fetching 'model-list.json': Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.582681 - Traceback (most recent call last):
2026-01-13T12:40:05.582753 - 2026-01-13T12:40:05.582932 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1248, in _wrap_create_connection
sock = await aiohappyeyeballs.start_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.582993 - 2026-01-13T12:40:05.583241 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 122, in start_connection
raise first_exception
2026-01-13T12:40:05.583316 - 2026-01-13T12:40:05.583379 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 73, in start_connection
sock = await _connect_sock(
^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.583449 - 2026-01-13T12:40:05.583517 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 208, in _connect_sock
await loop.sock_connect(sock, address)
2026-01-13T12:40:05.583564 - 2026-01-13T12:40:05.584085 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 651, in sock_connect
return await fut
^^^^^^^^^
2026-01-13T12:40:05.584298 - 2026-01-13T12:40:05.584381 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 691, in _sock_connect_cb
raise OSError(err, f'Connect call failed {address}')
2026-01-13T12:40:05.584454 - 2026-01-13T12:40:05.584506 - OSError: [Errno 9] Connect call failed ('185.199.110.133', 443)
2026-01-13T12:40:05.585111 - 2026-01-13T12:40:05.585173 -
The above exception was the direct cause of the following exception:
2026-01-13T12:40:05.585281 - 2026-01-13T12:40:05.585326 - Traceback (most recent call last):
2026-01-13T12:40:05.585395 - 2026-01-13T12:40:05.585957 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_server.py", line 1735, in get_cache
json_obj = await manager_util.get_data(uri, True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.586055 - 2026-01-13T12:40:05.586133 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_util.py", line 145, in get_data
async with session.get(uri, headers=headers) as resp:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.586235 - 2026-01-13T12:40:05.586440 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 1482, in __aenter__
self._resp: _RetType = await self._coro
^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.586528 - 2026-01-13T12:40:05.586664 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 770, in _request
resp = await handler(req)
^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.586719 - 2026-01-13T12:40:05.586790 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 725, in _connect_and_send_request
conn = await self._connector.connect(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.586846 - 2026-01-13T12:40:05.586925 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 622, in connect
proto = await self._create_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.586985 - 2026-01-13T12:40:05.587036 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1189, in _create_connection
_, proto = await self._create_direct_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.587288 - 2026-01-13T12:40:05.587345 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1561, in _create_direct_connection
raise last_exc
2026-01-13T12:40:05.587409 - 2026-01-13T12:40:05.587546 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1530, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.587607 - 2026-01-13T12:40:05.587657 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1271, in _wrap_create_connection
raise client_error(req.connection_key, exc) from exc
2026-01-13T12:40:05.587701 - 2026-01-13T12:40:05.587764 - aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.587805 - 2026-01-13T12:40:05.588264 - [ComfyUI-Manager] Failed to perform initial fetching 'alter-list.json': Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.588882 - Traceback (most recent call last):
2026-01-13T12:40:05.588939 - 2026-01-13T12:40:05.589124 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1248, in _wrap_create_connection
sock = await aiohappyeyeballs.start_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.589277 - 2026-01-13T12:40:05.589394 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 122, in start_connection
raise first_exception
2026-01-13T12:40:05.589460 - 2026-01-13T12:40:05.589524 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 73, in start_connection
sock = await _connect_sock(
^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.589566 - 2026-01-13T12:40:05.589623 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 208, in _connect_sock
await loop.sock_connect(sock, address)
2026-01-13T12:40:05.589848 - 2026-01-13T12:40:05.589967 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 651, in sock_connect
return await fut
^^^^^^^^^
2026-01-13T12:40:05.590053 - 2026-01-13T12:40:05.590136 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 691, in _sock_connect_cb
raise OSError(err, f'Connect call failed {address}')
2026-01-13T12:40:05.590183 - 2026-01-13T12:40:05.590397 - OSError: [Errno 9] Connect call failed ('185.199.110.133', 443)
2026-01-13T12:40:05.590530 - 2026-01-13T12:40:05.590632 -
The above exception was the direct cause of the following exception:
2026-01-13T12:40:05.590788 - 2026-01-13T12:40:05.590853 - Traceback (most recent call last):
2026-01-13T12:40:05.590904 - 2026-01-13T12:40:05.591301 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_server.py", line 1735, in get_cache
json_obj = await manager_util.get_data(uri, True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.591383 - 2026-01-13T12:40:05.591488 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_util.py", line 145, in get_data
async with session.get(uri, headers=headers) as resp:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.591679 - 2026-01-13T12:40:05.591786 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 1482, in __aenter__
self._resp: _RetType = await self._coro
^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.591838 - 2026-01-13T12:40:05.591885 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 770, in _request
resp = await handler(req)
^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.591927 - 2026-01-13T12:40:05.592191 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 725, in _connect_and_send_request
conn = await self._connector.connect(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.592247 - 2026-01-13T12:40:05.592305 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 622, in connect
proto = await self._create_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.592347 - 2026-01-13T12:40:05.592416 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1189, in _create_connection
_, proto = await self._create_direct_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.592615 - 2026-01-13T12:40:05.592782 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1561, in _create_direct_connection
raise last_exc
2026-01-13T12:40:05.592857 - 2026-01-13T12:40:05.593030 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1530, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.593148 - 2026-01-13T12:40:05.593223 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1271, in _wrap_create_connection
raise client_error(req.connection_key, exc) from exc
2026-01-13T12:40:05.593270 - 2026-01-13T12:40:05.593319 - aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.593375 - 2026-01-13T12:40:05.593430 - [ComfyUI-Manager] Failed to perform initial fetching 'custom-node-list.json': Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.593869 - Traceback (most recent call last):
2026-01-13T12:40:05.594008 - 2026-01-13T12:40:05.594172 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1248, in _wrap_create_connection
sock = await aiohappyeyeballs.start_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.594291 - 2026-01-13T12:40:05.594388 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 122, in start_connection
raise first_exception
2026-01-13T12:40:05.594483 - 2026-01-13T12:40:05.594531 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 73, in start_connection
sock = await _connect_sock(
^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.594609 - 2026-01-13T12:40:05.594663 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohappyeyeballs/impl.py", line 208, in _connect_sock
await loop.sock_connect(sock, address)
2026-01-13T12:40:05.594738 - 2026-01-13T12:40:05.594929 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 651, in sock_connect
return await fut
^^^^^^^^^
2026-01-13T12:40:05.595011 - 2026-01-13T12:40:05.595206 - File "/Users/ky/.local/share/uv/python/cpython-3.12.9-macos-aarch64-none/lib/python3.12/asyncio/selector_events.py", line 691, in _sock_connect_cb
raise OSError(err, f'Connect call failed {address}')
2026-01-13T12:40:05.595281 - 2026-01-13T12:40:05.595370 - OSError: [Errno 9] Connect call failed ('185.199.110.133', 443)
2026-01-13T12:40:05.595456 - 2026-01-13T12:40:05.595553 -
The above exception was the direct cause of the following exception:
2026-01-13T12:40:05.595594 - 2026-01-13T12:40:05.595634 - Traceback (most recent call last):
2026-01-13T12:40:05.595673 - 2026-01-13T12:40:05.596339 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_server.py", line 1735, in get_cache
json_obj = await manager_util.get_data(uri, True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.596420 - 2026-01-13T12:40:05.596502 - File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/glob/manager_util.py", line 145, in get_data
async with session.get(uri, headers=headers) as resp:
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.596609 - 2026-01-13T12:40:05.596687 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 1482, in __aenter__
self._resp: _RetType = await self._coro
^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.596738 - 2026-01-13T12:40:05.596793 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 770, in _request
resp = await handler(req)
^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.596908 - 2026-01-13T12:40:05.597028 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/client.py", line 725, in _connect_and_send_request
conn = await self._connector.connect(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.597142 - 2026-01-13T12:40:05.597203 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 622, in connect
proto = await self._create_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.597244 - 2026-01-13T12:40:05.597286 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1189, in _create_connection
_, proto = await self._create_direct_connection(req, traces, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.597344 - 2026-01-13T12:40:05.597396 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1561, in _create_direct_connection
raise last_exc
2026-01-13T12:40:05.597439 - 2026-01-13T12:40:05.597481 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1530, in _create_direct_connection
transp, proto = await self._wrap_create_connection(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2026-01-13T12:40:05.597520 - 2026-01-13T12:40:05.597645 - File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/aiohttp/connector.py", line 1271, in _wrap_create_connection
raise client_error(req.connection_key, exc) from exc
2026-01-13T12:40:05.597751 - 2026-01-13T12:40:05.597867 - aiohttp.client_exceptions.ClientConnectorError: Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect call failed ('185.199.110.133', 443)]
2026-01-13T12:40:05.597912 - 2026-01-13T12:40:05.738846 - Cannot connect to comfyregistry.2026-01-13T12:40:05.738888 -
2026-01-13T12:40:05.742843 - FETCH DATA from: https://raw.githubusercontent.com/ltdrdata/ComfyUI-Manager/main/custom-node-list.json2026-01-13T12:40:05.742866 - 2026-01-13T12:40:05.807236 - [ComfyUI-Manager] Due to a network error, switching to local mode.
=> custom-node-list.json
=> Cannot connect to host raw.githubusercontent.com:443 ssl:default [Connect
call failed ('185.199.111.133', 443)]
2026-01-13T12:40:05.807309 - FETCH DATA from: /Applications/ComfyUI.app/Contents/Resources/ComfyUI/custom_nodes/ComfyUI-Manager/custom-node-list.json2026-01-13T12:40:05.807329 - 2026-01-13T12:40:05.813481 - [DONE]2026-01-13T12:40:05.813547 -
2026-01-13T12:40:05.819246 - [ComfyUI-Manager] All startup tasks have been completed.
2026-01-13T12:40:05.822052 - Failed to initialize database. Please ensure you have installed the latest requirements. If the error persists, please report this as in future the database will be required: (sqlite3.OperationalError) unable to open database file
(Background on this error at: https://sqlalche.me/e/20/e3q8)
2026-01-13T12:40:05.827430 - Starting server
2026-01-13T12:40:05.827702 - To see the GUI go to: http://127.0.0.1:8000
2026-01-13T12:40:07.188548 - comfyui-frontend-package not found in requirements.txt
2026-01-13T12:40:07.394746 - [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-01-13T12:40:07.395264 - [DEPRECATION WARNING] Detected import of deprecated legacy API: /extensions/core/groupNode.js. This is likely caused by a custom node extension using outdated APIs. Please update your extensions or contact the extension author for an updated version.
2026-01-13T12:40:07.452354 - comfyui-frontend-package not found in requirements.txt
2026-01-13T12:40:07.472167 - []2026-01-13T12:40:07.472197 -
2026-01-13T12:40:07.472214 - []2026-01-13T12:40:07.472224 -
2026-01-13T12:40:07.556176 - [DEPRECATION WARNING] Detected import of deprecated legacy API: /scripts/ui/components/buttonGroup.js. This is likely caused by a custom node extension using outdated APIs. Please update your extensions or contact the extension author for an updated version.
2026-01-13T12:40:07.557788 - [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-01-13T12:42:43.481978 - got prompt
2026-01-13T12:42:43.483187 - Failed to validate prompt for output 187:
2026-01-13T12:42:43.483259 - * VAEDecode 373:
2026-01-13T12:42:43.483299 - - Required input is missing: vae
2026-01-13T12:42:43.483333 - Output will be ignored
2026-01-13T12:42:43.485195 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T12:42:43.485387 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T12:42:43.486817 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'value'
2026-01-13T12:42:43.488831 - [34mWAS Node Suite: [0m[33mㅣ[0m:
0
[0m2026-01-13T12:42:43.489056 -
2026-01-13T12:42:43.489902 - / = '2026-01-13/1242'2026-01-13T12:42:43.489944 -
2026-01-13T12:42:43.490503 - Prompt executed in 0.01 seconds
2026-01-13T12:42:47.343297 - got prompt
2026-01-13T12:42:47.344889 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T12:42:47.345406 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T12:42:47.346090 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'value'
2026-01-13T12:42:47.389820 - comfy_extras.chainner_models is deprecated and has been replaced by the spandrel library.
2026-01-13T12:42:47.448111 - [34mWAS Node Suite: [0m[33mㅣ[0m:
0
[0m2026-01-13T12:42:47.448214 -
2026-01-13T12:42:47.467101 - Using split attention in VAE
2026-01-13T12:42:47.467537 - Using split attention in VAE
2026-01-13T12:42:47.699253 - VAE load device: mps, offload device: cpu, dtype: torch.bfloat16
2026-01-13T12:42:47.727567 - Requested to load AutoencoderKL
2026-01-13T12:42:47.787024 - loaded completely 9.5367431640625e+25 159.55708122253418 True
2026-01-13T12:42:59.094463 - / = '2026-01-13/1242'2026-01-13T12:42:59.094499 -
2026-01-13T12:42:59.695770 - Prompt executed in 12.35 seconds
2026-01-13T12:44:50.173356 - got prompt
2026-01-13T12:44:50.175184 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T12:44:50.175551 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T12:44:50.176402 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'value'
2026-01-13T12:44:50.339129 - !!! Exception during processing !!! view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
2026-01-13T12:44:50.343559 - Traceback (most recent call last):
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 498, 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, hidden_inputs=hidden_inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 316, 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, hidden_inputs=hidden_inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 290, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 278, in process_inputs
result = f(**inputs)
^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_api/internal/__init__.py", line 149, in wrapped_func
return method(locked_class, **inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_api/latest/_io.py", line 1270, in EXECUTE_NORMALIZED
to_return = cls.execute(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_extras/nodes_upscale_model.py", line 85, in execute
s = comfy.utils.tiled_scale(in_img, lambda a: upscale_model(a), tile_x=tile, tile_y=tile, overlap=overlap, upscale_amount=upscale_model.scale, pbar=pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy/utils.py", line 1016, in tiled_scale
return tiled_scale_multidim(samples, function, (tile_y, tile_x), overlap=overlap, upscale_amount=upscale_amount, out_channels=out_channels, output_device=output_device, pbar=pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/utils/_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy/utils.py", line 988, in tiled_scale_multidim
ps = function(s_in).to(output_device)
^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_extras/nodes_upscale_model.py", line 85, in
s = comfy.utils.tiled_scale(in_img, lambda a: upscale_model(a), tile_x=tile, tile_y=tile, overlap=overlap, upscale_amount=upscale_model.scale, pbar=pbar)
^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/utils/_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/__helpers/model_descriptor.py", line 472, in __call__
output = self._call_fn(self.model, image)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/__helpers/model_descriptor.py", line 439, in
self._call_fn = call_fn or (lambda model, image: model(image))
^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/architectures/ESRGAN/__arch/RRDB.py", line 144, in forward
return self.model(x)
^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/container.py", line 244, in forward
input = module(input)
^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/conv.py", line 548, in forward
return self._conv_forward(input, self.weight, self.bias)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/conv.py", line 543, in _conv_forward
return F.conv2d(
^^^^^^^^^
RuntimeError: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
2026-01-13T12:44:50.344604 - Prompt executed in 0.17 seconds
2026-01-13T12:45:28.764821 - got prompt
2026-01-13T12:45:28.766450 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T12:45:28.766539 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T12:45:28.767395 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'value'
2026-01-13T12:45:28.768854 - [34mWAS Node Suite: [0m[33mㅣ[0m:
0
[0m2026-01-13T12:45:28.768888 -
2026-01-13T12:45:28.816218 - !!! Exception during processing !!! view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
2026-01-13T12:45:28.817137 - Traceback (most recent call last):
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 498, 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, hidden_inputs=hidden_inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 316, 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, hidden_inputs=hidden_inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 290, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 278, in process_inputs
result = f(**inputs)
^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_api/internal/__init__.py", line 149, in wrapped_func
return method(locked_class, **inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_api/latest/_io.py", line 1270, in EXECUTE_NORMALIZED
to_return = cls.execute(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_extras/nodes_upscale_model.py", line 85, in execute
s = comfy.utils.tiled_scale(in_img, lambda a: upscale_model(a), tile_x=tile, tile_y=tile, overlap=overlap, upscale_amount=upscale_model.scale, pbar=pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy/utils.py", line 1016, in tiled_scale
return tiled_scale_multidim(samples, function, (tile_y, tile_x), overlap=overlap, upscale_amount=upscale_amount, out_channels=out_channels, output_device=output_device, pbar=pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/utils/_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy/utils.py", line 988, in tiled_scale_multidim
ps = function(s_in).to(output_device)
^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_extras/nodes_upscale_model.py", line 85, in
s = comfy.utils.tiled_scale(in_img, lambda a: upscale_model(a), tile_x=tile, tile_y=tile, overlap=overlap, upscale_amount=upscale_model.scale, pbar=pbar)
^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/utils/_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/__helpers/model_descriptor.py", line 472, in __call__
output = self._call_fn(self.model, image)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/__helpers/model_descriptor.py", line 439, in
self._call_fn = call_fn or (lambda model, image: model(image))
^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/architectures/ESRGAN/__arch/RRDB.py", line 144, in forward
return self.model(x)
^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/container.py", line 244, in forward
input = module(input)
^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/conv.py", line 548, in forward
return self._conv_forward(input, self.weight, self.bias)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/conv.py", line 543, in _conv_forward
return F.conv2d(
^^^^^^^^^
RuntimeError: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
2026-01-13T12:45:28.818378 - Prompt executed in 0.05 seconds
2026-01-13T13:04:40.259944 - got prompt
2026-01-13T13:04:40.261491 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T13:04:40.261612 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'format'
2026-01-13T13:04:40.262420 - WARNING: _.IS_CHANGED() got an unexpected keyword argument 'value'
2026-01-13T13:04:40.342392 - !!! Exception during processing !!! view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
2026-01-13T13:04:40.343375 - Traceback (most recent call last):
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 498, 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, hidden_inputs=hidden_inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 316, 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, hidden_inputs=hidden_inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 290, in _async_map_node_over_list
await process_inputs(input_dict, i)
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/execution.py", line 278, in process_inputs
result = f(**inputs)
^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_api/internal/__init__.py", line 149, in wrapped_func
return method(locked_class, **inputs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_api/latest/_io.py", line 1270, in EXECUTE_NORMALIZED
to_return = cls.execute(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_extras/nodes_upscale_model.py", line 85, in execute
s = comfy.utils.tiled_scale(in_img, lambda a: upscale_model(a), tile_x=tile, tile_y=tile, overlap=overlap, upscale_amount=upscale_model.scale, pbar=pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy/utils.py", line 1016, in tiled_scale
return tiled_scale_multidim(samples, function, (tile_y, tile_x), overlap=overlap, upscale_amount=upscale_amount, out_channels=out_channels, output_device=output_device, pbar=pbar)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/utils/_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy/utils.py", line 988, in tiled_scale_multidim
ps = function(s_in).to(output_device)
^^^^^^^^^^^^^^
File "/Applications/ComfyUI.app/Contents/Resources/ComfyUI/comfy_extras/nodes_upscale_model.py", line 85, in
s = comfy.utils.tiled_scale(in_img, lambda a: upscale_model(a), tile_x=tile, tile_y=tile, overlap=overlap, upscale_amount=upscale_model.scale, pbar=pbar)
^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/utils/_contextlib.py", line 120, in decorate_context
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/__helpers/model_descriptor.py", line 472, in __call__
output = self._call_fn(self.model, image)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/__helpers/model_descriptor.py", line 439, in
self._call_fn = call_fn or (lambda model, image: model(image))
^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/spandrel/architectures/ESRGAN/__arch/RRDB.py", line 144, in forward
return self.model(x)
^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/container.py", line 244, in forward
input = module(input)
^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1773, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/module.py", line 1784, in _call_impl
return forward_call(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/conv.py", line 548, in forward
return self._conv_forward(input, self.weight, self.bias)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/Applications/ComfyUI/.venv/lib/python3.12/site-packages/torch/nn/modules/conv.py", line 543, in _conv_forward
return F.conv2d(
^^^^^^^^^
RuntimeError: view size is not compatible with input tensor's size and stride (at least one dimension spans across two contiguous subspaces). Use .reshape(...) instead.
2026-01-13T13:04:40.344416 - Prompt executed in 0.08 seconds
## Attached Workflow
Please make sure that workflow does not contain any sensitive information such as API keys or passwords.
Workflow too large. Please manually upload the workflow from local file system.
## Additional Context
(Please add any additional context or steps to reproduce the error here)
```
### Other
_No response_
Contributor guide
Assessment
This issue has not been assessed yet.