diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-02-19 06:38:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-19 06:38:15 +0000 |
commit | a77ac2eeaad82dcf71edc6770ae82745b7d55423 (patch) | |
tree | 51b02ceb3565d7e84f14d4a5ac44b948c81c365f /modules/shared.py | |
parent | a742facd95189eb078087bce9cafbfad0723cff4 (diff) | |
parent | f55a7e04d812e8cb07d622efb321abbad54d2d4a (diff) | |
download | stable-diffusion-webui-gfx803-a77ac2eeaad82dcf71edc6770ae82745b7d55423.tar.gz stable-diffusion-webui-gfx803-a77ac2eeaad82dcf71edc6770ae82745b7d55423.tar.bz2 stable-diffusion-webui-gfx803-a77ac2eeaad82dcf71edc6770ae82745b7d55423.zip |
Merge pull request #7730 from CCRcmcpe/fix-dpm-sde-batch
Fix DPM++ SDE not deterministic across different batch sizes (#5210)
Diffstat (limited to 'modules/shared.py')
-rw-r--r-- | modules/shared.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/shared.py b/modules/shared.py index 79fbf724..22344431 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -414,6 +414,7 @@ options_templates.update(options_section(('sd', "Stable Diffusion"), { options_templates.update(options_section(('compatibility', "Compatibility"), {
"use_old_emphasis_implementation": OptionInfo(False, "Use old emphasis implementation. Can be useful to reproduce old seeds."),
"use_old_karras_scheduler_sigmas": OptionInfo(False, "Use old karras scheduler sigmas (0.1 to 10)."),
+ "no_dpmpp_sde_batch_determinism": OptionInfo(False, "Do not make DPM++ SDE deterministic across different batch sizes."),
"use_old_hires_fix_width_height": OptionInfo(False, "For hires fix, use width/height sliders to set final resolution rather than first pass (disables Upscale by, Resize width/height to)."),
}))
|