aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAUTOMATIC1111 <16777216c@gmail.com>2022-09-03 19:34:27 +0300
committerGitHub <noreply@github.com>2022-09-03 19:34:27 +0300
commit5c186d51d71ca211246a3b08314cefd9273e2c36 (patch)
tree62472dfcf53e1764ae9dacc03bd365f8426daa4f
parent592334f322d403679a125225afb5ff0114935edd (diff)
parente23a36b666bf28c3329e7f83ef17c416eeb410d9 (diff)
Merge pull request #59 from hentailord85ez/master
Fixed typo 'medram' -> 'medvram' in 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)