mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-01-26 19:09:45 +00:00
remove old codes
This commit is contained in:
@@ -1,16 +1,16 @@
|
||||
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
|
||||
|
||||
# Hack to fix a changed import in torchvision 0.17+, which otherwise breaks
|
||||
# basicsr; see https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/13985
|
||||
try:
|
||||
import torchvision.transforms.functional_tensor # noqa: F401
|
||||
except ImportError:
|
||||
try:
|
||||
import torchvision.transforms.functional as functional
|
||||
sys.modules["torchvision.transforms.functional_tensor"] = functional
|
||||
except ImportError:
|
||||
pass # shrug...
|
||||
# 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
|
||||
#
|
||||
# # Hack to fix a changed import in torchvision 0.17+, which otherwise breaks
|
||||
# # basicsr; see https://github.com/AUTOMATIC1111/stable-diffusion-webui/issues/13985
|
||||
# try:
|
||||
# import torchvision.transforms.functional_tensor # noqa: F401
|
||||
# except ImportError:
|
||||
# try:
|
||||
# import torchvision.transforms.functional as functional
|
||||
# sys.modules["torchvision.transforms.functional_tensor"] = functional
|
||||
# except ImportError:
|
||||
# pass # shrug...
|
||||
|
||||
Reference in New Issue
Block a user