conda-forge / openblas-feedstock

A conda-smithy repository for openblas.
BSD 3-Clause "New" or "Revised" License
9 stars 38 forks source link

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

Closed jolespin closed 4 years ago

jolespin commented 5 years ago

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: https://github.com/BinPro/CONCOCT/issues/232 https://github.com/bxlab/metaWRAP/issues/168

isuruf commented 4 years ago

Done. conda install libopenblas=*=*openmp*

LucasMS commented 3 years ago

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

conda install libopenblas=*=*openmp* --channel conda-forge
Zepeng-Mu commented 2 years ago

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

Thanks!

jakirkham commented 2 years ago

@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.