conda-forge/openblas-feedstock

Request: Please create version with `make USE_OPENMP=1`

Closed this issue ยท 4 comments

Is there a way to fix this via conda installation? I can't seem to get this to work.

Essnentially, I'm asking if there is a precompiled version I can install via conda that has USE_OPENMP=1?

I've posted a question on StackOverflow but I haven't gotten any bites:
https://stackoverflow.com/questions/57257712/how-to-fix-openblas-warning-detect-openmp-loop-and-this-application-may-hang

If I do a separate install via this post I fear that my conda environment will break.

These GitHub issues might help:
BinPro/CONCOCT#232
bxlab/metaWRAP#168

Done. conda install libopenblas=*=*openmp*

For those who landed here and can not find the package during installation, try:

conda install libopenblas=*=*openmp* --channel conda-forge

Hi, I got this error: zsh: no matches found: libopenblas=*=*openmp*.
Am I supposed to replace teh * with something else?

Thanks!

@Zepeng-Mu would place single quotes (') around it. The shell is trying to interpret the * before they are passed to conda, which we don't want it to do. Placing it in single quotes will keep the shell from touching it.