Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
S
stable-diffusion-webui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
stable-diffusion-webui
Commits
5deb2a19
Commit
5deb2a19
authored
Jan 06, 2023
by
brkirch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow Doggettx's cross attention opt without CUDA
parent
b95a4c0c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
sd_hijack.py
modules/sd_hijack.py
+1
-1
No files found.
modules/sd_hijack.py
View file @
5deb2a19
...
...
@@ -50,7 +50,7 @@ def apply_optimizations():
print
(
"Applying v1 cross attention optimization."
)
ldm
.
modules
.
attention
.
CrossAttention
.
forward
=
sd_hijack_optimizations
.
split_cross_attention_forward_v1
optimization_method
=
'V1'
elif
not
cmd_opts
.
disable_opt_split_attention
and
(
cmd_opts
.
opt_split_attention_invokeai
or
not
torch
.
cuda
.
is_available
()):
elif
not
cmd_opts
.
disable_opt_split_attention
and
(
cmd_opts
.
opt_split_attention_invokeai
or
not
cmd_opts
.
opt_split_attention
and
not
torch
.
cuda
.
is_available
()):
print
(
"Applying cross attention optimization (InvokeAI)."
)
ldm
.
modules
.
attention
.
CrossAttention
.
forward
=
sd_hijack_optimizations
.
split_cross_attention_forward_invokeAI
optimization_method
=
'InvokeAI'
...
...
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