Intel® oneAPI Math Kernel Library
Ask questions and share information with other developers who use Intel® Math Kernel Library.

MKL Libraries for Simple Application

postaquestion
Novice
364 Views
I'm currently evaluating your Intel MKL software. I'm using Visual C 6.0 and trying to create a simple program that uses "Atan" in your VML. I do not know which libraries to use and to link to create a simple application. It's not in your documentation (or difficult to find). Please advise...
0 Kudos
1 Reply
Andrey_G_Intel2
Employee
364 Views

If you plan to use VML/VSL functionality only, it`s enought (for most cases) to link your application with mkl_intel_lp64.lib, mkl_sequential.lib and mkl_core.lib. Second library (mkl_sequential.lib) mean what you will use non-threaded version of VML. If you want to use threaded version, change this library to mkl_intel_thread.lib. It`s for statical MKL linking.

If you plan to use MKLin dynamical variant or you plan to use MKL functions in your own dll, you should link your application with mkl_intel_lp64_dll.lib, mkl_sequential_dll.lib and mkl_core_dll.lib libraries.

Andrey

0 Kudos
Reply