diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-21 07:32:58 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-21 07:32:58 +0000 |
commit | 45c46f4cb3d6924882bd944712be168c7c2f605d (patch) | |
tree | e761ff7f0d1cd7781e6c8ea0913df29b9d335cd8 /launch.py | |
parent | a8ff0139637f67af848621968f72e8e620c8e575 (diff) | |
download | stable-diffusion-webui-gfx803-45c46f4cb3d6924882bd944712be168c7c2f605d.tar.gz stable-diffusion-webui-gfx803-45c46f4cb3d6924882bd944712be168c7c2f605d.tar.bz2 stable-diffusion-webui-gfx803-45c46f4cb3d6924882bd944712be168c7c2f605d.zip |
oops
Diffstat (limited to 'launch.py')
-rw-r--r-- | launch.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ if not is_installed("torch"): run(f'"{python}" -m {torch_command}', "Installing torch", "Couldn't install torch")
if not skip_torch_cuda_test:
- run_python("import torch; assert not 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 COMMANDINE_ARGS variable to disable this check'")
if not is_installed("k_diffusion.sampling"):
run_pip(f"install {k_diffusion_package}", "k-diffusion")
|