JobNick
JobNick

Reputation: 503

MKL init when static linking MKL

I know that when you statically link against IPP one should call ippInit() before using any IPP's function. Do you have to do the same when linking statically against MKL ? If so what is the function name to init MKL ?

Upvotes: 1

Views: 1403

Answers (2)

Gennady.F
Gennady.F

Reputation: 581

regarding to IPP - actually, since the last two versions, you don't need to call IppInit function. IPP dispatches the code automatically.

Upvotes: 0

Andy Donzelli
Andy Donzelli

Reputation: 89

No, you shouldn't need to call a function like that to initialize MKL. Simply including the header, and then calling the MKL function(s) that you require should be enough.

If you're still struggling to get the static linking to work correctly, look here to get the compiler and linker to work correctly. Good luck!

Upvotes: 0

Related Questions