TL;DR how to link ATLAS/MKL to existing Numpy without rebuilding.
I have used Numpy to calculate with the large matrix and I found that it is very slow because Numpy only use 1 core to do calculation. After doing a lot of search I figure that my Numpy does not link to some optimized library like ATLAS/MKL. Here is my config of numpy:
>>>import numpy as np
>>>np.__config__.show()
blas_info:
libraries = ['blas']
library_dirs = ['/usr/lib']
language = f77
lapack_info:
libraries = ['lapack']
library_dirs = ['/usr/lib']
language = f77
atlas_threads_info:
NOT AVAILABLE
blas_opt_info:
libraries = ['blas']
library_dirs = ['/usr/lib']
language = f77
define_macros = [('NO_ATLAS_INFO', 1)]
atlas_blas_threads_info:
NOT AVAILABLE
openblas_info:
NOT AVAILABLE
lapack_opt_info:
libraries = ['lapack', 'blas']
library_dirs = ['/usr/lib']
language = f77
define_macros = [('NO_ATLAS_INFO', 1)]
atlas_info:
NOT AVAILABLE
lapack_mkl_info:
NOT AVAILABLE
blas_mkl_info:
NOT AVAILABLE
atlas_blas_info:
NOT AVAILABLE
mkl_info:
NOT AVAILABLE
For this reason, I want to link ATLAS/MKL to Numpy. However, my Numpy is installed from PIP so I don't want to install manually because I want to use the latest version. I have done some search but they are only for building from scratch. For this reason, my question are:
- Are there any way to link ATLAS/MKL to Numpy without rebuilding again?
- I have found that the config info is saved in _config_.py in the installed folder of Numpy. So will modifying it solve my problem? If yes, would you please show me how?
Assuming you're running some flavour of linux, here's one way you could do it:
Find out what BLAS library numpy is currently linked against using
ldd
.For versions of numpy older than v1.10:
For example, if I install numpy via
apt-get
, it links toIf
_dotblas.so
doesn't exist, this probably means that numpy failed to detect any BLAS libraries when it was originally installed, in which case it simply doesn't build any of the BLAS-dependent components. This often happens if you install numpy usingpip
without manually specifying a BLAS library (see below). I'm afraid you'll have no option but to rebuild numpy if you want to link against an external BLAS library.For numpy v1.10 and newer:
_dotblas.so
has been removed from recent versions of numpy, but you should be able to check the dependencies ofmultiarray.so
instead:Install ATLAS/MKL/OpenBLAS if you haven't already. By the way, I would definitely recommend OpenBLAS over ATLAS - take a look at this answer (although the benchmarking data is now probably a bit out of date).
Use
update-alternatives
to create a symlink to the new BLAS library of your choice. For example, if you installedlibopenblas.so
into/opt/OpenBLAS/lib
, you would do:You can have multiple symlinks configured for a single target library, allowing you to manually switch between multiple installed BLAS libraries.
For example, when I call
$ sudo update-alternatives --config libblas.so.3
, I can choose between one of 3 libraries:If you really want the "newest" version of numpy, you could also take a look at my answer on compiling numpy from source with OpenBLAS integration.
Installing numpy with BLAS support using pip
As @tndoan mentioned in the comments, it's possible to make
pip
respect a particular configuration for numpy by placing a config file in~/.numpy-site.cfg
- see this answer for more details.My personal preference is to configure and build numpy by hand. It's not particularly difficult, and it gives you better control over numpy's configuration.
The answer depends on how NumPy was built initially. If it was built against BLAS and LAPACK, then at least there is no way to force
numpy.dot
to use ATLAS/MKL later without rebuilding. Other functions do not usenumpy.dot
and you can useupdate-alternatives
to change the targets of the symlinkslibblas.so.3
andliblapack.so.3
. This is becausenumpy.dot
requires ATLAS styled CBLAS, or OpenBLAS/MKL, but not the BLAS/CBLAS and LAPACK from netlib.I'm using openSUSE and I've installed the standard cblas-devel from netlib. However it seems just impossible to force NumPy to use the shipped cblas/cblas-devel. That is, if you built NumPy against netlib BLAS/LAPACK/CBLAS (as the official package), then
_dotblas.so
(which provides the BLAS version ofnumpy.dot
) cannot be built (before 1.10), ormultiarray.so
(1.10 and later) does not link tolibblas.so.3
at all. See the issue on github: https://github.com/numpy/numpy/issues/1265 and the cited Debian bug report: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=464784. Maybe someone can dive into the source code to make a patch...Anyway, it's just one function that is affected (numpy.dot
) and you can always rebuild the whole NumPy easily using the faster OpenBLAS now, so probably no big deal after all.Conclusion: You can link to ATLAS/MKL/OpenBLAS later without rebuilding, but
numpy.dot
will still be extremely slow if NumPy was not built against ATLAS/MKL/OpenBLAS initially (becausenumpy.dot
simply didn't use any BLAS in the first place and you can do nothing about that once the compiling was done).Update: Actually you can force numpy to build
_dotblas.so
. I've made a patch for numpy-1.9.2:Now that
_dotblas.so
is linked tolibblas.so.3
, you can useupdate-alternatives
to test the difference.