"src/diffusers/models/controlnets/controlnet_flax.py" did not exist on "8b0be9359667c794e77b4378f2c4736af9e2eda8"
Unverified Commit fb915bd1 authored by Lianmin Zheng's avatar Lianmin Zheng Committed by GitHub
Browse files

Disable overlap scheduler for multimodal models (#2235)

parent 09798b36
......@@ -170,6 +170,10 @@ class Scheduler:
self.enable_overlap = False
logger.info("Overlap scheduler is disabled for embedding models.")
if self.model_config.is_multimodal:
self.enable_overlap = False
logger.info("Overlap scheduler is disabled for multimodal models.")
if self.enable_overlap:
self.disable_jump_forward = True
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment