Skip to content

Commit ebfdd7b

Browse files
Merge pull request #6709 from DaniAndTheWeb/master
Automatic setup for AMD GPUs on Linux
2 parents d97f467 + ba077e2 commit ebfdd7b

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

webui.sh

+11-1
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,15 @@ else
165165
printf "\n%s\n" "${delimiter}"
166166
printf "Launching launch.py..."
167167
printf "\n%s\n" "${delimiter}"
168-
exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
168+
gpu_info=$(lspci | grep VGA)
169+
if echo "$gpu_info" | grep -q "AMD"
170+
then
171+
if [[ -z "${TORCH_COMMAND}" ]]
172+
then
173+
export TORCH_COMMAND="pip install torch torchvision --extra-index-url https://download.pytorch.org/whl/rocm5.2"
174+
fi
175+
HSA_OVERRIDE_GFX_VERSION=10.3.0 exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
176+
else
177+
exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
178+
fi
169179
fi

0 commit comments

Comments
 (0)