Numpy in my computer is quite slow and I am suspecting that it is not using BLAS or LAPACK. When I run numpy.config.show(), I get the following output:
atlas_threads_info:
NOT AVAILABLE
blas_opt_info:
libraries = ['f77blas', 'cblas', 'atlas']
library_dirs = ['C:\\local\\lib\\atlas\\sse3']
define_macros = [('NO_ATLAS_INFO', -1)]
language = c
atlas_blas_threads_info:
NOT AVAILABLE
lapack_opt_info:
libraries = ['lapack', 'f77blas', 'cblas', 'atlas']
library_dirs = ['C:\\local\\lib\\atlas\\sse3']
define_macros = [('NO_ATLAS_INFO', -1)]
language = f77
atlas_info:
libraries = ['lapack', 'f77blas', 'cblas', 'atlas']
library_dirs = ['C:\\local\\lib\\atlas\\sse3']
define_macros = [('NO_ATLAS_INFO', -1)]
language = f77
lapack_mkl_info:
NOT AVAILABLE
blas_mkl_info:
NOT AVAILABLE
atlas_blas_info:
libraries = ['f77blas', 'cblas', 'atlas']
library_dirs = ['C:\\local\\lib\\atlas\\sse3']
define_macros = [('NO_ATLAS_INFO', -1)]
language = c
mkl_info:
NOT
The problem is that those library directories do not exist on my computer. I have no idea how those directories have sneaked in to the numpy config. Is there anyway to change a setting so that numpy can use the optimized BLAS and LAPACK after being installed? Or, should I re-install it?