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
1c34d338
"examples/offline_inference_with_profiler.py" did not exist on "a78d21ff2ec363bc9f76e1b668a32638561cb41f"
Commit
1c34d338
authored
Jun 11, 2024
by
comfyanonymous
Browse files
Update EmptySD3LatentImage to use 1024 resolution by default.
parent
9424522e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
comfy_extras/nodes_sd3.py
comfy_extras/nodes_sd3.py
+2
-2
No files found.
comfy_extras/nodes_sd3.py
View file @
1c34d338
...
...
@@ -27,8 +27,8 @@ class EmptySD3LatentImage:
@
classmethod
def
INPUT_TYPES
(
s
):
return
{
"required"
:
{
"width"
:
(
"INT"
,
{
"default"
:
512
,
"min"
:
16
,
"max"
:
nodes
.
MAX_RESOLUTION
,
"step"
:
8
}),
"height"
:
(
"INT"
,
{
"default"
:
512
,
"min"
:
16
,
"max"
:
nodes
.
MAX_RESOLUTION
,
"step"
:
8
}),
return
{
"required"
:
{
"width"
:
(
"INT"
,
{
"default"
:
1024
,
"min"
:
16
,
"max"
:
nodes
.
MAX_RESOLUTION
,
"step"
:
8
}),
"height"
:
(
"INT"
,
{
"default"
:
1024
,
"min"
:
16
,
"max"
:
nodes
.
MAX_RESOLUTION
,
"step"
:
8
}),
"batch_size"
:
(
"INT"
,
{
"default"
:
1
,
"min"
:
1
,
"max"
:
4096
})}}
RETURN_TYPES
=
(
"LATENT"
,)
FUNCTION
=
"generate"
...
...
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