Closed TingTingShao closed 6 months ago
BTW, I tried with solutions suggested here:
https://stackoverflow.com/questions/75619847/python-sklearn-openblas-error-for-kmeans
but nothing worked for me.
You can set those variables before running pycistopic (or python):
export OPENBLAS_NUM_THREADS="8"
pycistopic command
For example on HPC I have set the following in my ~/.bashrc
, so everything that uses Intel math library or OpenBlas does not use all cores (some python or R library) as in general above 8 threads does not give much speedup anymore (most of the time the speed stays the same, but the CPU usage is higher):
# Restrict Intel math library to max 8 threads.
export MKL_NUM_THREADS=8
# Restrict OpenBlas library to max 8 threads.
export OMP_NUM_THREADS=8
# Restrict Polars to max 8 threads.
export POLARS_MAX_THREADS=8
Thanks, it worked.
TingTing
Hi,
I reinstalled the package as follows:
But there is always a warning when I do the dimension reduction with cistopic, target cell, and the topic binarization step. With this warning, the process seems stopped.
I canceled the job, and tried to rerun, and it showed the incomplete-job error, so I thought it might be running. I let the job run again for another 10 hours, but it still stopped at
No process at all, could you help me with this?
Thanks tingting