diff options
author | DaniAndTheWeb <57776841+DaniAndTheWeb@users.noreply.github.com> | 2023-01-14 22:19:52 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-14 22:19:52 +0000 |
commit | ba077e2110cab891a46d14665fb161ce0669f31e (patch) | |
tree | c1fdcdbf8d74ad16f00e67bd7c2c804af75cece0 /webui.sh | |
parent | 2e172cf831a928223e93803b94896325bd4c22a7 (diff) | |
download | stable-diffusion-webui-gfx803-ba077e2110cab891a46d14665fb161ce0669f31e.tar.gz stable-diffusion-webui-gfx803-ba077e2110cab891a46d14665fb161ce0669f31e.tar.bz2 stable-diffusion-webui-gfx803-ba077e2110cab891a46d14665fb161ce0669f31e.zip |
Fix TORCH_COMMAND check
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -168,7 +168,7 @@ else gpu_info=$(lspci | grep VGA) if echo "$gpu_info" | grep -q "AMD" then - if [ -z ${TORCH_COMMAND+x} ] + if [[ -z "${TORCH_COMMAND}" ]] then export TORCH_COMMAND="pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/rocm5.2" fi |