繁体   English   中英

无法使用英特尔 MKL 安装 Scipy

[英]Can't install Scipy with Intel MKL

我使用英特尔 MKL 从源代码成功安装了 Numpy“numpy-1.12.0.dev0+1380fdd-py2.7-linux-x86_64.egg”(主要遵循https://software.intel.com/en-us/的说明) 文章/numpyscipy-with-intel-mkl )。 numpy.show_config()显示以下内容:

Python 2.7.10 (default, Sep  8 2015, 17:20:17) 
[GCC 5.1.1 20150618 (Red Hat 5.1.1-4)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import numpy
>>> numpy.show_config()
lapack_opt_info:
    libraries = ['mkl_rt', 'pthread']
    library_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/lib/intel64']
    define_macros = [('SCIPY_MKL_H', None), ('HAVE_CBLAS', None)]
    include_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/include']
blas_opt_info:
    libraries = ['mkl_rt', 'pthread']
    library_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/lib/intel64']
    define_macros = [('SCIPY_MKL_H', None), ('HAVE_CBLAS', None)]
    include_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/include']
lapack_mkl_info:
    libraries = ['mkl_rt', 'pthread']
    library_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/lib/intel64']
    define_macros = [('SCIPY_MKL_H', None), ('HAVE_CBLAS', None)]
    include_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/include']
blas_mkl_info:
    libraries = ['mkl_rt', 'pthread']
    library_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/lib/intel64']
    define_macros = [('SCIPY_MKL_H', None), ('HAVE_CBLAS', None)]
    include_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/include']
mkl_info:
    libraries = ['mkl_rt', 'pthread']
    library_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/lib/intel64']
    define_macros = [('SCIPY_MKL_H', None), ('HAVE_CBLAS', None)]
    include_dirs = ['/opt/intel/compilers_and_libraries_2016.1.150/linux/mkl/include']

numpy.test()也能正常工作:

>>> numpy.test()
Running unit tests for numpy
NumPy version 1.12.0.dev0+1380fdd
NumPy relaxed strides checking option: True
NumPy is installed in /usr/lib64/python2.7/site-packages/numpy-1.12.0.dev0+1380fdd-py2.7-linux-x86_64.egg/numpy
Python version 2.7.10 (default, Sep  8 2015, 17:20:17) [GCC 5.1.1 20150618 (Red Hat 5.1.1-4)]
nose version 1.3.7
[....................SKIP..........................]
----------------------------------------------------------------------
Ran 5855 tests in 51.180s

OK (KNOWNFAIL=6, SKIP=8)
<nose.result.TextTestResult run=5855 errors=0 failures=0>

但由于某种原因,我无法通过python setup.py config --compiler=intelem --fcompiler=intelem build_clib --compiler=intelem --fcompiler=intelem build_ext --compiler=intelem --fcompiler=intelem install从源代码安装 Scipy python setup.py config --compiler=intelem --fcompiler=intelem build_clib --compiler=intelem --fcompiler=intelem build_ext --compiler=intelem --fcompiler=intelem install也不是通过pip install scipy 从源我收到以下错误:

RuntimeError: Running cythonize failed!

检查cython:

cython -V
Cython version 0.23

通过 pip 安装它导致:

Command "/usr/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-ticToS/scipy/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-qnZ8HE-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-ticToS/scipy/

知道我做错了什么吗?

我的操作系统是 Thinkpad T450s 上的 Fedora 23。 一个附带问题是,我也认识到numpy.test()在不使用英特尔 MKL 的情况下要快得多。 对此有什么解释吗?

非常感谢。

安装redhat-rpm-config ,通过 groupinstall 'Development Tools'解决了这个问题。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM