visual c++ - How to set the directories for the header libraries, libraries , linker etc for intel math kernel version 10.1 -
i have older version , trying use visual c++. installer new version of intel math kernel sets dependencies ( path library, header files , linkers, etc. ), automatically. wondering if has instruction manual adjustment of directories intel math kernel?
using single dynamic library
you can simplify link line through use of intel mkl single dynamic library (sdl).
to use sdl, place libmkl_rt.so on link line. example:
icс application.c -lmkl_rt
sdl enables select interface , threading library intel mkl @ run time. default, linking sdl provides:
lp64 interface on systems based on intel® 64 architecture intel threading to use other interfaces or change threading preferences, including use of sequential version of intel mkl, need specify choices using functions or environment variables explained in section dynamically selecting interface , threading layer.
source: http://software.intel.com/sites/products/documentation/hpc/mkl/mkl_userguide_lnx/index.htm
Comments
Post a Comment