How to check which BLAS is in my Ubuntu system?

萝らか妹 提交于 2019-12-06 00:38:13

问题


In particular, I would like to know if xianyi's OpenBLAS has been installed. I work on several PCs and had it installed in several PCs over the past couple of years, but I lost track which were not installed with it. I need to know which PC has it and which doesn't This is how I installed it:

git clone git://github.com/xianyi/OpenBLAS
cd OpenBLAS
make FC=gfortran
sudo make PREFIX=/usr/local/ install

Note: I may have deleted the OpenBLAS directory, so it's not a reliable indicator. And I have no idea how to uninstall it, so I can't try installing it on every PC and then uninstall selectively (which is pretty cumbersome).


回答1:


In include dir there is openblas_config.h You can find openblas version there. i.e.

grep OPENBLAS_VERSION /usr/local/include/openblas_config.h 


来源:https://stackoverflow.com/questions/27186638/how-to-check-which-blas-is-in-my-ubuntu-system

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!