diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-27 17:54:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 17:54:50 +0000 |
commit | ca358c14512a7d31846f9aea3a1c46e4a8e972d8 (patch) | |
tree | f4ec1ff8daf3f96c896d380f523d37c24df90ab5 /launch.py | |
parent | ada901ed661a717c44281d640b8fc0a275d4cb48 (diff) | |
parent | b8bb14960a55e08a2c69f2d17b129b33e7ae3632 (diff) | |
download | stable-diffusion-webui-gfx803-ca358c14512a7d31846f9aea3a1c46e4a8e972d8.tar.gz stable-diffusion-webui-gfx803-ca358c14512a7d31846f9aea3a1c46e4a8e972d8.tar.bz2 stable-diffusion-webui-gfx803-ca358c14512a7d31846f9aea3a1c46e4a8e972d8.zip |
Merge pull request #1170 from offshore/patch-1
Fix COMMANDINE_ARGS -> COMMANDLINE_ARGS
Diffstat (limited to 'launch.py')
-rw-r--r-- | launch.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ if not is_installed("torch") or not is_installed("torchvision"): run(f'"{python}" -m {torch_command}', "Installing torch and torchvision", "Couldn't install torch")
if not skip_torch_cuda_test:
- run_python("import torch; assert torch.cuda.is_available(), 'Torch is not able to use GPU; add --skip-torch-cuda-test to COMMANDINE_ARGS variable to disable this check'")
+ run_python("import torch; assert torch.cuda.is_available(), 'Torch is not able to use GPU; add --skip-torch-cuda-test to COMMANDLINE_ARGS variable to disable this check'")
if not is_installed("k_diffusion.sampling"):
run_pip(f"install {k_diffusion_package}", "k-diffusion")
|