diff options
author | hentailord85ez <112723046+hentailord85ez@users.noreply.github.com> | 2022-09-03 15:47:37 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-03 15:47:37 +0000 |
commit | e23a36b666bf28c3329e7f83ef17c416eeb410d9 (patch) | |
tree | 47fcaa6555c1c4b7df065f6e99086341320bd504 /webui.py | |
parent | 595c827bd31773cc98eb6e87b11090960a32b2a2 (diff) | |
download | stable-diffusion-webui-gfx803-e23a36b666bf28c3329e7f83ef17c416eeb410d9.tar.gz stable-diffusion-webui-gfx803-e23a36b666bf28c3329e7f83ef17c416eeb410d9.tar.bz2 stable-diffusion-webui-gfx803-e23a36b666bf28c3329e7f83ef17c416eeb410d9.zip |
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)
|