diff options
author | DaniAndTheWeb <57776841+DaniAndTheWeb@users.noreply.github.com> | 2023-01-19 19:05:49 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 19:05:49 +0000 |
commit | 36364bd76c4634820e08070a287f0a5ad27c35f6 (patch) | |
tree | bfcd696832178737cc65be40d526b646d0216663 /webui.sh | |
parent | 48045545d9a3f174621a62086812d9bbfb3ce1c2 (diff) | |
download | stable-diffusion-webui-gfx803-36364bd76c4634820e08070a287f0a5ad27c35f6.tar.gz stable-diffusion-webui-gfx803-36364bd76c4634820e08070a287f0a5ad27c35f6.tar.bz2 stable-diffusion-webui-gfx803-36364bd76c4634820e08070a287f0a5ad27c35f6.zip |
GFX env just for RDNA 1 and 2
This commit specifies which GPUs should use the GFX variable, RDNA 3 is excluded since it uses a newer GFX version
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -105,7 +105,7 @@ fi # Check prerequisites gpu_info=$(lspci 2>/dev/null | grep VGA) -if echo "$gpu_info" | grep -q "Navi" +if echo "$gpu_info" | grep -qE "Navi (1|2)" then export HSA_OVERRIDE_GFX_VERSION=10.3.0 fi |