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
d86b222f
Unverified
Commit
d86b222f
authored
Aug 28, 2023
by
BVH
Committed by
GitHub
Aug 28, 2023
Browse files
Reduce min tile size for encode
parent
91965880
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
nodes.py
nodes.py
+1
-1
No files found.
nodes.py
View file @
d86b222f
...
@@ -283,7 +283,7 @@ class VAEEncodeTiled:
...
@@ -283,7 +283,7 @@ class VAEEncodeTiled:
@
classmethod
@
classmethod
def
INPUT_TYPES
(
s
):
def
INPUT_TYPES
(
s
):
return
{
"required"
:
{
"pixels"
:
(
"IMAGE"
,
),
"vae"
:
(
"VAE"
,
),
return
{
"required"
:
{
"pixels"
:
(
"IMAGE"
,
),
"vae"
:
(
"VAE"
,
),
"tile_size"
:
(
"INT"
,
{
"default"
:
512
,
"min"
:
5
12
,
"max"
:
4096
,
"step"
:
64
})
"tile_size"
:
(
"INT"
,
{
"default"
:
512
,
"min"
:
1
9
2
,
"max"
:
4096
,
"step"
:
64
})
}}
}}
RETURN_TYPES
=
(
"LATENT"
,)
RETURN_TYPES
=
(
"LATENT"
,)
FUNCTION
=
"encode"
FUNCTION
=
"encode"
...
...
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