I'm using the using the latest Windows update, the latest update of the 2020 version of the mkl library and the latest update of the Microsoft Visual Studio 2019 Community edition. I've run the Windows system file checker to verify my operating system files. I'm using C++. My application is a simple console application.
The code below throws an exception which I am unable to catch. It seems to indicate that I am having a path problem. I've pursued this in the Microsoft forums. They referred me to you. Can you help.
try
{
info = LAPACKE_dgetrf(LAPACK_ROW_MAJOR, A.nRows, A.nColumns, aP, A.nColumns, ipiv);
}
catch (int eNumber )
{
printf("LAPACKE_dgetrf() threw exception number: %d\n", eNumber );
free(aP);
delete ipiv;
return Result;
}
if( info != 0 )
{
free(aP);
delete ipiv;
return Result;
}
Here is the debugger output I receive.
Unhandled exception at 0x75724192 (KernelBase.dll) in CraigsSystem.exe: 0xC06D007E: Module not found (parameters: 0x00F5F9A4). occurred