diff options
author | Anthony Fu <anthonyfu117@hotmail.com> | 2023-10-16 06:12:18 +0000 |
---|---|---|
committer | Anthony Fu <anthonyfu117@hotmail.com> | 2023-10-16 06:12:18 +0000 |
commit | 8aa13d5dce2789a7d0bd802e6d62453b3c380496 (patch) | |
tree | 6515dee9cb709d716cf233452a481dfe6fca2d5d /modules/shared_options.py | |
parent | 861cbd56363ffa0df3351cf1162f507425a178cd (diff) | |
download | stable-diffusion-webui-gfx803-8aa13d5dce2789a7d0bd802e6d62453b3c380496.tar.gz stable-diffusion-webui-gfx803-8aa13d5dce2789a7d0bd802e6d62453b3c380496.tar.bz2 stable-diffusion-webui-gfx803-8aa13d5dce2789a7d0bd802e6d62453b3c380496.zip |
Interrupt after current generation
Diffstat (limited to 'modules/shared_options.py')
-rw-r--r-- | modules/shared_options.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared_options.py b/modules/shared_options.py index 32bf7353..4638ef06 100644 --- a/modules/shared_options.py +++ b/modules/shared_options.py @@ -113,6 +113,7 @@ options_templates.update(options_section(('system', "System"), { "disable_mmap_load_safetensors": OptionInfo(False, "Disable memmapping for loading .safetensors files.").info("fixes very slow loading speed in some cases"),
"hide_ldm_prints": OptionInfo(True, "Prevent Stability-AI's ldm/sgm modules from printing noise to console."),
"dump_stacks_on_signal": OptionInfo(False, "Print stack traces before exiting the program with ctrl+c."),
+ "interrupt_after_current": OptionInfo(False, "Interrupt generation after current image is finished on batch processing"),
}))
options_templates.update(options_section(('API', "API"), {
|