mirror of
https://github.com/openvinotoolkit/stable-diffusion-webui.git
synced 2024-12-14 22:53:25 +03:00
extras: upscaler blending should not be considered in cache key
This commit is contained in:
parent
5732c0282d
commit
d8b3661467
@ -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)
|
upscaling_resize_w, upscaling_resize_h, upscaling_crop)
|
||||||
cache_key = LruCache.Key(image_hash=hash(np.array(image.getdata()).tobytes()),
|
cache_key = LruCache.Key(image_hash=hash(np.array(image.getdata()).tobytes()),
|
||||||
info_hash=hash(info),
|
info_hash=hash(info),
|
||||||
args_hash=hash(upscale_args + (upscaler.blend_alpha,)))
|
args_hash=hash(upscale_args))
|
||||||
cached_entry = cached_images.get(cache_key)
|
cached_entry = cached_images.get(cache_key)
|
||||||
if cached_entry is None:
|
if cached_entry is None:
|
||||||
res = upscale(image, *upscale_args)
|
res = upscale(image, *upscale_args)
|
||||||
|
Loading…
Reference in New Issue
Block a user