<?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 Hi Areg, in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066232#M21947</link>
    <description>&lt;P&gt;Hi Areg,&lt;/P&gt;

&lt;P&gt;1. The thing here is that you forgot to check info after feast run. In case of search interval [773, 785] zfeast_hcsrev returned info=3 that corresponds to m0 too small. In fact, there are 144 eigenvalues in that interval.&lt;/P&gt;

&lt;P&gt;2. Unfortunately, this issue I&amp;nbsp;can't reproduce on my side. Both intel and gcc compiler built codes work similar with no crashes. Old Intel compiler as well as feast support 64 bit integers.&lt;/P&gt;

&lt;P&gt;3. That is not expected behavior. Can you give me a reproducer?&lt;/P&gt;

&lt;P&gt;By the way,&amp;nbsp;may I ask you from what kind of application&amp;nbsp;is&amp;nbsp;the eigenvalue problem that you tackle?&lt;/P&gt;

&lt;P&gt;Best regards,&lt;/P&gt;

&lt;P&gt;Irina&lt;/P&gt;</description>
    <pubDate>Mon, 01 Aug 2016 07:34:00 GMT</pubDate>
    <dc:creator>Irina_S_Intel</dc:creator>
    <dc:date>2016-08-01T07:34:00Z</dc:date>
    <item>
      <title>Feast can't find eigenvalues in the specified interval</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066227#M21942</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I am trying to solve eigenvalue problem using zfeast_hcsrev routine, here is the excerpt from my code&lt;/P&gt;

&lt;P&gt;MKL_INT fpm[128];&lt;BR /&gt;
	feastinit(fpm);&lt;BR /&gt;
	fpm[0] = 1;&lt;BR /&gt;
	fpm[1] = 20;&lt;BR /&gt;
	char uplo = 'U';&lt;BR /&gt;
	MKL_INT n = 85;&lt;BR /&gt;
	double emin = 11.4;&lt;BR /&gt;
	double emax = 12;&lt;BR /&gt;
	double epsout;&lt;BR /&gt;
	MKL_INT loop;&lt;BR /&gt;
	MKL_INT m0 = 20;&lt;BR /&gt;
	MKL_INT m;&lt;BR /&gt;
	double en[m0];&lt;BR /&gt;
	std::complex&amp;lt;double&amp;gt;* xeig = new complex&amp;lt;double&amp;gt;[nimbsize * m0];&lt;BR /&gt;
	double res[m0];&lt;BR /&gt;
	MKL_INT info;&lt;BR /&gt;
	zfeast_hcsrev(&amp;amp;uplo, &amp;amp;n, (const MKL_Complex16*) baseHamFull.mat, (const long long int*) baseHamFull.ia,&lt;BR /&gt;
	&amp;nbsp;(const long long int*) baseHamFull.ja, fpm, &amp;amp;epsout, &amp;amp;loop, &amp;amp;emin, &amp;amp;emax,&lt;BR /&gt;
	&amp;nbsp;&amp;amp;m0, en, (MKL_Complex16*) xeig, &amp;amp;m, res, &amp;amp;info);&lt;/P&gt;

&lt;P&gt;And here is what I get:&lt;/P&gt;

&lt;P&gt;Intel MKL Extended Eigensolvers: complex double precision driver&lt;BR /&gt;
	Intel MKL Extended Eigensolvers: List of input parameters fpm(1:64)-- if different from default&lt;BR /&gt;
	Intel MKL Extended Eigensolvers: fpm(1)=1&lt;BR /&gt;
	Intel MKL Extended Eigensolvers: fpm(2)=20&lt;BR /&gt;
	Search interval [1.140000000000000e+01;1.200000000000000e+01]&lt;BR /&gt;
	Intel MKL Extended Eigensolvers: Size subspace 20&lt;BR /&gt;
	#Loop | #Eig&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp; Trace&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; | Error-Trace |&amp;nbsp; Max-Residual&lt;BR /&gt;
	Intel MKL Extended Eigensolvers WARNING: No eigenvalue has been found in the proposed search interval.&lt;BR /&gt;
	==&amp;gt;INFO code =: 1&lt;BR /&gt;
	Intel MKL Extended Eigensolvers WARNING: No eigenvalue has been found in the proposed search interval.&lt;BR /&gt;
	==&amp;gt;INFO code =: 1&lt;BR /&gt;
	1&amp;nbsp;&amp;nbsp; &amp;nbsp;0&lt;/P&gt;

&lt;P&gt;You can see in the files the matrix which I have supplied in CSR format. I know that there are eigenvalues in this range, by solving with different library. Some of the eigenvalues are&lt;/P&gt;

&lt;P&gt;11.8341&amp;nbsp;&amp;nbsp; &amp;nbsp;11.839&amp;nbsp;&amp;nbsp; &amp;nbsp;11.877&amp;nbsp;&amp;nbsp; &amp;nbsp;11.8801&amp;nbsp;&amp;nbsp; &amp;nbsp;11.8922&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9136&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9127&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9215&amp;nbsp;&amp;nbsp; &amp;nbsp;11.929&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9321&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9489&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9538&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9518&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9586&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9678&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9763&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9837&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9935&amp;nbsp;&amp;nbsp; &amp;nbsp;11.9974 12.0009&lt;/P&gt;

&lt;P&gt;Can you say what I am doing wrong? Also in my problems usually I need lowest eigenvalues, but don't usually know the range where to look for them. Is there a way to implement this in Feast or not?&lt;/P&gt;

&lt;P&gt;Thank you for your help.&lt;/P&gt;

&lt;P&gt;Areg Ghazaryan&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Jul 2016 22:59:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066227#M21942</guid>
      <dc:creator>Areg_G_</dc:creator>
      <dc:date>2016-07-19T22:59:50Z</dc:date>
    </item>
    <item>
      <title>Hi Areg,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066228#M21943</link>
      <description>&lt;P&gt;Hi Areg,&lt;/P&gt;

&lt;P&gt;You can&amp;nbsp;do&amp;nbsp;a simple check to prove that the eigenvalues are indeed the ones that you state using &lt;A href="https://en.wikipedia.org/wiki/Gershgorin_circle_theorem"&gt;Gershgorin circles&lt;/A&gt;. Gershgorin theorem states that all eigenvalues lie within so-called Gershgorin circles, thus we can calculate the interval that must contain all eigenvalues as the most left and most right intersection of these circles with the real line.&lt;/P&gt;

&lt;P&gt;The following C code will do this, [min, max] is an interval that contains all eigenvalues for sure:&lt;/P&gt;

&lt;P&gt;void gershgorin_crcl(int n, int *ia, int *ja, MKL_Complex16 *a, double *min, double* max)&lt;BR /&gt;
	{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; int row, col, i, j;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; double *rad = (double *)malloc( n * sizeof(double) );&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; int start_row;....&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; int end_row;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; double left_edge, right_edge;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; *min = 100000000.0;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; *max = -100000000.0;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for( i = 0; i&amp;lt;n; i++ )&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;
	&amp;lt;------&amp;gt;rad&lt;I&gt; = 0.0;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/I&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; for( row = 0; row&amp;lt;n; row++ )&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;
	&amp;lt;------&amp;gt;start_row = ia[row] - 1;&lt;BR /&gt;
	&amp;lt;------&amp;gt;end_row&amp;nbsp;&amp;nbsp; = ia[row+1] - 1;&lt;BR /&gt;
	&amp;lt;------&amp;gt;for (j = start_row + 1; j&amp;lt;end_row; j++)&lt;BR /&gt;
	&amp;lt;------&amp;gt;{&lt;BR /&gt;
	&amp;lt;------&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; col = ja&lt;J&gt;-1;&lt;BR /&gt;
	&amp;lt;------&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; double abs_a = sqrt(a&lt;J&gt;.real*a&lt;J&gt;.real+a&lt;J&gt;.imag*a&lt;J&gt;.imag);&lt;BR /&gt;
	&amp;lt;------&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rad[row] += abs_a;&lt;BR /&gt;
	&amp;lt;------&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; rad[col] += abs_a;&lt;BR /&gt;
	&amp;lt;------&amp;gt;}&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; for ( row = 0; row&amp;lt;n; row++ )&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;BR /&gt;
	&amp;lt;------&amp;gt;start_row&amp;nbsp; = ia[row] - 1;&lt;BR /&gt;
	&amp;lt;------&amp;gt;left_edge&amp;nbsp; = a[start_row].real - rad[row];&lt;BR /&gt;
	&amp;lt;------&amp;gt;right_edge = a[start_row].real + rad[row];&lt;BR /&gt;
	&amp;lt;------&amp;gt;if ( *min &amp;gt; left_edge ) *min = left_edge;&lt;BR /&gt;
	&amp;lt;------&amp;gt;if ( *max &amp;lt; right_edge )*max = right_edge;&amp;lt;----&amp;gt;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; free(rad);&lt;BR /&gt;
	}&lt;/J&gt;&lt;/J&gt;&lt;/J&gt;&lt;/J&gt;&lt;/J&gt;&lt;/P&gt;

&lt;P&gt;I ran it on your matrix and the answer I got is the following:&lt;/P&gt;

&lt;P&gt;min = 497.979941 max = 580.954978&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Now I run zfeast_hcsrev&amp;nbsp;on [min, max] and get all 85 eigenvalues.&lt;/P&gt;

&lt;P&gt;E[0]=525.897983&lt;BR /&gt;
	E[1]=526.117500&lt;BR /&gt;
	E[2]=527.806863&lt;BR /&gt;
	E[3]=527.943623&lt;BR /&gt;
	E[4]=528.479884&lt;BR /&gt;
	E[5]=529.392685&lt;BR /&gt;
	E[6]=529.433090&lt;BR /&gt;
	E[7]=529.781798&lt;BR /&gt;
	...&lt;/P&gt;

&lt;P&gt;E[82]=550.344795&lt;BR /&gt;
	E[83]=553.120385&lt;BR /&gt;
	E[84]=556.137079&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Please make sure that your matrix is correct.&lt;/P&gt;

&lt;P&gt;Best regards,&lt;/P&gt;

&lt;P&gt;Irina&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 11:33:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066228#M21943</guid>
      <dc:creator>Irina_S_Intel</dc:creator>
      <dc:date>2016-07-26T11:33:39Z</dc:date>
    </item>
    <item>
      <title>Hi Irina,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066229#M21944</link>
      <description>&lt;P&gt;Hi Irina,&lt;/P&gt;

&lt;P&gt;Thank you for your help. I had indeed an error, in the sense that in different package I had multiplication factor, so the range which I was specifying for Feast was wrong. Once I have corrected that I got the right eigenvalues. I have two separate questions:&lt;/P&gt;

&lt;P&gt;1. I noticed that if I increase emax, so that m gets closer to m0, the found eigenvalues become wrong. I know that this was written in the documentation, so this is natural. So do you have some kind of suggestion how to specify emin and emax. The Gershgorin method, I think is not helpful for me, because the matrix which I have provided is just an example. Usually my matrices have a size from 500000 to 1000000 and I only need smallest 30-40 eigenvalues, therefore specifying emax is still unclear for me, because the eigenvalues are closely spaced and if I specify slightly bigger range I get wrong result. Of course I can write iterative code, so that if m0 &amp;lt; 1.5 m to decrease emax, but that will make the calculation very time consuming, because it should get the eigenvalues several times.&lt;/P&gt;

&lt;P&gt;2. My second question is related to the compiler. I compiled first locally at my computer with MKL 11.3.2 and gcc 4.8 and I got the results. Later I tried to compile on shared memory machine with mkl/2015.1.135 and intel compiler&amp;nbsp;15.0.1.133, but I get segmentation fault. Here is my compilation command:&lt;/P&gt;

&lt;P&gt;&amp;nbsp;icpc job101.cpp basis.cpp opermask.cpp -std=c++11 -Wall -g -DMKL_ILP64 -qopenmp -mkl=parallel -o job101 -L/share/apps/gsl/1.16/lib/ -lpthread -lm -ldl -lgsl -lgslcblas&lt;/P&gt;

&lt;P&gt;What I am doing wrong here.&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;

&lt;P&gt;Areg&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jul 2016 20:52:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066229#M21944</guid>
      <dc:creator>Areg_G_</dc:creator>
      <dc:date>2016-07-26T20:52:13Z</dc:date>
    </item>
    <item>
      <title>Hi Areg,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066230#M21945</link>
      <description>&lt;P&gt;Hi Areg,&lt;/P&gt;

&lt;P&gt;1. Wrong eigenvalues is not expected behavior of Extended Eigensolver, can you please provide a reproducer of the issue? We indeed recommend to set m0 a 1.5 times larger but that is to make sure that all eigenvalues within the search interval are found. Eigenvalues that lie very close to the edge of an interval can probably&amp;nbsp;be lost but all the eigenvalues found will be correct. For that reason you can always make your interval a bit larger.&amp;nbsp;There is also a way how you can calculate number of eigenvalues within your interval exactly using Sylvester's law of inertias:&lt;/P&gt;

&lt;P&gt;run phase 11, phase 22 of Intel MKL PARDISO with matrix A-emaxI (I - identity matrix)&amp;nbsp;with&amp;nbsp;&amp;nbsp;iparm[22]=1. After phase 22 iparm[22] will contain number of&amp;nbsp;negative eigenvalues of A-emaxI or (what's the same) number of eigenvalues of A that are smaller than emax. This will give you an exact number of eigenvalues within [emin, emax]. For more info please see Pardiso documentation page&amp;nbsp;&lt;A href="https://software.intel.com/en-us/node/521678"&gt;https://software.intel.com/en-us/node/521678.&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;2. Looks fine, can you please&amp;nbsp;send me source files so I could reproduce it with your options.&lt;/P&gt;

&lt;P&gt;Best regards,&lt;/P&gt;

&lt;P&gt;Irina&lt;/P&gt;</description>
      <pubDate>Wed, 27 Jul 2016 06:08:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066230#M21945</guid>
      <dc:creator>Irina_S_Intel</dc:creator>
      <dc:date>2016-07-27T06:08:00Z</dc:date>
    </item>
    <item>
      <title>Hi Irina,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066231#M21946</link>
      <description>&lt;P&gt;Hi Irina,&lt;/P&gt;

&lt;P&gt;1. Please see the source code attached. Change emax on line 93 in job101.cpp 780, 785, 790 and you will see that each time it will give different eigenvalues. Please check that out, and if it is normal then I will use&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Sylvester's law of inertias, which you have suggested.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;2. I compile the code with gcc&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;g++ job101.cpp basis.cpp opermask.cpp -std=c++11 -Wall -O2 -DMKL_ILP64 -fopenmp -m64 -o job101 -L/share/apps/gsl/1.16_gcc/lib -lgsl -lgslcblas -Wl,--no-as-needed -L${MKLROOT}/lib/intel64 -lmkl_intel_ilp64 -lmkl_core -lmkl_gnu_thread -lpthread -lm&lt;/P&gt;

&lt;P&gt;and with intel compiler&amp;nbsp;&lt;/P&gt;

&lt;P&gt;icpc job101.cpp basis.cpp opermask.cpp -std=c++11 -Wall -g -DMKL_ILP64 -qopenmp -mkl=parallel -o job101 -L/share/apps/gsl/1.16/lib/ -lpthread -lm -ldl -lgsl -lgslcblas&lt;/P&gt;

&lt;P&gt;As I said before it runs normal when compiled with gcc, but gives segmentation fault when compiled with intel compiler. I presume, that this happens, because the old intel compiler (&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;mkl version 2015.1.135 and intel compiler&amp;nbsp;15.0.1.133&lt;/SPAN&gt;) does not fully use 64 bit integers in the internals of feast.&lt;/P&gt;

&lt;P&gt;3. I have another issue related to memory. The memory consumption of feast is huge, for the matrix which uses 600 MB of memory, feast uses 50Gb. Is this normal or something should be changed in the code?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Areg&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Jul 2016 00:14:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066231#M21946</guid>
      <dc:creator>Areg_G_</dc:creator>
      <dc:date>2016-07-28T00:14:32Z</dc:date>
    </item>
    <item>
      <title>Hi Areg,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066232#M21947</link>
      <description>&lt;P&gt;Hi Areg,&lt;/P&gt;

&lt;P&gt;1. The thing here is that you forgot to check info after feast run. In case of search interval [773, 785] zfeast_hcsrev returned info=3 that corresponds to m0 too small. In fact, there are 144 eigenvalues in that interval.&lt;/P&gt;

&lt;P&gt;2. Unfortunately, this issue I&amp;nbsp;can't reproduce on my side. Both intel and gcc compiler built codes work similar with no crashes. Old Intel compiler as well as feast support 64 bit integers.&lt;/P&gt;

&lt;P&gt;3. That is not expected behavior. Can you give me a reproducer?&lt;/P&gt;

&lt;P&gt;By the way,&amp;nbsp;may I ask you from what kind of application&amp;nbsp;is&amp;nbsp;the eigenvalue problem that you tackle?&lt;/P&gt;

&lt;P&gt;Best regards,&lt;/P&gt;

&lt;P&gt;Irina&lt;/P&gt;</description>
      <pubDate>Mon, 01 Aug 2016 07:34:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066232#M21947</guid>
      <dc:creator>Irina_S_Intel</dc:creator>
      <dc:date>2016-08-01T07:34:00Z</dc:date>
    </item>
    <item>
      <title>Hi</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066233#M21948</link>
      <description>&lt;P&gt;h&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jul 2018 16:49:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066233#M21948</guid>
      <dc:creator>kumar__aman</dc:creator>
      <dc:date>2018-07-13T16:49:00Z</dc:date>
    </item>
    <item>
      <title>Is there any reproducer?  You</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066234#M21949</link>
      <description>&lt;P&gt;Is there any reproducer?&amp;nbsp;&amp;nbsp;You may also try the latest mkl 2019 u1 we released the last week&amp;nbsp;and check if the problem exists with this update.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Nov 2018 03:45:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Feast-can-t-find-eigenvalues-in-the-specified-interval/m-p/1066234#M21949</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2018-11-12T03:45:47Z</dc:date>
    </item>
  </channel>
</rss>

