mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 00:03:20 +01:00
Hotfix for #1701 - run disable VAE tiling only on pipelines that support it
This commit is contained in:
parent
e77629c525
commit
85eaa305cc
@ -279,9 +279,11 @@ def generate_images_internal(
|
||||
delattr(pipe.unet, "_allocate_trt_buffers")
|
||||
|
||||
if task_data.enable_vae_tiling:
|
||||
pipe.enable_vae_tiling()
|
||||
if hasattr(pipe, "enable_vae_tiling"):
|
||||
pipe.enable_vae_tiling()
|
||||
else:
|
||||
pipe.disable_vae_tiling()
|
||||
if hasattr(pipe, "disable_vae_tiling"):
|
||||
pipe.disable_vae_tiling()
|
||||
|
||||
images = generate_images(context, callback=callback, **req.dict())
|
||||
user_stopped = False
|
||||
|
Loading…
Reference in New Issue
Block a user