<?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 Doing some more test, it in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116266#M24667</link>
    <description>&lt;P&gt;Doing some more test, it seems that the FEAST RCI algorithm finds the greatest eigenvalues instead of the lowest one &amp;nbsp;for every interval passed. If the interval is narrower enough to contain only the searched eigenvalues, obviously the values returned are correct!&lt;/P&gt;

&lt;P&gt;Do you have any suggestions?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Dec 2016 15:26:00 GMT</pubDate>
    <dc:creator>pennisi__giovanni</dc:creator>
    <dc:date>2016-12-28T15:26:00Z</dc:date>
    <item>
      <title>Feast RCI</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116263#M24664</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;I have to solve the generalized eigen problem &lt;/SPAN&gt;&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 13px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;VAR class="varname" style="box-sizing: border-box; font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: 13px; line-height: 1.6em; color: rgb(102, 102, 102);"&gt;Ax&lt;/VAR&gt;&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 13px;"&gt;&amp;nbsp;=&amp;nbsp;&lt;/SPAN&gt;&lt;VAR class="varname" style="box-sizing: border-box; font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: 13px; line-height: 1.6em; color: rgb(102, 102, 102);"&gt;λ&lt;/VAR&gt;&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 13px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;VAR class="varname" style="box-sizing: border-box; font-family: &amp;quot;Courier New&amp;quot;, Courier, monospace; font-size: 13px; line-height: 1.6em; color: rgb(102, 102, 102);"&gt;Bx&lt;/VAR&gt;&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 13px;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px;"&gt;, where A is symmetric, positive-definite, and B is symmetric and not positive definite. I read that the FEAST algorithm can solve only the eigen system where B is positive definite. So I tried to solve the reverse problem, swapping A and B, and solving for 1/λ, but then the range of eigenvalues gets inverted, and I need to find the largest eigenvalues instead of the smallest. Unfortunately the matrix A is big and the algorithm takes too much time to find the eigenvalues and the eigenvectors, for the reverse problem! I understood that is possible to use the feast_rci to solve the direct problem where B can be not positive definite, am I correct? If yes where I can find a simple example &amp;nbsp;that uses PARDISO for factorization &amp;nbsp;and for the other operations required by the feast_rci? I've already read this page&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://software.intel.com/en-us/node/521741#24EF00BB-984C-442C-889B-58B7C042C86C&amp;nbsp;but" target="_blank"&gt;https://software.intel.com/en-us/node/521741#24EF00BB-984C-442C-889B-58B7C042C86C&amp;nbsp;but&lt;/A&gt; if you can provide a simple example that uses PARDISO or other mkl function, it could be easier for me to understand how to solve my problem!&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Thanks in advance,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Giovanni.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Dec 2016 17:17:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116263#M24664</guid>
      <dc:creator>pennisi__giovanni</dc:creator>
      <dc:date>2016-12-15T17:17:47Z</dc:date>
    </item>
    <item>
      <title>Hi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116264#M24665</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;

&lt;P&gt;sample codes of Feast and PARDISO can be found in the example folder of mkl ($(MKLROOT)\examples\examples_core_c.zip\solvers_eec\source).&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2016 00:50:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116264#M24665</guid>
      <dc:creator>Jing_Xu</dc:creator>
      <dc:date>2016-12-16T00:50:09Z</dc:date>
    </item>
    <item>
      <title>Hi Jing,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116265#M24666</link>
      <description>&lt;P&gt;Hi Jing,&lt;/P&gt;

&lt;P&gt;Thanks for your reply, I studied the example code you suggested and I adapted it to my code, but due to the fact tha Feast RCI algorithm still depends on the interval emin-emax, if the upper bound (emax) is too far from the grater eigeinvalue in that interval, the value of this eigenvalue is very different from the &lt;SPAN style="font-size: 13.008px;"&gt;expected&amp;nbsp;&lt;/SPAN&gt;one . Instead if a choose a narrower interval where the upper bound is very close to the last &lt;SPAN style="font-size: 13.008px;"&gt;searched&amp;nbsp;&lt;/SPAN&gt;eigenvalue the result is correct! Is there a way to estimate the upper bound of the search interval?&lt;/P&gt;

&lt;P&gt;Thanks in advance,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Giovanni.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2016 10:43:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116265#M24666</guid>
      <dc:creator>pennisi__giovanni</dc:creator>
      <dc:date>2016-12-28T10:43:28Z</dc:date>
    </item>
    <item>
      <title>Doing some more test, it</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116266#M24667</link>
      <description>&lt;P&gt;Doing some more test, it seems that the FEAST RCI algorithm finds the greatest eigenvalues instead of the lowest one &amp;nbsp;for every interval passed. If the interval is narrower enough to contain only the searched eigenvalues, obviously the values returned are correct!&lt;/P&gt;

&lt;P&gt;Do you have any suggestions?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Dec 2016 15:26:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116266#M24667</guid>
      <dc:creator>pennisi__giovanni</dc:creator>
      <dc:date>2016-12-28T15:26:00Z</dc:date>
    </item>
    <item>
      <title>Giovanni, we have solution</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116267#M24668</link>
      <description>&lt;P&gt;Giovanni, we have solution for such cases ( estimation # of EV into searching interval. this is what FEAST 3.0 has ) in the form of experimental package which you may try to evaluate.Just let us know.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 03:33:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116267#M24668</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2016-12-29T03:33:27Z</dc:date>
    </item>
    <item>
      <title>Hi Gennady,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116268#M24669</link>
      <description>&lt;P&gt;Hi Gennady,&lt;/P&gt;

&lt;P&gt;Thanks for your reply, I'm using Intel MKL Math library 11.3 and I think that includes only FEAST 2.1. If I am correct, where can I download the experimental package?&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks in advance,&lt;/P&gt;

&lt;P&gt;Giovanni.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 08:19:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116268#M24669</guid>
      <dc:creator>pennisi__giovanni</dc:creator>
      <dc:date>2016-12-29T08:19:14Z</dc:date>
    </item>
    <item>
      <title>yes, it will work with</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116269#M24670</link>
      <description>&lt;P&gt;yes, it will work with version 11.3 ( the current is MKL 2017) of Intel MKL.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 14:00:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116269#M24670</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2016-12-29T14:00:35Z</dc:date>
    </item>
    <item>
      <title>Hi Gennady F.,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116270#M24671</link>
      <description>&lt;P&gt;Hi Gennady F.,&lt;/P&gt;

&lt;P&gt;Where can I find the documentation that describes the use of FEAST 3.0? Or Can you give me a small example that explains the estimation of eigenvalues in a search interval?&lt;/P&gt;

&lt;P&gt;Thanks in advance,&lt;/P&gt;

&lt;P&gt;Giovanni.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 15:53:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-RCI/m-p/1116270#M24671</guid>
      <dc:creator>pennisi__giovanni</dc:creator>
      <dc:date>2017-01-04T15:53:00Z</dc:date>
    </item>
  </channel>
</rss>

