Skip to content

Commit

Permalink
Increase maximum batch size in LatentRebatch.
Browse files Browse the repository at this point in the history
  • Loading branch information
comfyanonymous committed Nov 2, 2023
1 parent 6e84a01 commit ee74ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion comfy_extras/nodes_rebatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ class LatentRebatch:
@classmethod
def INPUT_TYPES(s):
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",)
INPUT_IS_LIST = True
Expand Down

0 comments on commit ee74ef5

Please sign in to comment.