aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xwebui.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/webui.sh b/webui.sh
index fcba6b7d..35542ed6 100755
--- a/webui.sh
+++ b/webui.sh
@@ -168,7 +168,10 @@ else
gpu_info=$(lspci | grep VGA)
if echo "$gpu_info" | grep -q "AMD"
then
- export TORCH_COMMAND="pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/rocm5.2"
+ if [ -z ${TORCH_COMMAND+x} ]
+ then
+ export TORCH_COMMAND="pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/rocm5.2"
+ fi
HSA_OVERRIDE_GFX_VERSION=10.3.0 exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
else
exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"