Exception thrown at 0x75E14192 (KernelBase.dll) Module not found.

  • Thread starter Thread starter Craig6213
  • Start date Start date
C

Craig6213

Guest
I'm using the latest release of the Visual Studio 2019 Community Edition. I'm building a console application that uses the Intel Math Kernel Library to do linear algebra calculations. I successfully used them in the past but have not used them recently.

The application builds successfully but throws an unhandled exception when I call one of intel functions that I have not had issues with in the past. The debugger output indicate that is has something to do with KernelBase.dll and that it may be some kind of a path problem. I have updated the installs of Visual Studio and the MKL library the to latest versions and I am still having the problem.

The exception is thrown when I call the MKL function LAPACKE_dgetrf.

CraigsSystem.exe' (Win32): Loaded 'D:\cpodc\Documents\Visual Studio 2019\Projects\CraigsSystem\Debug\CraigsSystem.exe'. Symbols loaded.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ntdll.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\kernel32.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\KernelBase.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\user32.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\win32u.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\gdi32full.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\msvcp_win.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ucrtbase.dll'.
'CraigsSystem.exe' (Win32): Loaded 'D:\cpodc\Documents\Visual Studio 2019\Projects\CraigsSystem\Debug\mkl_rt.dll'. Module was built without symbols.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\vcruntime140d.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\ucrtbased.dll'.
'CraigsSystem.exe' (Win32): Loaded 'C:\Windows\SysWOW64\imm32.dll'.
The thread 0x2b54 has exited with code 0 (0x0).
'CraigsSystem.exe' (Win32): Loaded 'D:\cpodc\Documents\Visual Studio 2019\Projects\CraigsSystem\Debug\mkl_intel_thread.dll'. Module was built without symbols.
'CraigsSystem.exe' (Win32): Loaded 'D:\cpodc\Documents\Visual Studio 2019\Projects\CraigsSystem\Debug\libiomp5md.dll'.
Exception thrown at 0x75E14192 (KernelBase.dll) in CraigsSystem.exe: 0xC06D007E: Module not found (parameters: 0x0095F6BC).
Unhandled exception at 0x75E14192 (KernelBase.dll) in CraigsSystem.exe: 0xC06D007E: Module not found (parameters: 0x0095F6BC).
The thread 0x5060 has exited with code -1073741510 (0xc000013a).
The thread 0x41ec has exited with code -1073741510 (0xc000013a).
The thread 0x4f18 has exited with code -1073741510 (0xc000013a).
The thread 0x297c has exited with code -1073741510 (0xc000013a).
The program '[572] CraigsSystem.exe' has exited with code -1073741510 (0xc000013a).




Thank you in advance for your help.


Craig

Continue reading...
 
Back
Top