We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87b0ac9 commit 783e190Copy full SHA for 783e190
ai_diffusion/workflow.py
@@ -1537,6 +1537,9 @@ def prepare(
1537
if minfo.arch.is_qwen_like and minfo.quantization is Quantization.svdq:
1538
i.batch_count = 1 # Nunchaku Qwen is broken with batch size > 1 #2114
1539
1540
+ if arch is Arch.sdxl and i.inpaint and i.inpaint.use_inpaint_model:
1541
+ i.models.dynamic_caching = False # inpaint model incompatible with dynamic caching
1542
+
1543
i.batch_count = 1 if is_live else i.batch_count
1544
i.nsfw_filter = settings.nsfw_filter
1545
return i
0 commit comments