stable-diffusion-webui/modules/import_hook.py

6 lines
204 B
Python
Raw Normal View History

2022-12-16 05:43:09 -07:00
import sys
# this will break any attempt to import xformers which will prevent stability diffusion repo from trying to use it
if "--xformers" not in "".join(sys.argv):
2022-12-23 20:17:21 -07:00
sys.modules["xformers"] = None