<?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: How to call lapack routines in Fortran 95 syntax with Xcode in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-call-lapack-routines-in-Fortran-95-syntax-with-Xcode/m-p/877734#M9152</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;call gehrd(a, tau ,ilo ,ihi, info) &lt;BR /&gt;call orghr(a, tau ,ilo ,ihi ,info) &lt;BR /&gt;&lt;BR /&gt;a warning occurs: symbol(s) not found&lt;BR /&gt;&lt;BR /&gt;Please tell me if I forget any linking steps.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;did you follow the guidelines from Chapter 7 "Language-specific Usage Options" in MKL User's Manual. You need to build .mod files (explanation why in Section "Compiler-dependent Functions and Fortran 90 Modules" or in Dima's response to one of recent posts on DFTI).&lt;BR /&gt;&lt;BR /&gt;A.&lt;BR /&gt;</description>
    <pubDate>Thu, 18 Jun 2009 01:35:55 GMT</pubDate>
    <dc:creator>ArturGuzik</dc:creator>
    <dc:date>2009-06-18T01:35:55Z</dc:date>
    <item>
      <title>How to call lapack routines in Fortran 95 syntax with Xcode</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-call-lapack-routines-in-Fortran-95-syntax-with-Xcode/m-p/877733#M9151</link>
      <description>I have problems using lapack in Fortran 95 syntax.&lt;BR /&gt;&lt;BR /&gt;The following program works when Fortran 77 syntax is used:&lt;BR /&gt;&lt;BR /&gt;----------------------------------&lt;BR /&gt;program main&lt;BR /&gt;&lt;BR /&gt;implicit none&lt;BR /&gt;&lt;BR /&gt;integer, parameter :: n = 2&lt;BR /&gt;integer :: ilo, ihi, lda=n, lwork=n, info, ii&lt;BR /&gt;real*8 :: a(n,n), ao(n,n), work(n), tau(n)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ilo=1&lt;BR /&gt;ihi=n&lt;BR /&gt;&lt;BR /&gt;a(1,1)=1&lt;BR /&gt;a(1,2)=2&lt;BR /&gt;a(2,1)=4&lt;BR /&gt;a(2,2)=5&lt;BR /&gt;&lt;BR /&gt;ao=a&lt;BR /&gt;call dgehrd(n, ilo, ihi, a, lda, tau, work, lwork, info)&lt;BR /&gt;call dorghr(n, ilo, ihi, a, lda, tau, work, lwork, info) &lt;BR /&gt;&lt;BR /&gt;write(*,*) ao&lt;BR /&gt;write(*,*) a&lt;BR /&gt;end program&lt;BR /&gt;---------------------------------&lt;BR /&gt;But if I call the following subroutines instead&lt;BR /&gt;&lt;BR /&gt;call gehrd(a, tau ,ilo ,ihi, info) &lt;BR /&gt;call orghr(a, tau ,ilo ,ihi ,info) &lt;BR /&gt;&lt;BR /&gt;a warning occurs: symbol(s) not found&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Please tell me if I forget any linking steps.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Jun 2009 01:24:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-call-lapack-routines-in-Fortran-95-syntax-with-Xcode/m-p/877733#M9151</guid>
      <dc:creator>paladinchin</dc:creator>
      <dc:date>2009-06-18T01:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to call lapack routines in Fortran 95 syntax with Xcode</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-call-lapack-routines-in-Fortran-95-syntax-with-Xcode/m-p/877734#M9152</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;call gehrd(a, tau ,ilo ,ihi, info) &lt;BR /&gt;call orghr(a, tau ,ilo ,ihi ,info) &lt;BR /&gt;&lt;BR /&gt;a warning occurs: symbol(s) not found&lt;BR /&gt;&lt;BR /&gt;Please tell me if I forget any linking steps.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;did you follow the guidelines from Chapter 7 "Language-specific Usage Options" in MKL User's Manual. You need to build .mod files (explanation why in Section "Compiler-dependent Functions and Fortran 90 Modules" or in Dima's response to one of recent posts on DFTI).&lt;BR /&gt;&lt;BR /&gt;A.&lt;BR /&gt;</description>
      <pubDate>Thu, 18 Jun 2009 01:35:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-call-lapack-routines-in-Fortran-95-syntax-with-Xcode/m-p/877734#M9152</guid>
      <dc:creator>ArturGuzik</dc:creator>
      <dc:date>2009-06-18T01:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to call lapack routines in Fortran 95 syntax with Xcode</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-call-lapack-routines-in-Fortran-95-syntax-with-Xcode/m-p/877735#M9153</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/431507"&gt;paladinchin&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;I have problems using lapack in Fortran 95 syntax.&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hello, paladinchin,&lt;BR /&gt;Did you resolve the problem?&lt;BR /&gt;Note that MKL 10.2 versionprovides precompiled (by Intel Fortran Compiler) .mod files.&lt;BR /&gt;You need only toinclude 'USE LAPACK95' statement into your code if you use Intel Fortran Compiler and MKL 10.2.&lt;BR /&gt;Otherwise .mod files and lapack95 library should be built before.&lt;BR /&gt;Thanks,&lt;BR /&gt;Vladimir&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Jun 2009 11:00:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-to-call-lapack-routines-in-Fortran-95-syntax-with-Xcode/m-p/877735#M9153</guid>
      <dc:creator>Vladimir_Koldakov__I</dc:creator>
      <dc:date>2009-06-29T11:00:12Z</dc:date>
    </item>
  </channel>
</rss>

