diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-04-29 11:09:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-29 11:09:45 +0000 |
commit | 967fb51df2cbe7ff6b8408c788c180b411e7f828 (patch) | |
tree | 696cd8e6a6f0991346194938c563eed340f003e5 /webui.sh | |
parent | 9edd4b6e516ec327e15cc00a3933c681fc4b2f75 (diff) | |
parent | fdac48683595699189aa84f8c1bea7b3bf718801 (diff) | |
download | stable-diffusion-webui-gfx803-967fb51df2cbe7ff6b8408c788c180b411e7f828.tar.gz stable-diffusion-webui-gfx803-967fb51df2cbe7ff6b8408c788c180b411e7f828.tar.bz2 stable-diffusion-webui-gfx803-967fb51df2cbe7ff6b8408c788c180b411e7f828.zip |
Merge branch 'dev' into master
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -23,7 +23,7 @@ fi # Install directory without trailing slash if [[ -z "${install_dir}" ]] then - install_dir="/home/$(whoami)" + install_dir="${HOME}" fi # Name of the subdirectory (defaults to stable-diffusion-webui) @@ -113,11 +113,12 @@ case "$gpu_info" in 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" printf "\n%s\n" "${delimiter}" ;; - *) + *) ;; esac if echo "$gpu_info" | grep -q "AMD" && [[ -z "${TORCH_COMMAND}" ]] then + # AMD 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" fi @@ -172,15 +173,30 @@ else exit 1 fi +# Try using TCMalloc on Linux +prepare_tcmalloc() { + if [[ "${OSTYPE}" == "linux"* ]] && [[ -z "${NO_TCMALLOC}" ]] && [[ -z "${LD_PRELOAD}" ]]; then + TCMALLOC="$(ldconfig -p | grep -Po "libtcmalloc.so.\d" | head -n 1)" + if [[ ! -z "${TCMALLOC}" ]]; then + echo "Using TCMalloc: ${TCMALLOC}" + export LD_PRELOAD="${TCMALLOC}" + else + printf "\e[1m\e[31mCannot locate TCMalloc (improves CPU memory usage)\e[0m\n" + fi + fi +} + if [[ ! -z "${ACCELERATE}" ]] && [ ${ACCELERATE}="True" ] && [ -x "$(command -v accelerate)" ] then printf "\n%s\n" "${delimiter}" printf "Accelerating launch.py..." printf "\n%s\n" "${delimiter}" + prepare_tcmalloc exec accelerate launch --num_cpu_threads_per_process=6 "${LAUNCH_SCRIPT}" "$@" else printf "\n%s\n" "${delimiter}" printf "Launching launch.py..." - printf "\n%s\n" "${delimiter}" + printf "\n%s\n" "${delimiter}" + prepare_tcmalloc exec "${python_cmd}" "${LAUNCH_SCRIPT}" "$@" fi |