fix: xformers

This commit is contained in:
Akiba
2022-12-16 20:43:09 +08:00
parent 685f9631b5
commit 35e1017e3e
2 changed files with 19 additions and 0 deletions

18
modules/import_hook.py Normal file
View File

@@ -0,0 +1,18 @@
import builtins
import sys
old_import = builtins.__import__
IMPORT_BLACKLIST = []
if "xformers" not in "".join(sys.argv):
IMPORT_BLACKLIST.append("xformers")
def import_hook(*args, **kwargs):
if args[0] in IMPORT_BLACKLIST:
raise ImportError("Import of %s is blacklisted" % args[0])
return old_import(*args, **kwargs)
builtins.__import__ = import_hook