s0md3v / sd-webui-roop

roop extension for StableDiffusion web-ui
GNU Affero General Public License v3.0
3.36k stars 857 forks source link

src/tcmalloc.cc:284] Attempt to free invalid pointer 0x11dc32080 #192

Open lewis-v opened 1 year ago

lewis-v commented 1 year ago

When the roop was executed, it crashed

src/tcmalloc.cc:284] Attempt to free invalid pointer 0x11dc32080

lzj9072 commented 1 year ago

same problem

miiiz commented 1 year ago

same problem

lewis-v commented 1 year ago
export NO_TCMALLOC="True"

Set this up and it's working fine for now

miiiz commented 1 year ago

I tried add export LD_PRELOAD="/usr/lib64/libjemalloc.so.1" in webui-user.sh and it worked.

martinbandung commented 1 year ago
export NO_TCMALLOC="True"

Set this up and it's working fine for now

I try this. i see in the console, it already 100% progress, however, in the webui it doesnt show any sign of success. in addition, it always download buffalo_l.zip

UPDATE: Solved by manually download zip buffalo_l and extract it, i guess i had no change to the tcmalloc option

lingfengchencn commented 1 year ago

I tried to add export LD_PRELOAD="/usr/lib64/libjemalloc.so.1" in sh. and download a buffalo_l.zip

Downloading /root/.insightface/models/buffalo_l.zip from https://github.com/deepinsight/insightface/releases/download/v0.7/buffalo_l.zip..

unzip to
.insightface/models/buffalo_l/

nivance commented 8 months ago

My environment is centos7, just install jemalloc, the following are the steps

Install jemalloc (https://support.sentieon.com/appnotes/jemalloc/) Execute in centos7.x

yum install epel-release
yum install jemalloc

Add in env

export LD_PRELOAD="/usr/lib64/libjemalloc.so.1"