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

How can I create custom mkl static libraries??

newton_particle
Beginner
1,270 Views

I remember reading somewhere on the Intel site that, since mkl v.10.x, it is possible to generate custom static libraries.

Does anyone know how this can be achieved?? (I could not see any details, scanning through the user guide).

For example, if (for whatever reason) I simply wanted to create a tiny static library that contained a single threaded x86 version of vzmul(); how could this be created??


Newton
--------

0 Kudos
1 Solution
Andrey_Bespalov
New Contributor I
1,270 Views

Create custom DLL with map file. Use the map file to create list of required object files. Extract required object files from the libraries. Create the static library from the files.

View solution in original post

0 Kudos
3 Replies
sspine
Beginner
1,270 Views

I can not find any information from MKL's document on how to create custom static library. They provide a way to create custom shared library. But I'm not sure on this point. I also expect expert from Intel to answer your question. But sometimes they tend to ignore difficult questions from the customers.

0 Kudos
Andrey_Bespalov
New Contributor I
1,271 Views

Create custom DLL with map file. Use the map file to create list of required object files. Extract required object files from the libraries. Create the static library from the files.

0 Kudos
newton_particle
Beginner
1,270 Views

Create custom DLL with map file. Use the map file to create list of required object files. Extract required object files from the libraries. Create the static library from the files.

Awesome! thx :)

Newton
--------

0 Kudos
Reply