diff options
author | C43H66N12O12S2 <36072735+C43H66N12O12S2@users.noreply.github.com> | 2022-10-10 14:51:05 +0000 |
---|---|---|
committer | AUTOMATIC1111 <16777216c@gmail.com> | 2022-10-10 16:54:07 +0000 |
commit | 3e7a981194ed9c454e951365846e4eba66fa7095 (patch) | |
tree | 5dfc0269cb1c423d0e92eb52978be27df026b65d | |
parent | 623251ce2b8d152e242011f62984a8247a14a389 (diff) | |
download | stable-diffusion-webui-gfx803-3e7a981194ed9c454e951365846e4eba66fa7095.tar.gz stable-diffusion-webui-gfx803-3e7a981194ed9c454e951365846e4eba66fa7095.tar.bz2 stable-diffusion-webui-gfx803-3e7a981194ed9c454e951365846e4eba66fa7095.zip |
remove functorch
-rw-r--r-- | modules/sd_hijack_optimizations.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/sd_hijack_optimizations.py b/modules/sd_hijack_optimizations.py index 634fb4b2..18408e62 100644 --- a/modules/sd_hijack_optimizations.py +++ b/modules/sd_hijack_optimizations.py @@ -13,8 +13,6 @@ from modules import shared if shared.cmd_opts.xformers or shared.cmd_opts.force_enable_xformers:
try:
import xformers.ops
- import functorch
- xformers._is_functorch_available = True
shared.xformers_available = True
except Exception:
print("Cannot import xformers", file=sys.stderr)
|