diff options
author | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-26 09:32:52 +0000 |
---|---|---|
committer | Kohaku-Blueleaf <59680068+KohakuBlueleaf@users.noreply.github.com> | 2023-11-26 09:32:52 +0000 |
commit | 3d341ebc7dcb44df3b4c013b3805c08d8a35e24a (patch) | |
tree | 3152f9087cdb2a9b48310aca3189d8cc235ffa51 /webui.sh | |
parent | 40ac134c553ac824d4a96666bba14d550300daa5 (diff) | |
parent | e44103264d95a2141410571661c757a65f22a8b6 (diff) | |
download | stable-diffusion-webui-gfx803-3d341ebc7dcb44df3b4c013b3805c08d8a35e24a.tar.gz stable-diffusion-webui-gfx803-3d341ebc7dcb44df3b4c013b3805c08d8a35e24a.tar.bz2 stable-diffusion-webui-gfx803-3d341ebc7dcb44df3b4c013b3805c08d8a35e24a.zip |
Merge branch 'dev' into test-fp8
Diffstat (limited to 'webui.sh')
-rwxr-xr-x | webui.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -89,7 +89,7 @@ delimiter="################################################################" printf "\n%s\n" "${delimiter}" printf "\e[1m\e[32mInstall script for stable-diffusion + Web UI\n" -printf "\e[1m\e[34mTested on Debian 11 (Bullseye)\e[0m" +printf "\e[1m\e[34mTested on Debian 11 (Bullseye), Fedora 34+ and openSUSE Leap 15.4 or newer.\e[0m" printf "\n%s\n" "${delimiter}" # Do not run as root @@ -223,7 +223,7 @@ fi # Try using TCMalloc on Linux prepare_tcmalloc() { if [[ "${OSTYPE}" == "linux"* ]] && [[ -z "${NO_TCMALLOC}" ]] && [[ -z "${LD_PRELOAD}" ]]; then - TCMALLOC="$(PATH=/usr/sbin:$PATH ldconfig -p | grep -Po "libtcmalloc(_minimal|)\.so\.\d" | head -n 1)" + TCMALLOC="$(PATH=/sbin:$PATH ldconfig -p | grep -Po "libtcmalloc(_minimal|)\.so\.\d" | head -n 1)" if [[ ! -z "${TCMALLOC}" ]]; then echo "Using TCMalloc: ${TCMALLOC}" export LD_PRELOAD="${TCMALLOC}" |