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
c8c9926e
Commit
c8c9926e
authored
Apr 24, 2023
by
pythongosssss
Browse files
Add progress to vae decode tiled
parent
737c1587
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
comfy/sd.py
comfy/sd.py
+9
-3
comfy/utils.py
comfy/utils.py
+3
-1
No files found.
comfy/sd.py
View file @
c8c9926e
import
torch
import
contextlib
import
copy
from
tqdm.auto
import
tqdm
import
sd1_clip
import
sd2_clip
...
...
@@ -437,11 +438,16 @@ class VAE:
self
.
device
=
device
def
decode_tiled_
(
self
,
samples
,
tile_x
=
64
,
tile_y
=
64
,
overlap
=
16
):
it_1
=
-
(
samples
.
shape
[
2
]
//
-
(
tile_y
*
2
-
overlap
))
*
-
(
samples
.
shape
[
3
]
//
-
(
tile_x
//
2
-
overlap
))
it_2
=
-
(
samples
.
shape
[
2
]
//
-
(
tile_y
//
2
-
overlap
))
*
-
(
samples
.
shape
[
3
]
//
-
(
tile_x
*
2
-
overlap
))
it_3
=
-
(
samples
.
shape
[
2
]
//
-
(
tile_y
-
overlap
))
*
-
(
samples
.
shape
[
3
]
//
-
(
tile_x
-
overlap
))
pbar
=
tqdm
(
total
=
samples
.
shape
[
0
]
*
(
it_1
+
it_2
+
it_3
))
decode_fn
=
lambda
a
:
(
self
.
first_stage_model
.
decode
(
1.
/
self
.
scale_factor
*
a
.
to
(
self
.
device
))
+
1.0
)
output
=
torch
.
clamp
((
(
utils
.
tiled_scale
(
samples
,
decode_fn
,
tile_x
//
2
,
tile_y
*
2
,
overlap
,
upscale_amount
=
8
)
+
utils
.
tiled_scale
(
samples
,
decode_fn
,
tile_x
*
2
,
tile_y
//
2
,
overlap
,
upscale_amount
=
8
)
+
utils
.
tiled_scale
(
samples
,
decode_fn
,
tile_x
,
tile_y
,
overlap
,
upscale_amount
=
8
))
(
utils
.
tiled_scale
(
samples
,
decode_fn
,
tile_x
//
2
,
tile_y
*
2
,
overlap
,
upscale_amount
=
8
,
pbar
=
pbar
)
+
utils
.
tiled_scale
(
samples
,
decode_fn
,
tile_x
*
2
,
tile_y
//
2
,
overlap
,
upscale_amount
=
8
,
pbar
=
pbar
)
+
utils
.
tiled_scale
(
samples
,
decode_fn
,
tile_x
,
tile_y
,
overlap
,
upscale_amount
=
8
,
pbar
=
pbar
))
/
3.0
)
/
2.0
,
min
=
0.0
,
max
=
1.0
)
return
output
...
...
comfy/utils.py
View file @
c8c9926e
...
...
@@ -63,7 +63,7 @@ def common_upscale(samples, width, height, upscale_method, crop):
return
torch
.
nn
.
functional
.
interpolate
(
s
,
size
=
(
height
,
width
),
mode
=
upscale_method
)
@
torch
.
inference_mode
()
def
tiled_scale
(
samples
,
function
,
tile_x
=
64
,
tile_y
=
64
,
overlap
=
8
,
upscale_amount
=
4
,
out_channels
=
3
):
def
tiled_scale
(
samples
,
function
,
tile_x
=
64
,
tile_y
=
64
,
overlap
=
8
,
upscale_amount
=
4
,
out_channels
=
3
,
pbar
=
None
):
output
=
torch
.
empty
((
samples
.
shape
[
0
],
out_channels
,
round
(
samples
.
shape
[
2
]
*
upscale_amount
),
round
(
samples
.
shape
[
3
]
*
upscale_amount
)),
device
=
"cpu"
)
for
b
in
range
(
samples
.
shape
[
0
]):
s
=
samples
[
b
:
b
+
1
]
...
...
@@ -83,6 +83,8 @@ def tiled_scale(samples, function, tile_x=64, tile_y=64, overlap = 8, upscale_am
mask
[:,:,:,
mask
.
shape
[
3
]
-
1
-
t
:
mask
.
shape
[
3
]
-
t
]
*=
((
1.0
/
feather
)
*
(
t
+
1
))
out
[:,:,
round
(
y
*
upscale_amount
):
round
((
y
+
tile_y
)
*
upscale_amount
),
round
(
x
*
upscale_amount
):
round
((
x
+
tile_x
)
*
upscale_amount
)]
+=
ps
*
mask
out_div
[:,:,
round
(
y
*
upscale_amount
):
round
((
y
+
tile_y
)
*
upscale_amount
),
round
(
x
*
upscale_amount
):
round
((
x
+
tile_x
)
*
upscale_amount
)]
+=
mask
if
pbar
is
not
None
:
pbar
.
update
(
1
)
output
[
b
:
b
+
1
]
=
out
/
out_div
return
output
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