mirror of
https://github.com/vladmandic/automatic
synced 2026-08-28 08:00:59 +02:00
7 lines
246 B
Python
7 lines
246 B
Python
import sys
|
|
from modules.shared import opts
|
|
|
|
# this will break any attempt to import xformers which will prevent stability diffusion repo from trying to use it
|
|
if opts.cross_attention_optimization != "xFormers":
|
|
sys.modules["xformers"] = None
|