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
797c4e8d
Commit
797c4e8d
authored
May 20, 2023
by
comfyanonymous
Browse files
Simplify and improve some vae attention code.
parent
71666f24
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
14 deletions
+2
-14
comfy/ldm/modules/diffusionmodules/model.py
comfy/ldm/modules/diffusionmodules/model.py
+2
-14
No files found.
comfy/ldm/modules/diffusionmodules/model.py
View file @
797c4e8d
...
@@ -331,25 +331,13 @@ class MemoryEfficientAttnBlockPytorch(nn.Module):
...
@@ -331,25 +331,13 @@ class MemoryEfficientAttnBlockPytorch(nn.Module):
# compute attention
# compute attention
B
,
C
,
H
,
W
=
q
.
shape
B
,
C
,
H
,
W
=
q
.
shape
q
,
k
,
v
=
map
(
lambda
x
:
rearrange
(
x
,
'b c h w -> b (h w) c'
),
(
q
,
k
,
v
))
q
,
k
,
v
=
map
(
q
,
k
,
v
=
map
(
lambda
t
:
t
.
unsqueeze
(
3
)
lambda
t
:
t
.
view
(
B
,
1
,
C
,
-
1
).
transpose
(
2
,
3
).
contiguous
(),
.
reshape
(
B
,
t
.
shape
[
1
],
1
,
C
)
.
permute
(
0
,
2
,
1
,
3
)
.
reshape
(
B
*
1
,
t
.
shape
[
1
],
C
)
.
contiguous
(),
(
q
,
k
,
v
),
(
q
,
k
,
v
),
)
)
out
=
torch
.
nn
.
functional
.
scaled_dot_product_attention
(
q
,
k
,
v
,
attn_mask
=
None
,
dropout_p
=
0.0
,
is_causal
=
False
)
out
=
torch
.
nn
.
functional
.
scaled_dot_product_attention
(
q
,
k
,
v
,
attn_mask
=
None
,
dropout_p
=
0.0
,
is_causal
=
False
)
out
=
(
out
=
out
.
transpose
(
2
,
3
).
reshape
(
B
,
C
,
H
,
W
)
out
.
unsqueeze
(
0
)
.
reshape
(
B
,
1
,
out
.
shape
[
1
],
C
)
.
permute
(
0
,
2
,
1
,
3
)
.
reshape
(
B
,
out
.
shape
[
1
],
C
)
)
out
=
rearrange
(
out
,
'b (h w) c -> b c h w'
,
b
=
B
,
h
=
H
,
w
=
W
,
c
=
C
)
out
=
self
.
proj_out
(
out
)
out
=
self
.
proj_out
(
out
)
return
x
+
out
return
x
+
out
...
...
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