Files
automatic/modules/import_hook.py
T
Vladimir Mandic 4f2b7268ca venv fixes
2023-04-13 07:24:26 -04:00

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