fine_diffusers / modules /import_hook.py
Harshveer's picture
Setting up stuff
1ef0db4
raw
history blame
204 Bytes
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):
sys.modules["xformers"] = None