<?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 Re: getrf and access violation in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910680#M12129</link>
    <description>&lt;P&gt;Dear Gerry,&lt;/P&gt;
&lt;P&gt;names like 'dgetrf' are resereved for Fortran77 entry points, they have different interface from Fortran95 entry points, which should be called as 'getrf' or 'getrs'. Using Fortran77-style names with Fortran95-style arguments will cause a failure. Just call getrf instead of dgetrf and getrs instead of dgetrs.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Michael.&lt;/P&gt;</description>
    <pubDate>Mon, 07 Apr 2008 10:49:22 GMT</pubDate>
    <dc:creator>Michael_C_Intel4</dc:creator>
    <dc:date>2008-04-07T10:49:22Z</dc:date>
    <item>
      <title>getrf and access violation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910679#M12128</link>
      <description>&lt;P&gt;Whatever the configuration the following raises an access violation on the call to getrf in a win32 console app with default accepted properties:&lt;/P&gt;
&lt;P&gt;program test&lt;/P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;
&lt;P&gt;use&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; mkl95_lapack&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;use&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; mkl95_precision&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;
&lt;P&gt;implicit none&lt;/P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;
&lt;P&gt;real(8)&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; c(2,2), x(2), y(2), a_0, orgS_2, S_0, orgS_0&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;integer(4)&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; ipiv(2)&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;c = 0.d0; ipiv = 0&lt;/P&gt;
&lt;P&gt;c(1,1) = 1.d0; c(1,2) = 2.d0; c(2,1) = 2.d0; c(2,2)=4.d0&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;call&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; dgetrf(c, ipiv)&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;x = 0.d0; y = 0.d0&lt;/P&gt;
&lt;P&gt;info = 0&lt;/P&gt;
&lt;P&gt;a_0 = 5.d0; orgS_2 = 4.7d0&lt;/P&gt;
&lt;P&gt;S_0 = 10.d0; orgS_0 = 10.46d0&lt;/P&gt;
&lt;P&gt;y(1) = 2 * (a_0 - orgS_2); y(2) = 2 * (S_0 - orgS_0)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;call&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; dgetrs(c, ipiv, y, x, 'N', info) &lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;pause&lt;/FONT&gt;&lt;/B&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;end test&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;MKL 10.0.1.015 and IVF 10.1.013. IVF links to the runtime multithreaded library&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;The linker additional dependencies are (Debug): mkl_solver.lib mkl_intel_c.lib mkl_intel_thread.lib mkl_core.lib libguide.lib&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;Where am I going wrong? Any suggestions will be much appreciated.&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;Thanks,&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;Gerry&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;
&lt;P&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;ps It makes no difference whether I use libguide from MKL or IVF&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Mar 2008 14:41:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910679#M12128</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2008-03-26T14:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: getrf and access violation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910680#M12129</link>
      <description>&lt;P&gt;Dear Gerry,&lt;/P&gt;
&lt;P&gt;names like 'dgetrf' are resereved for Fortran77 entry points, they have different interface from Fortran95 entry points, which should be called as 'getrf' or 'getrs'. Using Fortran77-style names with Fortran95-style arguments will cause a failure. Just call getrf instead of dgetrf and getrs instead of dgetrs.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Michael.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2008 10:49:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910680#M12129</guid>
      <dc:creator>Michael_C_Intel4</dc:creator>
      <dc:date>2008-04-07T10:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: getrf and access violation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910681#M12130</link>
      <description>&lt;P&gt;Michael,&lt;/P&gt;
&lt;P&gt;Yes I'm aware of this notational difference. Whether I use the f77 or f95 interface the end result is the same in calling ?getrf: Access Violation. When I switch from lapack to the linear interval solvers (earmarked for removal in a future release of MKL) the problem executes correctly and without crashing. I notice that the MKL examples don't demonstrate use of ?getrf which I'd wager isthe most highly used routine in lapack.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;</description>
      <pubDate>Tue, 08 Apr 2008 14:26:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910681#M12130</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2008-04-08T14:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: getrf and access violation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910682#M12131</link>
      <description>&lt;P&gt;Gerry,&lt;/P&gt;
&lt;P&gt;In addition to the "getrf" you should use f95"getrs" call instead of f77 "dgetrs" call.&lt;/P&gt;
&lt;P&gt;Moreover,as described in the mklman.pdf the interface "getrs"is:&lt;/P&gt;
&lt;P&gt;call getrs( a, ipiv, b [, trans] [,info] ), where "b" is the matrix.&lt;/P&gt;
&lt;P&gt;So you should replace you call:&lt;/P&gt;&lt;FONT size="2"&gt;
&lt;P&gt;&lt;FONT size="3"&gt;call dgetrs(c, ipiv, y, x, 'N', info)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;with the &lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;call getrs(c, ipiv,b, 'N', info)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;where b isthe matrix.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Vladimir&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/FONT&gt;</description>
      <pubDate>Mon, 14 Apr 2008 14:38:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910682#M12131</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2008-04-14T14:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: getrf and access violation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910683#M12132</link>
      <description>&lt;P&gt;Thanks Vladimir. I made the change and now I have a:&lt;/P&gt;
&lt;P&gt;Error1 error LNK2019: unresolved external symbol _DGETRS1_MKL95 referenced in function _MAIN__test.obj&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Now what?&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2008 00:55:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910683#M12132</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2008-04-15T00:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: getrf and access violation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910684#M12133</link>
      <description>&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Gerry,&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;SPAN&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Could you please give me your command line?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/SPAN&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Its really available to use 1 dimensional matrix b in getrs() interface instead of two dimensional. In this case one more (additional) interface is used.&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;There are no problems if you link the mkl_lapack95.lib library what is built when you execute lapack95 examples.&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;But manually you should compile one more file: interfaces/lapack95/source/dgetrs1.f90 and linkobtained object file.&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;I suggest the simplest way to run your test: replace one of the examples with your code, say, source/gbsv.f90 and re-run examples.&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;The next code pass:&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;program test&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;use mkl95_lapack&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;use mkl95_precision&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;implicit none&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;real(8) c(2,2), x(2), y(2), a_0, orgS_2, S_0, orgS_0&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;integer(4) ipiv(2)&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;integer info ! added&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;c = 0.d0; ipiv = 0&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;c(1,1) = 1.d0; c(1,2) = 2.d0; c(2,1) = 2.d0; c(2,2)=4.d0&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;call getrf(c, ipiv)&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;x = 0.d0; y = 0.d0&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;info = 0&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;a_0 = 5.d0; orgS_2 = 4.7d0&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;S_0 = 10.d0; orgS_0 = 10.46d0&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;y(1) = 2 * (a_0 - orgS_2); y(2) = 2 * (S_0 - orgS_0)&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;call getrs(c, ipiv, y, 'N', info) &lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;pause&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;end !test&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Regards,&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;Vladimir&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2008 12:55:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910684#M12133</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2008-04-15T12:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: getrf and access violation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910685#M12134</link>
      <description>&lt;P&gt;Thanks again Vladimir, running nmake for the lapack95 examples revealed my failure to link against mkl_lapack95.lib. Perhaps a demonstration ofgetrs usage ought to be included in the examples.&lt;/P&gt;
&lt;P&gt;Gerry&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2008 00:45:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910685#M12134</guid>
      <dc:creator>g_f_thomas</dc:creator>
      <dc:date>2008-04-16T00:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: getrf and access violation</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910686#M12135</link>
      <description>&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Gerry,&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Your input is very usefulfor improvingLAPACK95 documentation and examples.&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;Thanks,&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;/SPAN&gt;Vladimir&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN&gt;&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2008 02:16:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/getrf-and-access-violation/m-p/910686#M12135</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2008-04-16T02:16:25Z</dc:date>
    </item>
  </channel>
</rss>

