<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Quote:James L. wrote: in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052239#M21232</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;James L. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use, for example, ​&lt;/P&gt;&lt;P&gt;include 'link_fnl_shared.h'&lt;BR /&gt;use lincg_int&lt;BR /&gt;use mcrcr_int&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;call lincg(wk1, wk1)&lt;BR /&gt;call mcrcr(wk1, wk3, s11)&lt;/P&gt;&lt;P&gt;Running I the IFortran-64 window gives the same errors.&lt;/P&gt;&lt;P&gt;How do I access the Dependency Walker?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you could try&amp;nbsp;include 'link_fnl_shared_imsl.h' instead of&amp;nbsp;include 'link_fnl_shared.h'.&lt;/P&gt;</description>
    <pubDate>Sun, 17 May 2020 20:51:38 GMT</pubDate>
    <dc:creator>sumitsinghal</dc:creator>
    <dc:date>2020-05-17T20:51:38Z</dc:date>
    <item>
      <title>mkl_lapack_ao_zgeqrf not located</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052224#M21217</link>
      <description>&lt;P&gt;I am running the Intel Compiler 16.0 in Visual Studio Professional 2013. I have a project that I wish to make as an x64 executable. I am able to compile and run the Win32 version, and I can compile and link the x64 version, but when I try to run it I get the message:&lt;/P&gt;

&lt;P&gt;The procedure entry point mkl_lapack_ao_zgeqrf could not be located in the dynamic link library G:\Program Files(x86)\VNI\imsl\fnl701\Intel64\lib\imslmkl_dll.dll.&lt;/P&gt;

&lt;P&gt;I have verified that the file exists in that path, and that there is no other file of that name in the system apart from the one in the corresponding Win32 path.&lt;/P&gt;

&lt;P&gt;Any ideas on what I need to do to track this problem down?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2015 17:40:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052224#M21217</guid>
      <dc:creator>James_L_4</dc:creator>
      <dc:date>2015-11-06T17:40:38Z</dc:date>
    </item>
    <item>
      <title>The missing entry point is in</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052225#M21218</link>
      <description>&lt;P&gt;The missing entry point is in MKL runtime DLLs. It is not clear if you called an IMSL routine that, in turn, called this entry, or if you called ZGEQRF directly from your code. Details of the options used to compile and link with IMSL and MKL would also be needed.&lt;/P&gt;

&lt;P&gt;IMSL provides its own versions of Lapack routines but, as a high-performance option, allows you to use the MKL versions of Lapack routines instead. For this to work correctly, the environment has to be be properly set and the appropriate compile and link options selected.&lt;/P&gt;

&lt;P&gt;I suggest that you rerun the application after making sure that the MKL DLLs are accessible through %PATH%. You could open an IFort-x64 command window and attempt to run your application in that window.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2015 18:06:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052225#M21218</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-11-06T18:06:47Z</dc:date>
    </item>
    <item>
      <title>Mecej4, thanks for your reply</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052226#M21219</link>
      <description>&lt;P&gt;Mecej4, thanks for your reply. I do call an IMSL routine that calls ZGEQRF. The compiler settings are:&lt;/P&gt;

&lt;P&gt;/nologo /O3 /QxHost /Qparallel /Qopt-prefetch=3 /assume:buffered_io /Qipo /free /stand:f15 /Qopt-report:5 /align:qcommons /align:array16byte /align:sequence /module:"x64\Release\\" /object:"x64\Release\\" /Fd"x64\Release\vc120.pdb" /list:"x64\Release\wincwgf64.lst" /libs:static /threads /Qmkl:parallel /c&lt;/P&gt;

&lt;P&gt;and the linker settings are:&lt;/P&gt;

&lt;P&gt;/nologo /O3 /QxHost /Qparallel /Qopt-prefetch=3 /assume:buffered_io /Qipo /free /stand:f15 /Qopt-report:5 /align:qcommons /align:array16byte /align:sequence /module:"x64\Release\\" /object:"x64\Release\\" /Fd"x64\Release\vc120.pdb" /list:"x64\Release\wincwgf64.lst" /libs:static /threads /Qmkl:parallel /c&lt;/P&gt;

&lt;P&gt;The FNL_DIR is set to:&lt;/P&gt;

&lt;P&gt;G:\Program Files (x86)\VNI\imsl\fnl701&lt;/P&gt;

&lt;P&gt;and&lt;/P&gt;

&lt;P&gt;G:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2016.0.110\windows\mkl\lib\intel64_win&lt;/P&gt;

&lt;P&gt;is in my path, but I get the same error.&lt;/P&gt;

&lt;P&gt;I don't know what the IFort-x64 window is ...&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2015 18:51:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052226#M21219</guid>
      <dc:creator>James_L_4</dc:creator>
      <dc:date>2015-11-06T18:51:39Z</dc:date>
    </item>
    <item>
      <title>Which IMSL routine do you use</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052227#M21220</link>
      <description>&lt;P&gt;Which IMSL routine do you use? &lt;SPAN style="font-size: 13.008px; line-height: 11.1497px;"&gt;I cannot see any IMSL dependency from the settings/command lines that you showed. Can you provide a short example source code?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;I ask because I tried the LSQRR example in the IMSl 7 manual, and I could build it fine and Dependency Walker shows that the EXE depends on the MKL libraries and DLLs as expected.&lt;/P&gt;

&lt;P&gt;The&amp;nbsp;IFort-x64 window is a shortcut to CMD.EXE configured for use with Intel Fortran. You can find it with the label "Compiler 16.0 for Intel 64 Visual Studio 2013 environment" under Intel Parallel Studio XE 2016.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2015 19:40:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052227#M21220</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-11-06T19:40:12Z</dc:date>
    </item>
    <item>
      <title>I use, for example, ​</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052228#M21221</link>
      <description>&lt;P&gt;I use, for example, ​&lt;/P&gt;

&lt;P&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;include&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;'link_fnl_shared.h'&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;
	&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;use&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; lincg_int&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;
	&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;use&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; mcrcr_int&lt;BR /&gt;
	.&lt;BR /&gt;
	.&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;
	&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;call&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; lin&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT color="#a31515" face="Consolas" size="2"&gt;cg(wk1, wk1)&lt;/FONT&gt;&lt;/FONT&gt;&lt;BR /&gt;
	&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;&lt;FONT color="#0000ff" face="Consolas" size="2"&gt;call&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Consolas" size="2"&gt;&lt;FONT face="Consolas" size="2"&gt; mcrcr(wk1, wk3, s11)&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;

&lt;P&gt;Running I the IFortran-64 window gives the same errors.&lt;/P&gt;

&lt;P&gt;How do I access the Dependency Walker?&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2015 20:55:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052228#M21221</guid>
      <dc:creator>James_L_4</dc:creator>
      <dc:date>2015-11-06T20:55:07Z</dc:date>
    </item>
    <item>
      <title>See http://dependencywalker</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052229#M21222</link>
      <description>&lt;P&gt;See&amp;nbsp;http://dependencywalker.com/ .&lt;/P&gt;

&lt;P&gt;Neither the LINCG example nor the MCRCR example in the IMSL 7 manual produced references to the ?geqrf routines.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2015 21:33:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052229#M21222</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-11-06T21:33:44Z</dc:date>
    </item>
    <item>
      <title>Thanks for the dependency</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052230#M21223</link>
      <description>&lt;P&gt;Thanks for the dependency walker. It is unable to find the files for the mkl_intel_thread.dll.&lt;/P&gt;

&lt;P&gt;I assumed that the ?geqrf routine was being called by the IMSL library because there is the option to use the mkl libraries for high performance. I have not been able to find a specific option for that, but I did turn off the Use Intel Math Kernel Libraries option, but that made no difference.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Nov 2015 23:33:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052230#M21223</guid>
      <dc:creator>James_L_4</dc:creator>
      <dc:date>2015-11-06T23:33:41Z</dc:date>
    </item>
    <item>
      <title>Hi James, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052231#M21224</link>
      <description>&lt;P&gt;Hi James,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;The issue looks that the exe can't find required libraries. The&amp;nbsp;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;required libraries&amp;nbsp;&lt;/SPAN&gt;includes &lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;&amp;nbsp;IMSL library, MKL library &amp;nbsp;(mkl_intel_thread.dll,mkl_avx.dll etc) and maybe compiler runtime library .&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;for example, &amp;nbsp;you mentioned &amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;It is unable to find the files for the mkl_intel_thread.dll.&lt;/SPAN&gt; &amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;mkl_intel_thread.dll &amp;nbsp;should be&lt;STRONG&gt; not in&amp;nbsp;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;G:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2016.0.110\windows\mkl\lib\intel64_win (static library and dll import library)&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;STRONG&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;but in&amp;nbsp;&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;G:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2016.0.110\windows\&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;redist\intel64_win\mkl &amp;nbsp;(it stores the mkl dll itself).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;So you may need to add it into your path. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="line-height: 19.512px;"&gt;there are some ways to add the dll path into your path.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="line-height: 19.512px;"&gt;I may recommend to add it into your system environment by administrator right.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Right click "Computer" icon =&amp;gt; Open "System Properties"=&amp;gt; click Tab "Advanced"=&amp;gt;Environment Variables=&amp;gt; in System variables, click path =&amp;gt; Edit it.&lt;BR /&gt;
	add &lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;G:\Program Files (x86)\IntelSWTools\compilers_and_libraries_2016.0.110\windows\&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;redist\intel64_win\mkl &amp;nbsp;and other.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;Then restart your MSVS , build and run your project again.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Please let us know if any result.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Ying&amp;nbsp;&lt;/P&gt;

&lt;P&gt;P.S&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Here is one Fortran IMSL article:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;A href="https://software.intel.com/en-us/articles/installing-and-using-the-imsl-libraries"&gt;https://software.intel.com/en-us/articles/installing-and-using-the-imsl-libraries&lt;/A&gt;&amp;nbsp;&amp;nbsp;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;for your reference.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 13.008px; line-height: 19.512px;"&gt;It also mentioned how to add library path and dll path.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;For below step, the library path $(FNL_DIR)\IA32\lib is out-of-date. It should be changed to IFORT_COMPILER16%\compiler\lib\ia32&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;And $(FNL_DIR)\Intel64\lib&amp;nbsp;change to %IFORT_COMPILER16%\compiler\lib\intel64&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;Add to the end of the list,&lt;BR /&gt;
		$(FNL_DIR)\IA32\lib&amp;nbsp;(for IA-32 architecture target, or)&lt;BR /&gt;
		$(FNL_DIR)\Intel64\lib&amp;nbsp;(for Intel 64 architecture target&lt;BR /&gt;
		&amp;nbsp;&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Nov 2015 02:08:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052231#M21224</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2015-11-09T02:08:05Z</dc:date>
    </item>
    <item>
      <title>Hi James L.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052232#M21225</link>
      <description>&lt;P&gt;Hi &lt;A href="https://software.intel.com/en-us/user/1222172"&gt;&lt;U&gt;&lt;FONT color="#0066cc"&gt;James L.&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;U&gt;&lt;FONT color="#0066cc"&gt;Any news about the build?&lt;/FONT&gt;&lt;/U&gt;&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Mon, 16 Nov 2015 07:31:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052232#M21225</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2015-11-16T07:31:46Z</dc:date>
    </item>
    <item>
      <title>Reviving an old thread, but</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052233#M21226</link>
      <description>&lt;P&gt;Reviving an old thread, but am facing the same problem as above, even after following the helpful suggestions above.&lt;/P&gt;

&lt;P&gt;I am on a Windows 7 virtual machine. I have installed Visual Studio 2015 Community, Intel Parallel Studio XE 2018, and the IMSL fortran Numerical Libraries with the student license, in that order, rebooting at each step.&lt;/P&gt;

&lt;P&gt;The code that I am trying to run (out of the "Intel 64 Visual Studio 2015 environment" command line interface) is simply imslmp.f90 as instructed in the installation readme to validate the installation (code attached).&amp;nbsp;&lt;/P&gt;

&lt;P&gt;The command I am entering is %F90% %F90FLAGS% imslmp.f90 %LINK_FNL%, where:&lt;/P&gt;

&lt;P&gt;%F90% = ifort&lt;/P&gt;

&lt;P&gt;%F90FLAGS% = /F60000000 /fpe:3 /Qopenmp /w /I:"C:\Program Files (x86)\RogueWave\imsl\fnl-2018.0.0\win700in170x64\include\dll" /nologo&lt;/P&gt;

&lt;P&gt;and&lt;/P&gt;

&lt;P&gt;%LINK_FNL% = imslmkl_dll.lib /libs:dll /link /force:multiple&lt;/P&gt;

&lt;P&gt;I have added to the end of %Path%:&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;;%IFORT_COMPILER18%redist\ia32\mkl;%IFORT_COMPILER18%redist\intel64\mkl&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;As suggested by Ying H.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Thank you all in advance!&lt;/P&gt;</description>
      <pubDate>Wed, 18 Apr 2018 23:53:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052233#M21226</guid>
      <dc:creator>onda__chikara</dc:creator>
      <dc:date>2018-04-18T23:53:31Z</dc:date>
    </item>
    <item>
      <title>OK, I figured it out with</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052234#M21227</link>
      <description>&lt;P&gt;OK, I figured it out with help from RogueWave's support.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;In case this is helpful to others: apparently the 2018.0.0 version of the IMSL libraries are only compatible with up to Intel Parallel Studio 2017u2.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 00:32:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052234#M21227</guid>
      <dc:creator>onda__chikara</dc:creator>
      <dc:date>2018-04-20T00:32:30Z</dc:date>
    </item>
    <item>
      <title>Hi Onda Chikara,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052235#M21228</link>
      <description>&lt;P&gt;Hi Onda Chikara,&lt;BR /&gt;
	&lt;BR /&gt;
	​Thank you&amp;nbsp;much for answering the problem here. Right, to use the previous version should be work around the problem.&lt;/P&gt;

&lt;P&gt;As i understand, the root cause is that we(MKL) had&amp;nbsp;planned to remove the (automatically offload)AO support for previous coprocessor on windows* support since 2018v. Thus the symbols were removed in 2018v. But in the case&amp;nbsp;when any third-party library build based on the import library from previous mkl version&amp;nbsp; and&amp;nbsp;run with the dll&amp;nbsp;from&amp;nbsp;current mkl&amp;nbsp;version,&amp;nbsp; the function&amp;nbsp;will not be founded.&amp;nbsp; We are looking for&amp;nbsp;some solutions, for example,&amp;nbsp;release new&amp;nbsp;MKL &amp;nbsp;and add these symbols back or third-party library rebuild with new mkl library,&amp;nbsp;both seems make everything work.&amp;nbsp;If possible, please help to notify&amp;nbsp;RogueWave the possibility.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Ying .&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Apr 2018 00:59:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052235#M21228</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2018-04-20T00:59:59Z</dc:date>
    </item>
    <item>
      <title>Along with the recent</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052236#M21229</link>
      <description>&lt;P&gt;Along with the recent dropping of the MIC co-processors all the "automatic off-load" or "ao" routines have been removed from MKL.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Apr 2018 02:36:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052236#M21229</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2018-04-23T02:36:42Z</dc:date>
    </item>
    <item>
      <title>Has this problem been solved</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052237#M21230</link>
      <description>&lt;P&gt;Has this problem been solved in&amp;nbsp;Intel Parallel Studio 2019v&amp;nbsp;@Ying H. (Intel)&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jun 2019 14:48:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052237#M21230</guid>
      <dc:creator>Kuilong__Song</dc:creator>
      <dc:date>2019-06-16T14:48:58Z</dc:date>
    </item>
    <item>
      <title>Has this problem been solved</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052238#M21231</link>
      <description>&lt;P&gt;Has this problem been solved in&amp;nbsp;Intel Parallel Studio 2019v&lt;/P&gt;</description>
      <pubDate>Sun, 16 Jun 2019 14:52:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052238#M21231</guid>
      <dc:creator>Kuilong__Song</dc:creator>
      <dc:date>2019-06-16T14:52:03Z</dc:date>
    </item>
    <item>
      <title>Quote:James L. wrote:</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052239#M21232</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;James L. wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use, for example, ​&lt;/P&gt;&lt;P&gt;include 'link_fnl_shared.h'&lt;BR /&gt;use lincg_int&lt;BR /&gt;use mcrcr_int&lt;BR /&gt;.&lt;BR /&gt;.&lt;BR /&gt;call lincg(wk1, wk1)&lt;BR /&gt;call mcrcr(wk1, wk3, s11)&lt;/P&gt;&lt;P&gt;Running I the IFortran-64 window gives the same errors.&lt;/P&gt;&lt;P&gt;How do I access the Dependency Walker?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you could try&amp;nbsp;include 'link_fnl_shared_imsl.h' instead of&amp;nbsp;include 'link_fnl_shared.h'.&lt;/P&gt;</description>
      <pubDate>Sun, 17 May 2020 20:51:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-lapack-ao-zgeqrf-not-located/m-p/1052239#M21232</guid>
      <dc:creator>sumitsinghal</dc:creator>
      <dc:date>2020-05-17T20:51:38Z</dc:date>
    </item>
  </channel>
</rss>

