aboutsummaryrefslogtreecommitdiffstats
path: root/webui.py
diff options
context:
space:
mode:
authorAUTOMATIC <16777216c@gmail.com>2022-08-28 23:17:41 +0000
committerAUTOMATIC <16777216c@gmail.com>2022-08-28 23:17:41 +0000
commit036a0dde709282c01cf469487425f9df7357efc3 (patch)
tree68e5e1e45d961384b2e513ec6c7b5d630dbaf508 /webui.py
parent9c9f048b5e3128f06ebdee12581f6c00692b2973 (diff)
downloadstable-diffusion-webui-gfx803-036a0dde709282c01cf469487425f9df7357efc3.tar.gz
stable-diffusion-webui-gfx803-036a0dde709282c01cf469487425f9df7357efc3.tar.bz2
stable-diffusion-webui-gfx803-036a0dde709282c01cf469487425f9df7357efc3.zip
forgot to remove debug messages
Diffstat (limited to 'webui.py')
-rw-r--r--webui.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/webui.py b/webui.py
index 0fad34df..51f02fd4 100644
--- a/webui.py
+++ b/webui.py
@@ -211,13 +211,9 @@ def setup_for_low_vram(sd_model):
return
if module_in_gpu is not None:
- print('removing from gpu:', type(module_in_gpu))
module_in_gpu.to(cpu)
- print('adding to gpu:', type(module))
module.to(gpu)
-
- print('added to gpu:', type(module))
module_in_gpu = module
# see below for register_forward_pre_hook;