diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-22 15:49:08 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-22 15:49:08 +0000 |
commit | 016554e43740e0b7ded75e89255de81270de9d6c (patch) | |
tree | 127ecb9d92ce53f8e351270e8ef1c27784af3088 /modules/shared.py | |
parent | bb7dd7b64668d4b645dba38a3bc52be452d14eb8 (diff) | |
download | stable-diffusion-webui-gfx803-016554e43740e0b7ded75e89255de81270de9d6c.tar.gz stable-diffusion-webui-gfx803-016554e43740e0b7ded75e89255de81270de9d6c.tar.bz2 stable-diffusion-webui-gfx803-016554e43740e0b7ded75e89255de81270de9d6c.zip |
add --medvram-sdxl
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 0c57b712..f321159d 100644 --- a/modules/shared.py +++ b/modules/shared.py @@ -11,7 +11,7 @@ cmd_opts = shared_cmd_options.cmd_opts parser = shared_cmd_options.parser
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
+parallel_processing_allowed = True
styles_filename = cmd_opts.styles_file
config_filename = cmd_opts.ui_settings_file
hide_dirs = {"visible": not cmd_opts.hide_ui_dir_config}
|