<?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 Does MKL have equivalent function as ARPACK/s znaupd ? in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Does-MKL-have-equivalent-function-as-ARPACK-s-znaupd/m-p/789031#M2044</link>
    <description>I am wondering whether MKL has equivalent function as znaupd/zneupd.&lt;BR /&gt;This is part of the code I would like to use MKL to replace ARPACK:&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;while (ido != 99)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;znaupd_(ido, bmat, n, which, k, tol, resid, p, v, n, iparam, ipntr, workd, workl, lworkl, rwork, info);&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;switch(ido)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;case -1:&lt;/P&gt;&lt;P&gt;case 1:&lt;/P&gt;&lt;P&gt;zgemv_(trans, n, n, alpha, a, n, workd+2*(ipntr[0]-1), incx, beta, workd+2*(ipntr[1]-1), incy);&lt;/P&gt;&lt;P&gt;break;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}// while (ido ~= 99)&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;zneupd_(rvec, howmny, select, d, z, n, sigma, workev,&lt;/P&gt;&lt;P&gt;bmat, n, which, k, tol, resid, p, v, n, iparam, ipntr,&lt;/P&gt;&lt;P&gt;workd, workl, lworkl, rwork, info);//same as for znaupd&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2011 22:44:38 GMT</pubDate>
    <dc:creator>missing__zlw</dc:creator>
    <dc:date>2011-07-13T22:44:38Z</dc:date>
    <item>
      <title>Does MKL have equivalent function as ARPACK/s znaupd ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Does-MKL-have-equivalent-function-as-ARPACK-s-znaupd/m-p/789031#M2044</link>
      <description>I am wondering whether MKL has equivalent function as znaupd/zneupd.&lt;BR /&gt;This is part of the code I would like to use MKL to replace ARPACK:&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;while (ido != 99)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;znaupd_(ido, bmat, n, which, k, tol, resid, p, v, n, iparam, ipntr, workd, workl, lworkl, rwork, info);&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;switch(ido)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;case -1:&lt;/P&gt;&lt;P&gt;case 1:&lt;/P&gt;&lt;P&gt;zgemv_(trans, n, n, alpha, a, n, workd+2*(ipntr[0]-1), incx, beta, workd+2*(ipntr[1]-1), incy);&lt;/P&gt;&lt;P&gt;break;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;}// while (ido ~= 99)&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;zneupd_(rvec, howmny, select, d, z, n, sigma, workev,&lt;/P&gt;&lt;P&gt;bmat, n, which, k, tol, resid, p, v, n, iparam, ipntr,&lt;/P&gt;&lt;P&gt;workd, workl, lworkl, rwork, info);//same as for znaupd&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2011 22:44:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Does-MKL-have-equivalent-function-as-ARPACK-s-znaupd/m-p/789031#M2044</guid>
      <dc:creator>missing__zlw</dc:creator>
      <dc:date>2011-07-13T22:44:38Z</dc:date>
    </item>
    <item>
      <title>Does MKL have equivalent function as ARPACK/s znaupd ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Does-MKL-have-equivalent-function-as-ARPACK-s-znaupd/m-p/789032#M2045</link>
      <description>You ought to be able to link against MKL to replace any BLAS functions called by ARPACK. If you have BLAS source code in your project, e.g. ?gemv, you would simply drop those functions and permit MKL to replace them.</description>
      <pubDate>Thu, 14 Jul 2011 12:28:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Does-MKL-have-equivalent-function-as-ARPACK-s-znaupd/m-p/789032#M2045</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2011-07-14T12:28:11Z</dc:date>
    </item>
    <item>
      <title>Does MKL have equivalent function as ARPACK/s znaupd ?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Does-MKL-have-equivalent-function-as-ARPACK-s-znaupd/m-p/789033#M2046</link>
      <description>&lt;P&gt;This is not what I want. I prefer to link with MKL only, so I don't need to link to another library, especially as ARPACK is built with other programming language and other reasons.&lt;BR /&gt;&lt;BR /&gt;This is a commonly used function. I wonder whether MKL support it.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jul 2011 19:35:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Does-MKL-have-equivalent-function-as-ARPACK-s-znaupd/m-p/789033#M2046</guid>
      <dc:creator>missing__zlw</dc:creator>
      <dc:date>2011-07-15T19:35:57Z</dc:date>
    </item>
  </channel>
</rss>

