MKL link to Numpy installed in Anaconda?

>>> numpy.__config__.show()
atlas_threads_info:
  NOT AVAILABLE
blas_opt_info:
    libraries = ['f77blas', 'cblas', 'atlas']
    library_dirs = ['/home/admin/anaconda/lib']
    define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
    language = c
atlas_blas_threads_info:
  NOT AVAILABLE
openblas_info:
  NOT AVAILABLE
lapack_opt_info:
    libraries = ['lapack', 'f77blas', 'cblas', 'atlas']
    library_dirs = ['/home/admin/anaconda/lib']
    define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
    language = f77
openblas_lapack_info:
  NOT AVAILABLE
atlas_info:
    libraries = ['lapack', 'f77blas', 'cblas', 'atlas']
    library_dirs = ['/home/admin/anaconda/lib']
    define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
    language = f77
lapack_mkl_info:
  NOT AVAILABLE
blas_mkl_info:
  NOT AVAILABLE
atlas_blas_info:
    libraries = ['f77blas', 'cblas', 'atlas']
    library_dirs = ['/home/admin/anaconda/lib']
    define_macros = [('ATLAS_INFO', '"\\"3.8.4\\""')]
    language = c
mkl_info:
  NOT AVAILABLE

This is numpy. config .show ()

And this numpy is based on Anaconda.

in / home / admin / anaconda / lib / python2.7 / site-packages / numpy

And in the meantime, I installed MKL in / opt / intel / mkl.

It also seems that I can use MKL when I used Theano with this Anaconda and this numpy.

Thanks ~

+4
source share
1 answer

Numpy site.cfg , Numpy MKL. site.cfg.example ; MKL, , .

site.cfg, python setup.py config. ( numpy.config.show()). MKL ( , site.cfg , ).

python setup.py build python setup.py install. Numpy.

Numpy OpenBLAS. , , .

0

All Articles