aboutsummaryrefslogtreecommitdiffstats
path: root/webui.py
diff options
context:
space:
mode:
authorInvincibleDude <81354513+InvincibleDude@users.noreply.github.com>2023-01-30 12:35:13 +0000
committerGitHub <noreply@github.com>2023-01-30 12:35:13 +0000
commit3ec2eb8bf12ae629c292ed0e96f199669040c5de (patch)
treefb46cb76c06f4c6a5ad4ad2ce8cd3a4577525be5 /webui.py
parent0d834b9394bb1a9dbcbdc02a3d4d24d1e6511073 (diff)
parentee9fdf7f62984dc30770fb1a73e68736b319746f (diff)
downloadstable-diffusion-webui-gfx803-3ec2eb8bf12ae629c292ed0e96f199669040c5de.tar.gz
stable-diffusion-webui-gfx803-3ec2eb8bf12ae629c292ed0e96f199669040c5de.tar.bz2
stable-diffusion-webui-gfx803-3ec2eb8bf12ae629c292ed0e96f199669040c5de.zip
Merge branch 'master' into improved-hr-conflict-test
Diffstat (limited to 'webui.py')
-rw-r--r--webui.py10
1 files changed, 9 insertions, 1 deletions
diff --git a/webui.py b/webui.py
index 0d0b8364..5b5c2139 100644
--- a/webui.py
+++ b/webui.py
@@ -52,6 +52,9 @@ else:
def check_versions():
+ if shared.cmd_opts.skip_version_check:
+ return
+
expected_torch_version = "1.13.1"
if version.parse(torch.__version__) < version.parse(expected_torch_version):
@@ -59,7 +62,10 @@ def check_versions():
You are running torch {torch.__version__}.
The program is tested to work with torch {expected_torch_version}.
To reinstall the desired version, run with commandline flag --reinstall-torch.
-Beware that this will cause a lot of large files to be downloaded.
+Beware that this will cause a lot of large files to be downloaded, as well as
+there are reports of issues with training tab on the latest version.
+
+Use --skip-version-check commandline argument to disable this check.
""".strip())
expected_xformers_version = "0.0.16rc425"
@@ -71,6 +77,8 @@ Beware that this will cause a lot of large files to be downloaded.
You are running xformers {xformers.__version__}.
The program is tested to work with xformers {expected_xformers_version}.
To reinstall the desired version, run with commandline flag --reinstall-xformers.
+
+Use --skip-version-check commandline argument to disable this check.
""".strip())