ComfyUI/tests-unit/comfy_extras_test
abhay-codes07 11c1d6cc28
Fix RebatchLatents dropping resized noise mask
get_batch() called torch.nn.functional.interpolate on a mismatched
noise mask but discarded the result, so the mask kept its original
size. The height check was also missing the *8 pixel scale. When a
rebatched latent carried a noise mask that did not match samples * 8
(e.g. from SetLatentNoiseMask, which stores masks unscaled), the
unresized mask later failed to concatenate with another latent's
default mask and raised a size-mismatch RuntimeError.

Assign the interpolate result back to mask and compare the height
against shape[-2] * 8.
2026-07-12 01:07:32 +05:30
..
__init__.py [feat] Add ImageStitch node for concatenating images (#8369) 2025-06-01 04:28:52 -04:00
image_stitch_test.py [V3] converted nodes_images.py to V3 schema (#11206) 2025-12-26 19:39:02 -08:00
nodes_math_test.py Fix uncaught OverflowError in Math Expression node for large int results (#14214) 2026-06-01 18:15:04 -07:00
nodes_number_convert_test.py fix(number-convert): preserve int precision for large numbers (#13147) 2026-03-25 18:06:34 -04:00
nodes_rebatch_test.py Fix RebatchLatents dropping resized noise mask 2026-07-12 01:07:32 +05:30
test_seedvr2_conditioning.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00
test_seedvr2_nodes.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00
test_seedvr2_post_processing.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00
test_seedvr2_temporal_chunk.py Add SeedVR2 support (CORE-6) (#14424) 2026-07-10 15:07:42 +08:00