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

Is MKL geo-dependent library?

dmitry_k
Novice
650 Views

I use MKL from C++ Compiler 11.1.054 Professional Edition for Windows package. I used vdCos function. When I try to run my application at Windows XP with Russian region standards settings it crushed with message:

OMP: Warning #2: Cannot open message catalog "1049\\libiomp5ui.dll":

OMP: System error #126: .

OMP: Info #3: Default messages will be used.

If I change region standards to US English, then application works good. Test case is very simple:

#include "mkl.h"

#define N 10000

int main(int argc, char **argv)

{

int i = N;

double arg,res;

for(i = 0; i

{

arg = 0.01*i;

}

vdCos( N, arg, res );

return 0;

}

0 Kudos
1 Solution
Gennady_F_Intel
Moderator
650 Views
Dmitry,
Please check the latest Update of Intel C++ Compiler Professional Edition ( v 11.1 Update 6) or the standalone version of MKL ( 10.2 Update 5). The problem should be fixed in these updates.
--Gennady

View solution in original post

0 Kudos
3 Replies
Gennady_F_Intel
Moderator
650 Views
Dmirty,
This is well known problem.Please see this KB article, I hope it will help you to find out the appropriate workaroudns.
--Gennady
0 Kudos
dmitry_k
Novice
650 Views

Hello, Gennady

Thank you for timely answer. I saw there a lot of complains of community's members. I believe that issue isn't difficult to fix but we don't see progress on that side. Can you tell us when fix is expected? May be Intel's authority can provide that info to us.

Thank you,

Dmitry

0 Kudos
Gennady_F_Intel
Moderator
651 Views
Dmitry,
Please check the latest Update of Intel C++ Compiler Professional Edition ( v 11.1 Update 6) or the standalone version of MKL ( 10.2 Update 5). The problem should be fixed in these updates.
--Gennady
0 Kudos
Reply