aboutsummaryrefslogtreecommitdiffstats
path: root/webui.py
diff options
context:
space:
mode:
authorhentailord85ez <112723046+hentailord85ez@users.noreply.github.com>2022-09-03 15:47:37 +0000
committerGitHub <noreply@github.com>2022-09-03 15:47:37 +0000
commite23a36b666bf28c3329e7f83ef17c416eeb410d9 (patch)
tree47fcaa6555c1c4b7df065f6e99086341320bd504 /webui.py
parent595c827bd31773cc98eb6e87b11090960a32b2a2 (diff)
downloadstable-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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui.py b/webui.py
index cb28d359..d79b5966 100644
--- a/webui.py
+++ b/webui.py
@@ -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)