diff options
author | wangshuai09 <391746016@qq.com> | 2024-01-27 09:21:32 +0000 |
---|---|---|
committer | wangshuai09 <391746016@qq.com> | 2024-01-29 11:25:06 +0000 |
commit | ec124607f47371a6cfd61a795f86a7f1cbd44651 (patch) | |
tree | d60205d2f58c80a0cc0bb8a079b9f33e7bc93f53 /webui.sh | |
parent | cf2772fab0af5573da775e7437e6acdca424f26e (diff) | |
download | stable-diffusion-webui-gfx803-ec124607f47371a6cfd61a795f86a7f1cbd44651.tar.gz stable-diffusion-webui-gfx803-ec124607f47371a6cfd61a795f86a7f1cbd44651.tar.bz2 stable-diffusion-webui-gfx803-ec124607f47371a6cfd61a795f86a7f1cbd44651.zip |
Add NPU Support
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -159,6 +159,10 @@ then if echo "$gpu_info" | grep -q "AMD" && [[ -z "${TORCH_COMMAND}" ]] then export TORCH_COMMAND="pip install torch==2.0.1+rocm5.4.2 torchvision==0.15.2+rocm5.4.2 --index-url https://download.pytorch.org/whl/rocm5.4.2" + elif echo "$gpu_info" | grep -q "Huawei" && [[ -z "${TORCH_COMMAND}" ]] + then + export TORCH_COMMAND="pip install torch==2.1.0 torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu; pip install torch_npu" + fi fi |