aboutsummaryrefslogtreecommitdiffstats
path: root/modules/cmd_args.py
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2023-08-21 12:07:10 +0000
committerAUTOMATIC1111 <16777216c@gmail.com>2023-08-21 12:07:10 +0000
commitdfd6ea3fcaf2eb701af61136a290132303a729d5 (patch)
tree6e2f38010d4cd8654f18b02c304370ec7f717202 /modules/cmd_args.py
parentd02c4da483a656331f641224fe5da5f694580066 (diff)
downloadstable-diffusion-webui-gfx803-dfd6ea3fcaf2eb701af61136a290132303a729d5.tar.gz
stable-diffusion-webui-gfx803-dfd6ea3fcaf2eb701af61136a290132303a729d5.tar.bz2
stable-diffusion-webui-gfx803-dfd6ea3fcaf2eb701af61136a290132303a729d5.zip
ditch --always-batch-cond-uncond in favor of an UI setting
Diffstat (limited to 'modules/cmd_args.py')
-rw-r--r--modules/cmd_args.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cmd_args.py b/modules/cmd_args.py
index f360f484..9f8e5b30 100644
--- a/modules/cmd_args.py
+++ b/modules/cmd_args.py
@@ -37,7 +37,7 @@ parser.add_argument("--allow-code", action='store_true', help="allow custom scri
parser.add_argument("--medvram", action='store_true', help="enable stable diffusion model optimizations for sacrificing a little speed for low VRM usage")
parser.add_argument("--lowvram", action='store_true', help="enable stable diffusion model optimizations for sacrificing a lot of speed for very low VRM usage")
parser.add_argument("--lowram", action='store_true', help="load stable diffusion checkpoint weights to VRAM instead of RAM")
-parser.add_argument("--always-batch-cond-uncond", action='store_true', help="disables cond/uncond batching that is enabled to save memory with --medvram or --lowvram")
+parser.add_argument("--always-batch-cond-uncond", action='store_true', help="does not do anything")
parser.add_argument("--unload-gfpgan", action='store_true', help="does not do anything.")
parser.add_argument("--precision", type=str, help="evaluate at this precision", choices=["full", "autocast"], default="autocast")
parser.add_argument("--upcast-sampling", action='store_true', help="upcast sampling. No effect with --no-half. Usually produces similar results to --no-half with better performance while using less memory.")