Numpy/Scipy with Intel® MKL and Intel® Compilers

ID 标签 688995
已更新 11/19/2017
版本 Latest
公共

author-image

作者

NumPy/SciPy Application Note

Please note: The application notes is outdated, but keep here for reference. Instead of build Numpy/Scipy with Intel® MKL manually as below, we strongly recommend developer to use  Intel®  Distribution  for  Python* , which has prebuild Numpy/Scipy based on Intel® Math Kernel Library (Intel® MKL) and more.

Please refer to  Intel®  Distribution  for  Python* mainpage/content/www/cn/zh/develop/tools/distribution-for-python.html

Installing Intel® Distribution for Python* and Intel® Performance Libraries with Anaconda* by : /content/www/cn/zh/develop/articles/using-intel-distribution-for-python-with-anaconda.html

 

Step 1 - Overview

This guide is intended to help current NumPy/SciPy users to take advantage of Intel® Math Kernel Library (Intel® MKL). For a prebuilt ready solution, download the Intel® Distribution for Python*.

NumPy automatically maps operations on vectors and matrices to the BLAS and LAPACK functions wherever possible. Since Intel® MKL supports these de-facto interfaces, NumPy can benefit from Intel MKL optimizations through simple modifications to the NumPy scripts.

NumPy is the fundamental package required for scientific computing with Python. It consists of:

  • a powerful N-dimensional array object
  • sophisticated (broadcasting) functions
  • tools for integrating C/C++ and Fortran code
  • useful linear algebra, Fourier transform, and random number capabilities.

Besides its obvious scientific uses, NumPy can also be used as an efficient multi-dimensional container of generic data.

For more information on NumPy, please visit http://NumPy.scipy.org/

SciPy include modules for statistics, optimization, integration, linear algebra, Fourier transforms, signal and image processing, ODE solvers, and more.  The SciPy library depends on NumPy, which provides convenient and fast N-dimensional array manipulation. The SciPy library is built to work with NumPy arrays, and provides many user-friendly and efficient numerical routines such as routines for numerical integration and optimization for python users. Please refer http://www.scipy.org for more details on SciPy.

DGEMM

Version Information

This application note was created to help NumPy/SciPy users to make use of the latest versions of Intel MKL on Linux platforms.

The procedures described in this article have been tested for both Python 2.7 and Python 3.6.  These have been verified with Intel® MKL 2018, Intel® Compilers 18.0 from Intel® Parallel Studio XE 2018, numpy 1.13.3 and scipy 1.0.0rc2.

Step 2 - Downloading NumPy and SciPy Source Code

The NumPy source code can be downloaded from:

http://www.scipy.org/Download

Prerequisites

Intel® MKL is bundled with Intel® Parallel Studio XE.  If you are compiling with Intel C/C++ and Fortran Compilers, they are also included as part of any of the three (Composer, Professional and Cluster) Intel Parallel Studio XE editions, .

Step 3 - Configuration

Use the following commands to extract the NumPy tar files from the downloaded NumPy-x.x.x.tar.gz.

$gunzip numpy-x.x.x.tar.gz $tar -xvf numpy-x.x.x.tar


The above will create a directory named numpy-x.x.x

And to extract SciPy, use the below commands

$gunzip scipy-x.x.x.tar.gz $tar -xvf scipy-x.x.x.tar.gz


The scipy-x.x.x directory will be created with extracted files.

You may also get the latest numpy and scipy source from their respective github repositories.

Make sure that C++ and FORTRAN compilers are installed and they are in PATH. Also set LD_LIBRARY_PATH to your compiler (C++ and FORTRAN), and MKL libraries.

Step 4 - Building and Installing NumPy

Change directory to numpy-x.x.x
Create a site.cfg from the existing one

Edit site.cfg as follows:

Add the following lines to site.cfg in your top level NumPy directory to use Intel® MKL, if you are building on Intel 64 platform, assuming the default path for the Intel MKL installation from the Intel Parallel Studio XE or Intel Composer XE versions:

  
[mkl]
library_dirs = /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64
include_dirs = /opt/intel/compilers_and_libraries_2018/linux/mkl/include
mkl_libs = mkl_rt
lapack_libs =
      


If you are building NumPy for 32 bit, please add as the following

[mkl]
library_dirs = /opt/intel/compilers_and_libraries_2018/linux/mkl/lib/ia32
include_dirs = /opt/intel/compilers_and_libraries_2018/linux/mkl/include
mkl_libs = mkl_rt
lapack_libs = 

 

Modify self.cc_exe line in numpy/distutils/intelccompiler.py

Modify this line depending on whether you are building 32 bit or 64 bit.  For e.g: If you are building 64 bit, please modify this line part of the IntelEM64TCCompiler Class and compiler_type is 'intelem'

  
mpopt = 'openmp' if v and v < '15' else 'qopenmp'
self.cc_exe = ('icc -O3 -g -fPIC -fp-model strict -fomit-frame-pointer -xhost -{}').format(mpopt)
                      

Here we use, -O3, optimizations for speed and enables more aggressive loop transformations such as Fusion, Block-Unroll-and-Jam, and collapsing IF statements, -openmp for OpenMP threading and -xhost option tells the compiler to generate instructions for the highest SIMD instruction set available on the compilation host processor.  If you are using the ILP64 interface, please add -DMKL_ILP64 compiler flag. 

Run icc --help for more information on processor-specific options, and refer Intel Compiler documentation for more details on the various compiler flags.

Modify the the Fortran compiler configuration in numpy-x.x.x/numpy/distutil/fcompiler/intel.py to use the following compiler options for the Intel Fortran Compiler:

For ia32 and Intel64

mpopt = 'openmp' if v and v < '15' else 'qopenmp'
return ['-xhost -fp-model strict -fPIC -{}'.format(mpopt)]
         

If you are using the latest source, this is already modified in intel.py.   You may explore using other compiler optimization flags.

If you are using ILP64 interface of Intel MKL, please add -i8 flag above.  If you are using older versions of Numpy/SciPy, please refer the new intel.py for your reference from the latest version of NumPy, which can be replaced to use the above mentioned compiler options.

Compile and install NumPy with the Intel compiler: For Intel64 platforms run:

 

 
$python setup.py config --compiler=intelem build_clib --compiler=intelem build_ext --compiler=intelem install
              

and for the ia32 builds:

  
$python setup.py config --compiler=intel build_clib --compiler=intel build_ext --compiler=intel install
               

The difference is, using "intel" for ia32 and intelem" for the intel64.  

You may pass

--prefix=<install_dir> 

in case, if you want to install in a directory of your choice.   In this case, after your successful numpy build, you have to export PYTHONPATH environment variable pointing to your install folder.

$export PYTHONPATH=<install_dir>/lib64/pythonx.x/site-packages
   

Build and Install SciPy

Compile and install SciPy with the Intel Compilers, for 64 bit builds:

  
$python setup.py config --compiler=intelem --fcompiler=intelem build_clib --compiler=intelem --fcompiler=intelem build_ext --compiler=intelem --fcompiler=intelem install
               

and for the ia32 builds:

$python setup.py config --compiler=intel --fcompiler=intel build_clib --compiler=intel --fcompiler=intel build_ext --compiler=intel --fcompiler=intel install
        

Setup Library path for Intel MKL and Intel Compilers

If you build NumPY/SciPy for Intel64 bit platforms:

$export LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2018/linux/mkl/lib/intel64/:/opt/intel/compilers_and_libraries_2018/linux/lib/intel64:$LD_LIBRARY_PATH
              

If you build NumPY for ia32 bit platforms:

$export LD_LIBRARY_PATH=/opt/intel/compilers_and_libraries_2018/linux/mkl/lib/ia32/:/opt/intel/compilers_and_libraries_2018/linux/lib/ia32:$LD_LIBRARY_PATH

It is possible that LD_LIBRARY_PATH causes a problem, if you have installed Intel MKL and Intel Composer XE in other directories than the standard ones. The only solution we ha've found that always works is to build Python, NumPy and SciPy inside an environment where you've set the LD_RUN_PATH variable, e.g: for ia32 platform:

 
$export LD_RUN_PATH=/opt/intel/compilers_and_libraries_2018/linux/mkl/lib/ia32/:/opt/intel/compilers_and_libraries_2018/linux/lib/ia32:$LD_LIBRARY_PATH

 

Note:We recommend users to use arrays with 'C' ordering style which is row-major, which is default than Fortran Style which is column-major, and this is because NumPy uses CBLAS and also to get better performance.

Appendex A: Example:

Please see below an example Python script for matrix multiplication that you can use Numply installed with Intel MKL which has been provided for illustration purpose.

 

 

import numpy as np  
import time   
N = 6000  
M = 10000  
  
k_list = [64, 80, 96, 104, 112, 120, 128, 144, 160, 176, 192, 200, 208, 224, 240, 256, 384]  
  
def get_gflops(M, N, K):  
    return M*N*(2.0*K-1.0) / 1000**3  
  
np.show_config()  
  
for K in k_list:  
    a = np.array(np.random.random((M, N)), dtype=np.double, order='C', copy=False)  
    b = np.array(np.random.random((N, K)), dtype=np.double, order='C', copy=False)  
    A = np.matrix(a, dtype=np.double, copy=False)  
    B = np.matrix(b, dtype=np.double, copy=False)  
  
    C = A*B  
  
    start = time.time()  
  
    C = A*B  
    C = A*B  
    C = A*B  
    C = A*B  
    C = A*B  
  
    end = time.time()  
  
    tm = (end-start) / 5.0  
  
    print ('{0:4}, {1:9.7}, {2:9.7}'.format(K, tm, get_gflops(M, N, K) / tm))
                        
 


Appendix B: Performance Comparison

LU
 

Cholesky

SVD

Please click Examples.py to download the examples for LU, Cholesky and SVD.

Please note all the charts in this article were generated with the Intel MKL 11.1 update 1 version.

Appendix 1:

Known issues:

 

  When the -O3 or -O2(default) compiler flags (more aggressive compiler optimization flags) used for the ifort, one of the scipy tests may fail and it is a known corner case, to avoid this, as a workaround you can use -O1. 

 

Building with GNU Compiler chain:

Make modifications to MKL section in the site.cfg as mentioned above. To build numpy and scipy with Gnu compilers, in the site.cfg file, you must link with mkl_rt only and any other linking method will not work.

Export the compiler flags as:

$export CFLAGS="-fopenmp -m64 -mtune=native -O3 -Wl,--no-as-needed"
$export CXXFLAGS="-fopenmp -m64 -mtune=native -O3 -Wl,--no-as-needed"
$export LDFLAGS="-ldl -lm"
$export FFLAGS="-fopenmp -m64 -mtune=native -O3"
                      

Then run the config, build, install commands for both numpy and scipy from their respective source folders.

If you want to use GNU OpenMP instead of Intel OpenMP, you should set MKL_THREADING_LAYER=GNU.

Since both numpy and scipy has the linear algebra functions, users can call either numpy BLAS or scipy BLAS, but not both. Usage of both at the same time is not supported by MKL and may lead to crashes.

When using scipy BLAS, you must set MKL_INTERFACE_LAYER=GNU.

The above environment various MKL_THREADING_LAYER and MKL_INTERFACE_LAYER are supported only from Intel MKL 11.1 update 3 and above.

Related Link and Trouble Shooting

Building Numpy/Scipy with Intel® MKL and Intel® Compilers on Windows

"