diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-26 08:18:49 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-11-26 08:18:49 +0000 |
commit | f85b74763d4501542d8ea80e99db4111d39b4776 (patch) | |
tree | d1dcaba1eb653b10b987141a689a1aae6861dde4 /modules/shared_options.py | |
parent | fd8674a4bcdde86854e019ec74aa3112191dfd26 (diff) | |
parent | d2e0c1ca132f4f0d98b77397a9f353d4ad8e7c4b (diff) | |
download | stable-diffusion-webui-gfx803-f85b74763d4501542d8ea80e99db4111d39b4776.tar.gz stable-diffusion-webui-gfx803-f85b74763d4501542d8ea80e99db4111d39b4776.tar.bz2 stable-diffusion-webui-gfx803-f85b74763d4501542d8ea80e99db4111d39b4776.zip |
Merge branch 'hypertile-in-sample' into dev
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index 1f860d8c..9bcd7914 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -201,14 +201,6 @@ 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"),
- "hypertile_max_depth_vae" : OptionInfo(3, "Max depth for VAE HyperTile hijack", gr.Slider, {"minimum": 0, "maximum": 3, "step": 1}).link("Github", "https://github.com/tfernd/HyperTile"),
- "hypertile_max_depth_unet" : OptionInfo(3, "Max depth for Unet HyperTile hijack", gr.Slider, {"minimum": 0, "maximum": 3, "step": 1}).link("Github", "https://github.com/tfernd/HyperTile"),
- "hypertile_max_tile_vae" : OptionInfo(128, "Max tile size for VAE HyperTile hijack", gr.Slider, {"minimum": 0, "maximum": 512, "step": 16}).link("Github", "https://github.com/tfernd/HyperTile"),
- "hypertile_max_tile_unet" : OptionInfo(256, "Max tile size for Unet HyperTile hijack", gr.Slider, {"minimum": 0, "maximum": 512, "step": 16}).link("Github", "https://github.com/tfernd/HyperTile"),
- "hypertile_swap_size_unet": OptionInfo(3, "Swap size for Unet HyperTile hijack", gr.Slider, {"minimum": 0, "maximum": 6, "step": 1}).link("Github", "https://github.com/tfernd/HyperTile"),
- "hypertile_swap_size_vae": OptionInfo(3, "Swap size for VAE HyperTile hijack", gr.Slider, {"minimum": 0, "maximum": 6, "step": 1}).link("Github", "https://github.com/tfernd/HyperTile"),
}))
options_templates.update(options_section(('compatibility', "Compatibility"), {
|