diff options
author | pieresimakp <69743585+pieresimakp@users.noreply.github.com> | 2023-03-25 15:00:45 +0000 |
---|---|---|
committer | pieresimakp <69743585+pieresimakp@users.noreply.github.com> | 2023-03-25 15:00:45 +0000 |
commit | e3b9d0e3e8adfb6214a1eb7acf450574f427ff9d (patch) | |
tree | c9c64ad1f926df990fb2ce05c6eec063de195eec /extensions-builtin/Lora | |
parent | 771ea212de13711b494b082d8e94e79b17ac9d08 (diff) | |
parent | 91ae48fd7e20c60d6374f340cac0939f56d87048 (diff) | |
download | stable-diffusion-webui-gfx803-e3b9d0e3e8adfb6214a1eb7acf450574f427ff9d.tar.gz stable-diffusion-webui-gfx803-e3b9d0e3e8adfb6214a1eb7acf450574f427ff9d.tar.bz2 stable-diffusion-webui-gfx803-e3b9d0e3e8adfb6214a1eb7acf450574f427ff9d.zip |
Merge branch 'master' into img2img-detect-image-size
Diffstat (limited to 'extensions-builtin/Lora')
-rw-r--r-- | extensions-builtin/Lora/lora.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extensions-builtin/Lora/lora.py b/extensions-builtin/Lora/lora.py index 8937b585..7c371deb 100644 --- a/extensions-builtin/Lora/lora.py +++ b/extensions-builtin/Lora/lora.py @@ -178,6 +178,7 @@ def load_loras(names, multipliers=None): def lora_forward(module, input, res):
+ input = devices.cond_cast_unet(input)
if len(loaded_loras) == 0:
return res
|