mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-05 16:51:21 -08:00
ditch --always-batch-cond-uncond in favor of an UI setting
This commit is contained in:
parent
d02c4da483
commit
dfd6ea3fca
4 changed files with 6 additions and 5 deletions
|
|
@ -10,7 +10,7 @@ from modules import util
|
|||
cmd_opts = shared_cmd_options.cmd_opts
|
||||
parser = shared_cmd_options.parser
|
||||
|
||||
batch_cond_uncond = cmd_opts.always_batch_cond_uncond or not (cmd_opts.lowvram or cmd_opts.medvram)
|
||||
batch_cond_uncond = True # old field, unused now in favor of shared.opts.batch_cond_uncond
|
||||
parallel_processing_allowed = not cmd_opts.lowvram and not cmd_opts.medvram
|
||||
styles_filename = cmd_opts.styles_file
|
||||
config_filename = cmd_opts.ui_settings_file
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue