diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-03 16:34:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-03 16:34:27 +0000 |
commit | 5c186d51d71ca211246a3b08314cefd9273e2c36 (patch) | |
tree | 62472dfcf53e1764ae9dacc03bd365f8426daa4f /webui.py | |
parent | 592334f322d403679a125225afb5ff0114935edd (diff) | |
parent | e23a36b666bf28c3329e7f83ef17c416eeb410d9 (diff) | |
download | stable-diffusion-webui-gfx803-5c186d51d71ca211246a3b08314cefd9273e2c36.tar.gz stable-diffusion-webui-gfx803-5c186d51d71ca211246a3b08314cefd9273e2c36.tar.bz2 stable-diffusion-webui-gfx803-5c186d51d71ca211246a3b08314cefd9273e2c36.zip |
Merge pull request #59 from hentailord85ez/master
Fixed typo 'medram' -> 'medvram' in webui.py
Diffstat (limited to 'webui.py')
-rw-r--r-- | webui.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -126,7 +126,7 @@ shared.sd_model = load_model_from_config(sd_config, cmd_opts.ckpt) shared.sd_model = (shared.sd_model if cmd_opts.no_half else shared.sd_model.half())
if cmd_opts.lowvram or cmd_opts.medvram:
- modules.lowvram.setup_for_low_vram(shared.sd_model, cmd_opts.medram)
+ modules.lowvram.setup_for_low_vram(shared.sd_model, cmd_opts.medvram)
else:
shared.sd_model = shared.sd_model.to(shared.device)
|