<?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 When I call dfeast_srci first in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971871#M16729</link>
    <description>&lt;P&gt;When I call&amp;nbsp;dfeast_srci first time, it work normally. Then nothing to change and nothing to do on (ijob=10). And then I call&amp;nbsp;dfeast_srci second time and my programm crash with message:&lt;/P&gt;
&lt;P&gt;Extended Eigensolvers: PROBLEM with input parameters&lt;BR /&gt;==&amp;gt;INFO code =: 1816549376&lt;/P&gt;
&lt;P&gt;What does it mean?&amp;nbsp;Why does the first call not generate an error?&lt;/P&gt;</description>
    <pubDate>Wed, 20 Mar 2013 09:23:25 GMT</pubDate>
    <dc:creator>Nikita_S_1</dc:creator>
    <dc:date>2013-03-20T09:23:25Z</dc:date>
    <item>
      <title>Need Extended Eigensolver RCI example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971868#M16726</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I want to use&amp;nbsp;Extended Eigensolver RCI routines, but documentation is not enought&amp;nbsp;detailed.&lt;/P&gt;
&lt;P&gt;In particular, I don't understand what I need to do, when ijob = 10. Where do I need to put the (ZeB-A) result?&lt;/P&gt;
&lt;P&gt;And what I need to put in Aq and As arrays ("Specifically, they contain the matrices for the reduced eigenvalue problem." - what does it mean?).&lt;/P&gt;
&lt;P&gt;I want to change only method for solving linear system, but don't want to change something else (matrix format, factorization the Green's function and etc.). And all others I want to use predefined.&lt;/P&gt;
&lt;P&gt;May be smb can give me example for RCI Interface, where used standart procedures from MKL?&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2013 10:46:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971868#M16726</guid>
      <dc:creator>Nikita_S_1</dc:creator>
      <dc:date>2013-03-14T10:46:04Z</dc:date>
    </item>
    <item>
      <title>Hi, thanks for your interest</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971869#M16727</link>
      <description>&lt;P&gt;Hi, thanks for your interest in the new Extended Eigensolver Package! Let me do some research and I will get back to you in a day with some comprehensive information to help you out.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2013 20:49:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971869#M16727</guid>
      <dc:creator>Noah_C_Intel</dc:creator>
      <dc:date>2013-03-14T20:49:45Z</dc:date>
    </item>
    <item>
      <title>Dear Nikita,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971870#M16728</link>
      <description>&lt;P&gt;Dear Nikita,&lt;/P&gt;
&lt;P&gt;Let us assume we want to solve a real generalized eigenvalue problem.&lt;/P&gt;
&lt;P&gt;In the case of ijob=10 we need to compute &amp;nbsp;a double complex precision matrix &amp;nbsp;Ze*B-A and the representation &amp;nbsp;of the output matrix Ze*B-A &amp;nbsp;depends on the solver you are going to use. &amp;nbsp;For example, if we going to use the MKL PARDISO, we have to compute Ze*B-A in the compressed sparse row format. If you are using a sparse direct solver, &amp;nbsp;we need to factorize &amp;nbsp;Ze*B-A with the help of this direct solver. &amp;nbsp;In the case of a preconditioned iterative solver, you might compute a preconditioner for the linear system (Ze*A-B) X= Y. &amp;nbsp;&amp;nbsp;&amp;nbsp;Of course, you can compute a preconditioner or performs the matrix factorization later when FEAST ask you to solve the system.&lt;/P&gt;
&lt;P&gt;Here is a pseudocode for a real symmetric problem:&lt;/P&gt;
&lt;P&gt;ijob=-1 ! initialization&lt;/P&gt;
&lt;P&gt;do while (ijob/=0)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; call dfeast_srci(ijob, N, Ze, work, workc, Aq, Sq, fpm, &amp;nbsp;epsout,loop, Emin, Emax, M0,&amp;nbsp; E, X, mode,res,info)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select case(ijob)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case(10) !! Form (ZeB-A) &amp;nbsp;and Factorize the complex matrix (ZeB-A)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;!! &amp;nbsp;Let (ssa,sisa,sjsa) be the CSR representation &amp;nbsp;of the input matrix A,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;!!&amp;nbsp;&amp;nbsp; (ssb,sisb,sjsb) be the CSR representation &amp;nbsp;of the input matrix B&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;!!&amp;nbsp;&amp;nbsp; and let (saz,isaz,jsaz) be the &amp;nbsp;CSR representation of (Ze*A-B)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;call &amp;lt;compute the resolvent matrix &amp;gt; (N, ssa,sisa,sjsa,Ze,ssb,sisb,sjsb,saz,isaz,jsaz) !! get saz&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;!! &amp;nbsp;factorize the matrix Ze*B-A or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !!&amp;nbsp;&amp;nbsp; compute a preconditioner for (Ze*A-B) if a preconditioned iterative solver is used&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PHASE=22&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;call &amp;nbsp;pardiso(….,saz,isaz,jsaz,….)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; case(11) !! Solve the complex linear system (ZeB-A)workc(1:N,1:M0) = workc(1:N,1:M0) result in workc&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;PHASE=33&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;call &amp;nbsp;pardiso(…, saz,isaz,jsaz, … ,workc(:,1:M0), …)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case(30) !! Perform multiplication A*X(1:N,i:j) result in work(1:N,i:j)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !! where i=fpm(24) and j=fpm(24)+fpm(25)−1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;call &amp;nbsp;&amp;lt;sparse matrix-matrix multiply&amp;gt; &amp;nbsp;&amp;nbsp;(…, ssa, sjsa, sisa, … &amp;nbsp;, X(1,fpm(24)), .., &amp;nbsp;work(1,fpm(24)))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;case(40) !! Perform multiplication B*X(1:N,i:j) result in work(1:N,i:j)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; !! where i=fpm(24) and j=fpm(24)+fpm(25)−1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;call &amp;nbsp;&amp;lt;sparse matrix-matrix multiply&amp;gt; &amp;nbsp;&amp;nbsp;(…, ssb, sjsb, sisb, … &amp;nbsp;, X(1,fpm(24)), .., &amp;nbsp;work(1,fpm(24)))&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;end select&lt;/P&gt;
&lt;P&gt;end do&lt;/P&gt;
&lt;P&gt;Hope it helps&lt;/P&gt;
&lt;P&gt;All the best&lt;/P&gt;
&lt;P&gt;Sergey&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2013 12:00:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971870#M16728</guid>
      <dc:creator>Sergey_K_Intel1</dc:creator>
      <dc:date>2013-03-15T12:00:49Z</dc:date>
    </item>
    <item>
      <title>When I call dfeast_srci first</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971871#M16729</link>
      <description>&lt;P&gt;When I call&amp;nbsp;dfeast_srci first time, it work normally. Then nothing to change and nothing to do on (ijob=10). And then I call&amp;nbsp;dfeast_srci second time and my programm crash with message:&lt;/P&gt;
&lt;P&gt;Extended Eigensolvers: PROBLEM with input parameters&lt;BR /&gt;==&amp;gt;INFO code =: 1816549376&lt;/P&gt;
&lt;P&gt;What does it mean?&amp;nbsp;Why does the first call not generate an error?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2013 09:23:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971871#M16729</guid>
      <dc:creator>Nikita_S_1</dc:creator>
      <dc:date>2013-03-20T09:23:25Z</dc:date>
    </item>
    <item>
      <title>After first calling of dfeast</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971872#M16730</link>
      <description>&lt;P&gt;After first calling of&amp;nbsp;&lt;STRONG&gt;dfeast_srci&lt;/STRONG&gt; the value of variable&amp;nbsp;&lt;STRONG&gt;mode&lt;/STRONG&gt; changing to negative, why can it be? And it's the reason why on the second call of&amp;nbsp;&lt;STRONG&gt;dfeast_srci&lt;/STRONG&gt;the program is crashing with error&lt;/P&gt;
&lt;P&gt;Extended Eigensolvers: PROBLEM with input parameters&lt;/P&gt;
&lt;P&gt;==&amp;gt;INFO code =: 1816549376&lt;/P&gt;
&lt;P&gt;But I think real reason somewhere else. Why can it be? Nothing happened after first call of this function...&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Mar 2013 10:38:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971872#M16730</guid>
      <dc:creator>Nikita_S_1</dc:creator>
      <dc:date>2013-03-20T10:38:00Z</dc:date>
    </item>
    <item>
      <title>Hi Nikita,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971873#M16731</link>
      <description>&lt;P&gt;Hi Nikita,&lt;/P&gt;
&lt;P&gt;I'd assume that&amp;nbsp; it is not enough memory for one or more input arrays.&amp;nbsp; I'd recommend to check the type and size&amp;nbsp;of each input array. If it doesn't help, &amp;nbsp;please provide a reproducer.&lt;/P&gt;
&lt;P&gt;All the best&lt;/P&gt;
&lt;P&gt;Sergey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2013 08:45:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971873#M16731</guid>
      <dc:creator>Sergey_K_Intel1</dc:creator>
      <dc:date>2013-03-21T08:45:39Z</dc:date>
    </item>
    <item>
      <title>I try to calculate for</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971874#M16732</link>
      <description>&lt;P&gt;I try to calculate for problem with very small matrix, only 8 rows. And it's correctly work with predefined eigen solver. That cann't be memory problems with this size, I think...&lt;/P&gt;
&lt;P&gt;I check all massives, but I didn't find an error. Here is my function code in attachment.&lt;/P&gt;
&lt;P&gt;And it returns this in console:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;---&amp;gt; phase -1 &amp;lt;---&lt;BR /&gt;Extended Eigensolvers: double precision driver&lt;BR /&gt;Extended Eigensolvers: List of input parameters fpm(1:64)-- if different from default&lt;BR /&gt;Extended Eigensolvers: fpm(1)=1&lt;BR /&gt;Search interval [1.000000000000000e+004;2.000000000000000e+006]&lt;BR /&gt;Extended Eigensolvers: Size subspace 8&lt;BR /&gt;#Loop | #Eig | Trace | Error-Trace | Max-Residual&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;---&amp;gt; phase 10 &amp;lt;---&lt;BR /&gt;Extended Eigensolvers: PROBLEM with input parameters&lt;BR /&gt;==&amp;gt;INFO code =: 1816549376&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 22 Mar 2013 07:33:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971874#M16732</guid>
      <dc:creator>Nikita_S_1</dc:creator>
      <dc:date>2013-03-22T07:33:58Z</dc:date>
    </item>
    <item>
      <title>I checked all arrays and</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971875#M16733</link>
      <description>&lt;P&gt;I checked all arrays and found nothing wrong with it's values or size.&lt;/P&gt;
&lt;P&gt;There is my function code in attachment. It returns the next:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;---&amp;gt; phase -1 &amp;lt;---&lt;BR /&gt;Extended Eigensolvers: double precision driver&lt;BR /&gt;Extended Eigensolvers: List of input parameters fpm(1:64)-- if different from default&lt;BR /&gt;Extended Eigensolvers: fpm(1)=1&lt;BR /&gt;Search interval [1.000000000000000e+004;2.000000000000000e+006]&lt;BR /&gt;Extended Eigensolvers: Size subspace 8&lt;BR /&gt;#Loop | #Eig | Trace | Error-Trace | Max-Residual&lt;/P&gt;
&lt;P&gt;---&amp;gt; phase 10 &amp;lt;---&lt;BR /&gt;Extended Eigensolvers: PROBLEM with input parameters&lt;BR /&gt;==&amp;gt;INFO code =: 1816549376&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Fri, 22 Mar 2013 08:15:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971875#M16733</guid>
      <dc:creator>Nikita_S_1</dc:creator>
      <dc:date>2013-03-22T08:15:12Z</dc:date>
    </item>
    <item>
      <title>And another question is the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971876#M16734</link>
      <description>&lt;P&gt;And another question is the next:&lt;/P&gt;
&lt;P&gt;On phase (ijob=11) I need to solve&amp;nbsp;&lt;STRONG&gt;complex&lt;/STRONG&gt;&amp;nbsp;linear system and want to use&amp;nbsp;&lt;STRONG&gt;iterative&lt;/STRONG&gt;&amp;nbsp;solver for it (that the reason why I don't use predefined eigen solver, I have very big matrices), but I can't find iterative complex RSI solver in MKL.&lt;/P&gt;
&lt;P&gt;Maybe I can bad looking? Maybe there is exist iterative predefined eigen solver or iterative complex RSI linear solver?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2013 09:07:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971876#M16734</guid>
      <dc:creator>Nikita_S_1</dc:creator>
      <dc:date>2013-03-22T09:07:00Z</dc:date>
    </item>
    <item>
      <title>Dear Nikita,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971877#M16735</link>
      <description>&lt;P&gt;Dear Nikita,&lt;/P&gt;
&lt;P&gt;I investigated the issue and the problem appears because of a bug in&amp;nbsp; RCI&amp;nbsp; Extended Eigensolver&amp;nbsp; interfaces from the MKL LP64 binaries. Everything should work well&amp;nbsp;if you link with MKL&amp;nbsp;ILP64 binaries like this&lt;/P&gt;
&lt;P&gt;icc -I$MKL_ROOT/__release_lnx/mkl/include -DMKL_INT="long long" code.cpp $MKL_ROOT/__release_lnx/mkl/lib/intel64/libmkl_intel_ilp64.a -Wl,--start-group $MKL_ROOT/__release_lnx/mkl/lib/intel64/lib/libmkl_intel_thread.a $MKL_ROOT/__release_lnx/mkl/lib/intel64/libmkl_core.a -Wl,--end-group&amp;nbsp;&amp;nbsp;&amp;nbsp;$MKL_ROOT/__release_lnx/compiler/lib/intel64/libiomp5.so -lpthread&lt;/P&gt;
&lt;P&gt;Besides&amp;nbsp;&amp;nbsp;ILP64 RCI interfaces&amp;nbsp;work a bit faster&amp;nbsp;since the&amp;nbsp;computational kernels are ILP64 and &amp;nbsp;additional wrappers are not needed.&lt;/P&gt;
&lt;P&gt;Unfortunately the Intel MKL doesn’t contain any iterative solver for complex linear systems. Feel free to submit a feature request. But you can try the MKL Out-of-Core PARDISO &amp;nbsp;with MKL Extended Eigensolver in the case of large sparse matrices.&lt;/P&gt;
&lt;P&gt;Thanks for catching this issue.&lt;/P&gt;
&lt;P&gt;All the best&lt;/P&gt;
&lt;P&gt;Sergey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2013 10:43:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971877#M16735</guid>
      <dc:creator>Sergey_K_Intel1</dc:creator>
      <dc:date>2013-03-25T10:43:22Z</dc:date>
    </item>
    <item>
      <title>Quote:Sergey Kuznetsov (Intel</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971878#M16736</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Sergey Kuznetsov (Intel) wrote:&lt;BR /&gt;I investigated the issue and the problem appears because of a bug in&amp;nbsp; RCI&amp;nbsp; Extended Eigensolver&amp;nbsp; interfaces from the MKL LP64 binaries. Everything should work well&amp;nbsp;if you link with MKL&amp;nbsp;ILP64 binaries like this&lt;/BLOCKQUOTE&gt;Does you plan to fix this bug in MKL LP64 ? I don't want to use ILP because&amp;nbsp;it causes many problems in my code in other places... =(&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Sergey Kuznetsov (Intel) wrote:&lt;BR /&gt;Unfortunately the Intel MKL doesn’t contain any iterative solver for complex linear systems. Feel free to submit a feature request&lt;/BLOCKQUOTE&gt;Where I need to submit future request? I think this problem was actual 2 years ago:&amp;nbsp;http://software.intel.com/en-us/forums/topic/284068 - but nothing changed to this moment?&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2013 11:26:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971878#M16736</guid>
      <dc:creator>Nikita_S_1</dc:creator>
      <dc:date>2013-03-26T11:26:24Z</dc:date>
    </item>
    <item>
      <title>the issue is escalated - here</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971879#M16737</link>
      <description>&lt;P&gt;the issue is escalated - here is the issue number for you reference :&amp;nbsp;DPD200329829&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2013 12:08:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971879#M16737</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2013-03-26T12:08:47Z</dc:date>
    </item>
    <item>
      <title>where can I monitor the issue</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971880#M16738</link>
      <description>&lt;P&gt;where can I monitor the issue&amp;nbsp;evolution ?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2013 07:27:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971880#M16738</guid>
      <dc:creator>Nikita_S_1</dc:creator>
      <dc:date>2013-03-27T07:27:13Z</dc:date>
    </item>
    <item>
      <title>1. we will let you know here</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971881#M16739</link>
      <description>&lt;P&gt;1. we will let you know here into this thread when the fix of the issue would be available.&lt;/P&gt;&lt;P&gt;2 - you can also find this info into Release Note.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2013 08:57:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971881#M16739</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2013-03-27T08:57:00Z</dc:date>
    </item>
    <item>
      <title>Dear Gennady</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971882#M16740</link>
      <description>&lt;P&gt;Dear Gennady&lt;/P&gt;&lt;P&gt;Did intel fixed this request of iterative sparse solver for complex matrix in any release note.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2019 19:48:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971882#M16740</guid>
      <dc:creator>kumar__aman</dc:creator>
      <dc:date>2019-09-23T19:48:28Z</dc:date>
    </item>
    <item>
      <title>yes, you may try to check the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971883#M16741</link>
      <description>&lt;P&gt;yes, you may try to check the latest 2019 u5 version of MKL and sorry if we missed to update this forum thread.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 02:07:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971883#M16741</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2019-09-24T02:07:36Z</dc:date>
    </item>
    <item>
      <title>Can intel provide me an</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971884#M16742</link>
      <description>&lt;P&gt;Can intel provide me an example code for solving complex linear sparse solver using conjugate gradient.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2019 05:58:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Need-Extended-Eigensolver-RCI-example/m-p/971884#M16742</guid>
      <dc:creator>kumar__aman</dc:creator>
      <dc:date>2019-09-24T05:58:38Z</dc:date>
    </item>
  </channel>
</rss>

