diff options
author | DGdev91 <iperpido91@gmail.com> | 2023-06-06 08:03:20 +0000 |
---|---|---|
committer | DGdev91 <iperpido91@gmail.com> | 2023-06-06 08:03:20 +0000 |
commit | 864676880104fb42b8d78ce8a74dc0b735e8e9b3 (patch) | |
tree | 23c94b68ffa46e3af91be88ab2b8d289e0c7ec6f | |
parent | 95d4d650d4f42a6fca94495fe9a1d0e471c92607 (diff) | |
download | stable-diffusion-webui-gfx803-864676880104fb42b8d78ce8a74dc0b735e8e9b3.tar.gz stable-diffusion-webui-gfx803-864676880104fb42b8d78ce8a74dc0b735e8e9b3.tar.bz2 stable-diffusion-webui-gfx803-864676880104fb42b8d78ce8a74dc0b735e8e9b3.zip |
Write "RX 5000 Series" instead of "Navi" in err
-rwxr-xr-x | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -122,7 +122,7 @@ case "$gpu_info" in # Navi users will still use torch 1.13 because 2.0 does not seem to work. export TORCH_COMMAND="pip install torch==1.13.1+rocm5.2 torchvision==0.14.1+rocm5.2 --index-url https://download.pytorch.org/whl/rocm5.2" else - printf "\e[1m\e[31mERROR: Navi GPUs must be using at max python 3.10, aborting...\e[0m" + printf "\e[1m\e[31mERROR: RX 5000 series GPUs must be using at max python 3.10, aborting...\e[0m" exit 1 fi ;; |