diff options
author | Muhammad Rizqi Nur <rizqinur2010@gmail.com> | 2022-11-02 13:53:41 +0000 |
---|---|---|
committer | Muhammad Rizqi Nur <rizqinur2010@gmail.com> | 2022-11-02 13:53:41 +0000 |
commit | fb3b564801b6c01c220014c9b3bdebdee2b57215 (patch) | |
tree | 00d73653e65552691bde9ca5e474d59285e95c39 /modules/extras.py | |
parent | bf7a699845675eefdabb9cfa40c55398976274ae (diff) | |
parent | 172c4bc09f0866e7dd114068ebe0f9abfe79ef33 (diff) | |
download | stable-diffusion-webui-gfx803-fb3b564801b6c01c220014c9b3bdebdee2b57215.tar.gz stable-diffusion-webui-gfx803-fb3b564801b6c01c220014c9b3bdebdee2b57215.tar.bz2 stable-diffusion-webui-gfx803-fb3b564801b6c01c220014c9b3bdebdee2b57215.zip |
Merge branch 'master' into fix-ckpt-cache
Diffstat (limited to 'modules/extras.py')
-rw-r--r-- | modules/extras.py | 2 |
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)
|