aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDGdev91 <iperpido91@gmail.com>2023-04-05 23:36:27 +0000
committerDGdev91 <iperpido91@gmail.com>2023-04-05 23:36:27 +0000
commit3a5b47e26e8cb1cd640fedfe7cb5263a588d7088 (patch)
tree13878ec83e6d72402547cf66af2e7c3075fcb35e
parent22bcc7be428c94e9408f589966c2040187245d81 (diff)
downloadstable-diffusion-webui-gfx803-3a5b47e26e8cb1cd640fedfe7cb5263a588d7088.tar.gz
stable-diffusion-webui-gfx803-3a5b47e26e8cb1cd640fedfe7cb5263a588d7088.tar.bz2
stable-diffusion-webui-gfx803-3a5b47e26e8cb1cd640fedfe7cb5263a588d7088.zip
Forcing PyTorch version for AMD GPUs automatic install
The old code tries to install the newest versions of pytorch, wich is currently 2.0. Forcing it to 1.13.1
-rwxr-xr-xwebui.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/webui.sh b/webui.sh
index 8cdad22d..7d9a8538 100755
--- a/webui.sh
+++ b/webui.sh
@@ -118,7 +118,7 @@ case "$gpu_info" in
esac
if echo "$gpu_info" | grep -q "AMD" && [[ -z "${TORCH_COMMAND}" ]]
then
- export TORCH_COMMAND="pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/rocm5.2"
+ export TORCH_COMMAND="pip install torch==1.13.1+rocm5.2 torchvision==0.14.1+rocm5.2 --extra-index-url https://download.pytorch.org/whl/rocm5.2"
fi
for preq in "${GIT}" "${python_cmd}"