aboutsummaryrefslogtreecommitdiffstats
path: root/modules/extras.py
diff options
context:
space:
mode:
authorKyuSeok Jung <wjdrbtjr495@gmail.com>2022-11-02 08:10:56 +0000
committerGitHub <noreply@github.com>2022-11-02 08:10:56 +0000
commitaf6fba247553e670ef5e2dcc1866279f9f065d6d (patch)
tree160b205b1c11025b0195c3857c8a73cccc0c80c5 /modules/extras.py
parent467cae167a3066ffa2b2a5e6f16dd42642219aba (diff)
parent95c6308ccd2e075d1fb804f5b98a4f0b07b87b7d (diff)
downloadstable-diffusion-webui-gfx803-af6fba247553e670ef5e2dcc1866279f9f065d6d.tar.gz
stable-diffusion-webui-gfx803-af6fba247553e670ef5e2dcc1866279f9f065d6d.tar.bz2
stable-diffusion-webui-gfx803-af6fba247553e670ef5e2dcc1866279f9f065d6d.zip
Merge branch 'master' into master
Diffstat (limited to 'modules/extras.py')
-rw-r--r--modules/extras.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extras.py b/modules/extras.py
index 4d51088b..8e2ab35c 100644
--- a/modules/extras.py
+++ b/modules/extras.py
@@ -141,7 +141,7 @@ def run_extras(extras_mode, resize_mode, image, image_folder, input_dir, output_
upscaling_resize_w, upscaling_resize_h, upscaling_crop)
cache_key = LruCache.Key(image_hash=hash(np.array(image.getdata()).tobytes()),
info_hash=hash(info),
- args_hash=hash(upscale_args))
+ args_hash=hash((upscale_args, upscale_first)))
cached_entry = cached_images.get(cache_key)
if cached_entry is None:
res = upscale(image, *upscale_args)