diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-06 10:25:51 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-06 10:25:51 +0000 |
commit | 57e8a11d17a6646fdf551320f5f714fba752987a (patch) | |
tree | 70be8362501850cb83417ca0f2886858459eac3b /modules/shared.py | |
parent | f9950da3e30e6c8e2993d1d69d6e5c26c6a56485 (diff) | |
download | stable-diffusion-webui-gfx803-57e8a11d17a6646fdf551320f5f714fba752987a.tar.gz stable-diffusion-webui-gfx803-57e8a11d17a6646fdf551320f5f714fba752987a.tar.bz2 stable-diffusion-webui-gfx803-57e8a11d17a6646fdf551320f5f714fba752987a.zip |
enable cond cache by default
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/shared.py b/modules/shared.py index 8e1b8063..078e8135 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -506,7 +506,7 @@ options_templates.update(options_section(('optimizations', "Optimizations"), { "token_merging_ratio_img2img": OptionInfo(0.0, "Token merging ratio for img2img", gr.Slider, {"minimum": 0.0, "maximum": 0.9, "step": 0.1}).info("only applies if non-zero and overrides above"),
"token_merging_ratio_hr": OptionInfo(0.0, "Token merging ratio for high-res pass", gr.Slider, {"minimum": 0.0, "maximum": 0.9, "step": 0.1}).info("only applies if non-zero and overrides above"),
"pad_cond_uncond": OptionInfo(False, "Pad prompt/negative prompt to be same length").info("improves performance when prompt and negative prompt have different lengths; changes seeds"),
- "experimental_persistent_cond_cache": OptionInfo(False, "persistent cond cache").info("Experimental, keep cond caches across jobs, reduce overhead."),
+ "persistent_cond_cache": OptionInfo(True, "Persistent cond cache").info("Do not recalculate conds from prompts if prompts have not changed since previous calculation"),
}))
options_templates.update(options_section(('compatibility', "Compatibility"), {
|