diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-08-28 23:17:41 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-08-28 23:17:41 +0000 |
commit | 036a0dde709282c01cf469487425f9df7357efc3 (patch) | |
tree | 68e5e1e45d961384b2e513ec6c7b5d630dbaf508 /webui.py | |
parent | 9c9f048b5e3128f06ebdee12581f6c00692b2973 (diff) | |
download | stable-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.py | 4 |
1 files changed, 0 insertions, 4 deletions
@@ -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;
|