Custom nodes for ComfyUI that generate multiple images in a single GPU batch with different seeds.
Drop-in replacement for KSampler that adds a batch_size parameter. Each image in the batch uses seed + i, so every result is independently reproducible.
Same as above but with start/end step control, noise toggle, and leftover noise options — matching KSampler Advanced’s interface.
Instead of generating one image at a time, these nodes:
batch_size timesseed+0, seed+1, seed+2, …)This maximizes GPU utilization — if your model uses 2GB and you have 8GB of VRAM, you can generate 2-3 images simultaneously.
Clone into your ComfyUI custom nodes directory:
cd ComfyUI/custom_nodes
git clone https://github.com/adolfocesar/comfyui-ksampler-batch.git
If you generated a batch with seed=42 and batch_size=4, and liked image #3 (index 2):
seed=44 (42 + 2) to reproduce that exact image.