diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-19 15:54:39 +0800 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-19 15:54:39 +0800 |
commit | 890181e1d456b613bf60f6e8378dc68b39011af9 (patch) | |
tree | 9b30b02e149ca6cc8a5d252a91d8c7a99890fb75 /modules/errors.py | |
parent | 598da5cd4928618b166886d3485ce30ce3a43490 (diff) |
Update the xformers/torch versions
Diffstat (limited to 'modules/errors.py')
-rw-r--r-- | modules/errors.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/errors.py b/modules/errors.py index 8c339464..a3498c11 100644 --- a/modules/errors.py +++ b/modules/errors.py @@ -93,8 +93,8 @@ def check_versions(): import torch
import gradio
- expected_torch_version = "2.0.0"
- expected_xformers_version = "0.0.20"
+ expected_torch_version = "2.1.0"
+ expected_xformers_version = "0.0.22.post7"
expected_gradio_version = "3.41.2"
if version.parse(torch.__version__) < version.parse(expected_torch_version):
|