Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
ee74ef5c
Commit
ee74ef5c
authored
Nov 02, 2023
by
comfyanonymous
Browse files
Increase maximum batch size in LatentRebatch.
parent
6e84a01e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
comfy_extras/nodes_rebatch.py
comfy_extras/nodes_rebatch.py
+1
-1
No files found.
comfy_extras/nodes_rebatch.py
View file @
ee74ef5c
...
@@ -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"
:
6
4
}),
"batch_size"
:
(
"INT"
,
{
"default"
:
1
,
"min"
:
1
,
"max"
:
4
096
}),
}}
}}
RETURN_TYPES
=
(
"LATENT"
,)
RETURN_TYPES
=
(
"LATENT"
,)
INPUT_IS_LIST
=
True
INPUT_IS_LIST
=
True
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment