Alex

Results 25 comments of Alex

> Hi @LynxPDA ! > > Could you please explain a bit what options does and how to tweak for other CPU capabilities? > > Thx Hi, @devingfx Certainly, ----...

> Hi, thx for this quick reply! > > After more in depth reading, there is a typo on line ending: > > ```shell > dirty_decay_ms: 60000,muzzy_decay_ms:> > ``` >...

> Is the intel-mkl package needed for non-intel CPU? Yes, intel-mkl can work with AMD processor too. However, it is quite large. You can try installing it separately. If I'm...

> Another subject: > > Did you get ControlNet to work on CPU? Looks like preprocessors are using GPU (I have a cuda out of memory error) despite the --use-cpu...

> ERROR: ld.so: object Regarding: `ERROR: ld.so: object '/usr/lib/x86_64-linux-gnu/libiomp5.so' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.` Yes, please make sure that the library is available in...

> Hi, thanks for your optimizations ! I went from 30s/it to about 13s/it on my i7-1260P. But I have the feeling there is still space for improvement on my...

> Hi all! > > On my side I could not get everthing working on CPU, I have got CUDA out of memory errors really often (even if it should...

> @LynxPDA When I updated this repository to version 1.7, the method failed and could not accelerate normally. Do you have this problem? No, unfortunately there is no way to...

@lalala-233 Please check that libjemalloc.so and libiomp5.so are installed and located at the specified addresses. Perhaps in Arch Linux their location is different from Ubuntu.

@lalala-233 You can also try changing the launch code: ``` export OMP_NUM_THREADS=4 export MKL_NUM_THREADS=4 export LD_PRELOAD="/usr/lib/libjemalloc.so /opt/intel/oneapi/lib/intel64/libiomp5.so" export MALLOC_CONF="oversize_threshold:1,background_thread:true,metadata_thp:auto,dirty_decay_ms:60000,muzzy_decay_ms:60000" echo $LD_PRELOAD ldd ./webui.sh --use-cpu all --skip-torch-cuda-test --no-half --precision autocast --opt-split-attention...