mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2026-01-14 05:11:13 -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
|
|
@ -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.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue