aboutsummaryrefslogtreecommitdiffstats
path: root/webui.sh
diff options
context:
space:
mode:
Diffstat (limited to 'webui.sh')
-rwxr-xr-xwebui.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/webui.sh b/webui.sh
index 1edf921d..a35a5f35 100755
--- a/webui.sh
+++ b/webui.sh
@@ -172,7 +172,12 @@ else
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}" "$@"
+ if echo "$gpu_info" | grep -q "Navi"
+ then
+ HSA_OVERRIDE_GFX_VERSION=10.3.0 exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
+ else
+ exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
+ fi
else
exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@"
fi