diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-07-08 14:28:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-08 14:28:04 +0000 |
commit | ed855783ed157136800869f609e5cf35072f78eb (patch) | |
tree | 981c6c6af3c613233a5a31adf36159d4cd68ea69 /webui.sh | |
parent | 386f78035ba6090582b19a3ad7a2d5b052710028 (diff) | |
parent | 9d8af4bd6aaf09b8a94dc10dd5e99c82e23dec38 (diff) | |
download | stable-diffusion-webui-gfx803-ed855783ed157136800869f609e5cf35072f78eb.tar.gz stable-diffusion-webui-gfx803-ed855783ed157136800869f609e5cf35072f78eb.tar.bz2 stable-diffusion-webui-gfx803-ed855783ed157136800869f609e5cf35072f78eb.zip |
Merge pull request #11228 from Beinsezii/dev
WEBUI.SH Navi 3 Support
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -133,6 +133,10 @@ case "$gpu_info" in ;; *"Navi 2"*) export HSA_OVERRIDE_GFX_VERSION=10.3.0 ;; + *"Navi 3"*) [[ -z "${TORCH_COMMAND}" ]] && \ + export TORCH_COMMAND="pip install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/rocm5.5" + # Navi 3 needs at least 5.5 which is only on the nightly chain + ;; *"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" |