Files
automatic/modules/import_hook.py
T
2023-04-12 10:40:11 -04:00

7 lines
248 B
Python

import sys
from modules import shared
# this will break any attempt to import xformers which will prevent stability diffusion repo from trying to use it
if shared.opts.cross_attention_optimization != "xFormers":
sys.modules["xformers"] = None