ComfyUI/tests-unit/comfy_test
abhay-codes07 03c2ad00b8
Fix overlap-linear context window crash when context_overlap is 0
create_weights_overlap_linear computed the right-edge ramp with
weights_torch[-context_overlap:], which becomes weights_torch[0:]
(the whole tensor) when context_overlap is 0, while the ramp is a
zero-length tensor. Assigning the empty ramp raised a RuntimeError.

context_overlap == 0 is reachable: the context-window nodes allow a
minimum of 0, and the WAN/LTXV nodes derive it via max(overlap // 4, 0).
Return the all-ones weights early when there is no overlap band to blend.
2026-07-12 15:21:35 +05:30
..
context_windows_test.py Fix overlap-linear context window crash when context_overlap is 0 2026-07-12 15:21:35 +05:30
folder_path_test.py add models-directory launch argument (#9113) 2026-07-08 22:20:47 +08:00
model_detection_test.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00
seedvr_vae_forward_test.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00
test_seedvr2_dtype.py Try to fix some issues with the seedvr VAE. (#14877) 2026-07-10 19:54:28 -04:00
test_seedvr2_internals.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00
test_seedvr2_model.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00
test_seedvr2_vae_decode.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00
test_seedvr2_vae_tiled.py Try to fix some issues with the seedvr VAE. (#14877) 2026-07-10 19:54:28 -04:00