<?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 Numerical integration package in MKL in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Numerical-integration-package-in-MKL/m-p/1034441#M20334</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I have "old" codes that call Fortran numerical_libraries routine GQRUL and DGQRUL for calculating Gauss-Legendre quadrature rule to perform numerical integration. &amp;nbsp;I used to be able to just put a line in the main routine "USE numerical_libraries" and subsequently was able to call GQRUL and DGQRUL functions. &amp;nbsp;&lt;/P&gt;

&lt;P&gt;Currently, I have&amp;nbsp;&lt;B style="color: rgb(102, 102, 102); font-family: Arial; font-size: 12px; line-height: normal; text-align: justify;"&gt;&lt;FONT color="#003366"&gt;&lt;A href="https://mail.catnet.arizona.edu/owa/redir.aspx?C=SspOH4Av2kGmgqPFloSicEFOK8wzKtII9DgfPJCrEw87O006T0xkw8DOJ2UuVIDWUwnqIm2kY8g.&amp;amp;URL=http%3a%2f%2fsoftwarestore.ispfulfillment.com%2fstore%2fproduct.aspx%3fSku%3dI23SE5101EA1" target="_blank"&gt;Intel® Parallel Studio XE Composer Edition for Fortran with Rogue Wave IMSL 7.0 for Windows*&lt;/A&gt;.&amp;nbsp;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;

&lt;P&gt;I have been trying to compile the old codes with routines from Numerical_libraries but I get the feeling that MKL that I have doesn't have GQRUL routine or in fact any kind of extensive array of routines for numerical integration that were in numerical_library.&lt;/P&gt;

&lt;P&gt;Am I correct? &amp;nbsp;I really need to use Gauss-Legendre quadrature rule routine; how do I go about this?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Byung&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Mar 2015 18:20:01 GMT</pubDate>
    <dc:creator>Byungmoon_C_</dc:creator>
    <dc:date>2015-03-04T18:20:01Z</dc:date>
    <item>
      <title>Numerical integration package in MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Numerical-integration-package-in-MKL/m-p/1034441#M20334</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I have "old" codes that call Fortran numerical_libraries routine GQRUL and DGQRUL for calculating Gauss-Legendre quadrature rule to perform numerical integration. &amp;nbsp;I used to be able to just put a line in the main routine "USE numerical_libraries" and subsequently was able to call GQRUL and DGQRUL functions. &amp;nbsp;&lt;/P&gt;

&lt;P&gt;Currently, I have&amp;nbsp;&lt;B style="color: rgb(102, 102, 102); font-family: Arial; font-size: 12px; line-height: normal; text-align: justify;"&gt;&lt;FONT color="#003366"&gt;&lt;A href="https://mail.catnet.arizona.edu/owa/redir.aspx?C=SspOH4Av2kGmgqPFloSicEFOK8wzKtII9DgfPJCrEw87O006T0xkw8DOJ2UuVIDWUwnqIm2kY8g.&amp;amp;URL=http%3a%2f%2fsoftwarestore.ispfulfillment.com%2fstore%2fproduct.aspx%3fSku%3dI23SE5101EA1" target="_blank"&gt;Intel® Parallel Studio XE Composer Edition for Fortran with Rogue Wave IMSL 7.0 for Windows*&lt;/A&gt;.&amp;nbsp;&lt;/FONT&gt;&lt;/B&gt;&lt;/P&gt;

&lt;P&gt;I have been trying to compile the old codes with routines from Numerical_libraries but I get the feeling that MKL that I have doesn't have GQRUL routine or in fact any kind of extensive array of routines for numerical integration that were in numerical_library.&lt;/P&gt;

&lt;P&gt;Am I correct? &amp;nbsp;I really need to use Gauss-Legendre quadrature rule routine; how do I go about this?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Byung&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2015 18:20:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Numerical-integration-package-in-MKL/m-p/1034441#M20334</guid>
      <dc:creator>Byungmoon_C_</dc:creator>
      <dc:date>2015-03-04T18:20:01Z</dc:date>
    </item>
    <item>
      <title>The routines that you are</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Numerical-integration-package-in-MKL/m-p/1034442#M20335</link>
      <description>&lt;P&gt;The routines that you are looking for are in the IMSL libraries, not in MKL. Likewise, "Use Numerical_Libraries" pertains to IMSL and not MKL. Specifically, that USE statement is appropriate if you are calling the IMSL routines using the F77 interface. If you are using the F95/F2003 interfaces, you may either USE the specific modules for GQRUL and GQRCF, or you can insert USE IMSL_LIBRARIES.&lt;/P&gt;

&lt;P&gt;For this to work, there are steps that you need to take to make the IMSL libraries available in your Visual Studio projects. See &lt;A href="https://software.intel.com/en-us/articles/installing-and-using-the-imsl-libraries" target="_blank"&gt;https://software.intel.com/en-us/articles/installing-and-using-the-imsl-libraries&lt;/A&gt;.&lt;/P&gt;

&lt;P&gt;If you are using the command line environment, the /Qimsl flag of the Intel Fortran compiler may suffice, or you can use the various IMSL related flags such as FFLAGS, LINK_FNL, etc.&lt;/P&gt;

&lt;P&gt;Have you tried building and running the example code given in the IMSL manual under GQRUL?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2015 19:26:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Numerical-integration-package-in-MKL/m-p/1034442#M20335</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-03-04T19:26:00Z</dc:date>
    </item>
  </channel>
</rss>

