From 119df4c7754b9d8fce7aed7be93e9342e27ee19a Mon Sep 17 00:00:00 2001 From: Jason Lethbridge Date: Fri, 21 Nov 2025 06:13:04 +0000 Subject: [PATCH] Added experimental AMD Strix Halo ROCm support --- webui.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/webui.sh b/webui.sh index 89dae163a82..07ec3961a6a 100755 --- a/webui.sh +++ b/webui.sh @@ -155,6 +155,9 @@ case "$gpu_info" in *"Navi 3"*) [[ -z "${TORCH_COMMAND}" ]] && \ export TORCH_COMMAND="pip install torch torchvision --index-url https://download.pytorch.org/whl/nightly/rocm5.7" ;; + *"Strix Halo"*) export HSA_OVERRIDE_GFX_VERSION=11.5.1 + export TORCH_COMMAND="pip install torch torchvision --index-url https://download.pytorch.org/whl/nightly/rocm7.1" + ;; *"Renoir"*) export HSA_OVERRIDE_GFX_VERSION=9.0.0 printf "\n%s\n" "${delimiter}" printf "Experimental support for Renoir: make sure to have at least 4GB of VRAM and 10GB of RAM or enable cpu mode: --use-cpu all --no-half"