From 8af421d53a752b1d123de20b49cd8825b29233b6 Mon Sep 17 00:00:00 2001 From: layerdiffusion <19834515+lllyasviel@users.noreply.github.com> Date: Sun, 11 Aug 2024 15:55:07 -0700 Subject: [PATCH] remove old codes --- modules/import_hook.py | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/modules/import_hook.py b/modules/import_hook.py index eba9a372..f0197ffa 100644 --- a/modules/import_hook.py +++ b/modules/import_hook.py @@ -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...