diff options
author | Åsmund Hjulstad <ahju@statoil.com> | 2015-02-09 12:57:21 +0100 |
---|---|---|
committer | Åsmund Hjulstad <ahju@statoil.com> | 2015-02-09 13:35:39 +0100 |
commit | 5e3f9bde26013cce1c5dce1b9b20e5e9a3100c68 (patch) | |
tree | be74e0f33d79d1aa567616be7ad68ca617fc6572 /site.cfg.example | |
parent | 0faf6d68e1b15eaf87b0717024544269a4d66564 (diff) | |
download | numpy-5e3f9bde26013cce1c5dce1b9b20e5e9a3100c68.tar.gz |
DOC: Added MKL win-64 settings to site.cfg example
Added MKL settings for Intel Fortran Composer.
In addition, changed link to ConfigParser documentation.
Diffstat (limited to 'site.cfg.example')
-rw-r--r-- | site.cfg.example | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/site.cfg.example b/site.cfg.example index 4a59f10e2..cc92edb59 100644 --- a/site.cfg.example +++ b/site.cfg.example @@ -9,7 +9,7 @@ # The format of the file is that of the standard library's ConfigParser module. # -# http://www.python.org/doc/current/lib/module-ConfigParser.html +# http://docs.python.org/3/library/configparser.html # # Each section defines settings that apply to one particular dependency. Some of # the settings are general and apply to nearly any section and are defined here. @@ -118,6 +118,15 @@ # library_dirs = /opt/intel/mkl/10.0.1.014/lib/32/ # lapack_libs = mkl_lapack # mkl_libs = mkl, guide +# +# On win-64, the following options compiles numpy with the MKL library +# dynamically linked. +# [mkl] +# include_dirs = C:\Program Files (x86)\Intel\Composer XE 2015\mkl\include +# library_dirs = C:\Program Files (x86)\Intel\Composer XE 2015\mkl\lib\intel64 +# mkl_libs = mkl_core_dll, mkl_intel_lp64_dll, mkl_intel_thread_dll +# lapack_libs = mkl_lapack95_lp64 + # UMFPACK # ------- |