Commit ee74ef5c authored by comfyanonymous's avatar comfyanonymous
Browse files

Increase maximum batch size in LatentRebatch.

parent 6e84a01e
...@@ -4,7 +4,7 @@ class LatentRebatch: ...@@ -4,7 +4,7 @@ class LatentRebatch:
@classmethod @classmethod
def INPUT_TYPES(s): def INPUT_TYPES(s):
return {"required": { "latents": ("LATENT",), return {"required": { "latents": ("LATENT",),
"batch_size": ("INT", {"default": 1, "min": 1, "max": 64}), "batch_size": ("INT", {"default": 1, "min": 1, "max": 4096}),
}} }}
RETURN_TYPES = ("LATENT",) RETURN_TYPES = ("LATENT",)
INPUT_IS_LIST = True INPUT_IS_LIST = True
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment