mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
Only set TORCH_COMMAND if wasn't set webui-user
This commit is contained in:
parent
c4ba34928e
commit
2e172cf831
5
webui.sh
5
webui.sh
@ -168,7 +168,10 @@ else
|
|||||||
gpu_info=$(lspci | grep VGA)
|
gpu_info=$(lspci | grep VGA)
|
||||||
if echo "$gpu_info" | grep -q "AMD"
|
if echo "$gpu_info" | grep -q "AMD"
|
||||||
then
|
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}" "$@"
|
HSA_OVERRIDE_GFX_VERSION=10.3.0 exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
|
||||||
else
|
else
|
||||||
exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
|
exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user