diff options
author | aria1th <35677394+aria1th@users.noreply.github.com> | 2023-11-11 14:28:12 +0000 |
---|---|---|
committer | aria1th <35677394+aria1th@users.noreply.github.com> | 2023-11-11 14:28:12 +0000 |
commit | 294f8a514f982248cda1cafda30d35566f3a0321 (patch) | |
tree | 05e73e4127b36f62743ffc58b814ec8ff34199f6 /modules/shared_options.py | |
parent | 5e80d9ee99c5899e5e2b130408ffb65a0585a62a (diff) | |
download | stable-diffusion-webui-gfx803-294f8a514f982248cda1cafda30d35566f3a0321.tar.gz stable-diffusion-webui-gfx803-294f8a514f982248cda1cafda30d35566f3a0321.tar.bz2 stable-diffusion-webui-gfx803-294f8a514f982248cda1cafda30d35566f3a0321.zip |
add hyperTile
https://github.com/tfernd/HyperTile
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index d40db530..d9650265 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -200,6 +200,8 @@ options_templates.update(options_section(('optimizations', "Optimizations"), { "pad_cond_uncond": OptionInfo(False, "Pad prompt/negative prompt to be same length", infotext='Pad conds').info("improves performance when prompt and negative prompt have different lengths; changes seeds"),
"persistent_cond_cache": OptionInfo(True, "Persistent cond cache").info("do not recalculate conds from prompts if prompts have not changed since previous calculation"),
"batch_cond_uncond": OptionInfo(True, "Batch cond/uncond").info("do both conditional and unconditional denoising in one batch; uses a bit more VRAM during sampling, but improves speed; previously this was controlled by --always-batch-cond-uncond comandline argument"),
+ "hypertile_split_unet_attn" : OptionInfo(False, "Split attention in Unet with HyperTile").link("Github", "https://github.com/tfernd/HyperTile").info("improves performance; changes behavior, but deterministic"),
+ "hypertile_split_vae_attn": OptionInfo(False, "Split attention in VAE with HyperTile").link("Github", "https://github.com/tfernd/HyperTile").info("improves performance; changes behavior, but deterministic"),
}))
options_templates.update(options_section(('compatibility', "Compatibility"), {
|