<?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 Romain,  in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028887#M20037</link>
    <description>&lt;P&gt;Hi Romain,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks for asking.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I checked the issue we recorded in internal database, &amp;nbsp;as I see it now,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;To have some progress here we &amp;nbsp;split the problem in two parts: 1) incorrect workspace sizes 2) crash on incorrect input parameter.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;We will try to solve the first one for the next release, so you could at least use MKL. Hopefully then you just will not face the second problem.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;I will notify you when it is available. &amp;nbsp;For now, &amp;nbsp;you may still need the workaround , use the bigger workspace&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Ying&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;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Aug 2014 02:05:09 GMT</pubDate>
    <dc:creator>Ying_H_Intel</dc:creator>
    <dc:date>2014-08-25T02:05:09Z</dc:date>
    <item>
      <title>Problem using pdhseqr</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028883#M20033</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have some trouble using pdhseqr from ScaLAPACK (it is supposed to compute the eigen value and Schur factorization of a matrix already in Hessenberg form). It happens for both pshseqr and pdhseqr. The same happens whether I compile with MSVC 12 or Intel 14. Here is a (as much as possible) minimal code sample. It is C++ but so far I haven't had any problem with other functions from PBLAS or ScaLAPACK.&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;#include "mpi.h"
#include &amp;lt;algorithm&amp;gt;    // std::max
#include &amp;lt;iostream&amp;gt;
#include "mkl.h"

#ifdef _WIN32 /* Win32 or Win64 environment */
#define numroc_ NUMROC
#define descinit_ DESCINIT
#endif 

extern "C" {
	/* Cblacs declarations */
	void Cblacs_get(int, int, int*);
	void Cblacs_gridinit(int*, const char*, int, int);
	void Cblacs_pcoord(int, int, int*, int*);
	void Cblacs_gridexit(int);
	void Cblacs_exit(int);
	
	int numroc_(int*, int*, int*, int*, int*);
	void descinit_(int *, int *, int *, int *, int *, int *, int *,
		int *, int *, int *);

	void pdhseqr_(char *job, char* compz, int* n, int* ilo, int* ihi, double* h, int* desch, double* wr, double* wi, double* z, int* descz, double* work, int* lwork, int* iwork, int* liwork, int* info);
&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;void psgemm_(char*transa, char*transb, int*m, int*n, int*k, float*alpha, float*a, int*ia, int*ja, int*desca, float*b, int*ib, int*jb, int*descb, float*beta, float*c, int*ic, int*jc, int*descc);&lt;/SPAN&gt;&lt;/PRE&gt;

&lt;PRE class="brush:cpp;"&gt;	void pdgemm_(char*transa, char*transb, int*m, int*n, int*k, double*alpha, double*a, int*ia, int*ja, int*desca, double*b, int*ib, int*jb, int*descb, double*beta, double*c, int*ic, int*jc, int*descc);
	void pshseqr_(char *job, char* compz, int* n, int* ilo, int* ihi, float* h, int* desch, float* wr, float* wi, float* z, int* descz, float* work, int* lwork, int* iwork, int* liwork, int* info);
}

inline int indxl2g(int lidx, int sblock, int nprocs, int iproc)
{
	return nprocs*sblock*(lidx / sblock) + lidx%sblock + ((nprocs + iproc - 0) % nprocs)*sblock;
}


int main(int argc, char* argv[])
{
	// Initialize parallel stuff
	int ctxt, myrank, myrow, mycol, numproc;

	MPI::Init();
	myrank = MPI::COMM_WORLD.Get_rank();
	numproc = MPI::COMM_WORLD.Get_size();

	char major = 'R';	// the process grid will be row-major
	int iZERO = 0; int iONE = 1; int iMONE = -1;
	double dZERO = 0.0;  double dONE = 1.0; double dTWO = 2.0;
	float fZERO = 0.0;  float fONE = 1.0; float fTWO = 2.0;

	Cblacs_get(0, 0, &amp;amp;ctxt);	// get the system context
	Cblacs_gridinit(&amp;amp;ctxt, &amp;amp;major, numproc, 1);
	Cblacs_pcoord(ctxt, myrank, &amp;amp;myrow, &amp;amp;mycol);

	// Create a shared matrix
	// Size of the data on the local process
	int M = 10;	int N = 10;
	int block = 10;
	int m = numroc_(&amp;amp;M, &amp;amp;block, &amp;amp;myrow, &amp;amp;iZERO, &amp;amp;numproc);
	int n = numroc_(&amp;amp;N, &amp;amp;block, &amp;amp;mycol, &amp;amp;iZERO, &amp;amp;iONE);

	std::cout &amp;lt;&amp;lt; "m, n: " &amp;lt;&amp;lt; m &amp;lt;&amp;lt; ", " &amp;lt;&amp;lt; n &amp;lt;&amp;lt; std::endl;
	float* H = new float[m*n];
	float* Q = new float[m*n];

	// Finally fill in the BLACS array descriptor
	int descH[9]; int descQ[9]; int info;
	m = std::max(1, m);	// necessary because descinit() will throw if llda is 0

	descinit_(descH, &amp;amp;m, &amp;amp;n, &amp;amp;block, &amp;amp;block, &amp;amp;iZERO, &amp;amp;iZERO, &amp;amp;ctxt, &amp;amp;m, &amp;amp;info);
	descinit_(descQ, &amp;amp;m, &amp;amp;n, &amp;amp;block, &amp;amp;block, &amp;amp;iZERO, &amp;amp;iZERO, &amp;amp;ctxt, &amp;amp;m, &amp;amp;info);


	//Make H and Q upper-Hessenberg
	for (int j = 0; j &amp;lt; m; ++j)
	{
		for (int k = 0; k &amp;lt; n; ++k)
		{
			if (indxl2g(j, block, numproc, myrow) &amp;gt; indxl2g(k, block, 1, mycol) + 0)
			{
				H[j + m*k] = 0;
				Q[j + m*k] = 0;
			}
			else{ H[j + m*k] = 1; Q[j + m*k] = 1; }
		}
	}

	char op = 'N';
	// Compute H &amp;lt;- Q*Q + H, just to check that is works
	psgemm_(&amp;amp;op, &amp;amp;op, &amp;amp;M, &amp;amp;N, &amp;amp;N, &amp;amp;fONE, Q, &amp;amp;iONE, &amp;amp;iONE, descQ, Q, &amp;amp;iONE, &amp;amp;iONE, descQ, &amp;amp;fONE, H, &amp;amp;iONE, &amp;amp;iONE, descH);

	// Check the output
	for (int j = 0; j &amp;lt; m; ++j)
	{
		for (int k = 0; k &amp;lt; n; ++k)
		{
			std::cout &amp;lt;&amp;lt; H[j + m*k] &amp;lt;&amp;lt; "\t";
		}
		std::cout &amp;lt;&amp;lt; std::endl;
	}


	char job = 'S'; char compz = 'I';
	float * wr = new float&lt;N&gt;;	float * wi = new float&lt;N&gt;;
	float lwork = -42.0; int liwork = -42;

	pshseqr_(&amp;amp;job, &amp;amp;compz, &amp;amp;N, &amp;amp;iONE, &amp;amp;N, H, descH, wr, wi, Q, descQ, &amp;amp;lwork, &amp;amp;iMONE, &amp;amp;liwork, &amp;amp;iMONE, &amp;amp;info);
	
	std::cout &amp;lt;&amp;lt; "lwork, liwork: " &amp;lt;&amp;lt; lwork &amp;lt;&amp;lt; ", " &amp;lt;&amp;lt; liwork &amp;lt;&amp;lt; std::endl;
	std::cout &amp;lt;&amp;lt; "info: " &amp;lt;&amp;lt; info &amp;lt;&amp;lt; std::endl;

	int work_size = 10000;
	float work[10000]; int iwork[10000];

	pshseqr_(&amp;amp;job, &amp;amp;compz, &amp;amp;N, &amp;amp;iONE, &amp;amp;N, H, descH, wr, wi, Q, descQ, work, &amp;amp;work_size, iwork, &amp;amp;work_size, &amp;amp;info);
	std::cout &amp;lt;&amp;lt; "info: " &amp;lt;&amp;lt; info &amp;lt;&amp;lt; std::endl;

	Cblacs_gridexit(ctxt);
	Cblacs_exit(0);
	return 0;
}&lt;/N&gt;&lt;/N&gt;&lt;/PRE&gt;

&lt;P&gt;And here is the output:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;D:\lib\pxhseqr_minimal\x64\Debug&amp;gt;mpiexec -n 1 pxhseqr_minimal.exe
m, n: 10, 10
2       3       4       5       6       7       8       9       10      11
0       2       3       4       5       6       7       8       9       10
0       0       2       3       4       5       6       7       8       9
0       0       0       2       3       4       5       6       7       8
0       0       0       0       2       3       4       5       6       7
0       0       0       0       0       2       3       4       5       6
0       0       0       0       0       0       2       3       4       5
0       0       0       0       0       0       0       2       3       4
0       0       0       0       0       0       0       0       2       3
0       0       0       0       0       0       0       0       0       2
lwork, liwork: 894262, -42
info: 0
{   -1,   -1}:  On entry to

job aborted:
rank: node: exit code[: error message]
0: Oz: -1073741819: process 0 exited without calling finalize&lt;/PRE&gt;

&lt;P&gt;If I try to run with Visual Studio's debugger I get this when pdhseqr is called the second time:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;Unhandled exception at 0x00007FF6CA2D8F1D in pxhseqr_minimal.exe: 0xC0000005: Access violation reading location 0x0000000000000007.&lt;/PRE&gt;

&lt;P&gt;I don't know how MKL works, but since the error message is messed up (process coordinates are -1,-1) I think it might be based on an old source where pxerbla was called with only 2 arguments (see line 357&amp;nbsp;&lt;A href="http://www.netlib.org/scalapack/explore-html/d3/d3a/pdhseqr_8f_source.html"&gt;http://www.netlib.org/scalapack/explore-html/d3/d3a/pdhseqr_8f_source.html&lt;/A&gt;&amp;nbsp;).&lt;/P&gt;

&lt;P&gt;Or am I doing something wrong?&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Any help would be very welcome, I have been stuck with having to compute eigen vectors in serial for a while so I would really like to get this routine to work.&lt;/P&gt;

&lt;P&gt;Best,&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Romain&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 May 2014 22:05:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028883#M20033</guid>
      <dc:creator>Romain_F_</dc:creator>
      <dc:date>2014-05-30T22:05:30Z</dc:date>
    </item>
    <item>
      <title>I think it is a problem in</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028884#M20034</link>
      <description>&lt;P&gt;I think it is a problem in MKL. Here is what I did:&lt;/P&gt;

&lt;P&gt;I copied the content of the pdhseqr.f file found on the svn rep of ScaLAPACK (&lt;A href="https://icl.cs.utk.edu/svn/scalapack-dev/scalapack/trunk/SRC/pdhseqr.f"&gt;https://icl.cs.utk.edu/svn/scalapack-dev/scalapack/trunk/SRC/pdhseqr.f&lt;/A&gt;) into a new Fortran project, I gave the routine a different name (&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif; font-size: 1em; line-height: 1.5;"&gt;my_pdhseqr&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;) and compiled it as a static library.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Then I linked my program to this library, and, instead of calling &lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;pdhseqr_&lt;/SPAN&gt;, I called&amp;nbsp;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;my_pdhseqr_&lt;/SPAN&gt;. It kind of works now, but there are still some issues:&amp;nbsp;&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;sometimes the value returned as the required space for the &lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;iwork&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;&amp;nbsp;array is 0, sometimes it is a large negative number. I use the abs() of the returned value and after a few tries it hasn't crashed. Using max(&lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;liwork&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;) seems to sometimes cause crashing. Also, the size &lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;lwork &lt;/SPAN&gt;required for the work array and returned by the routine seems exaggeratedly large: 889416 to decompose a 6-by-6 matrix.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;At least the eigen values and the Schur matrix look legit (more so than the Schur matrix from &lt;/SPAN&gt;&lt;SPAN style="font-family: Consolas, 'Lucida Console', Menlo, Monaco, 'DejaVu Sans Mono', monospace, sans-serif;"&gt;pdlahqr&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;).&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;That being said, it is not very convenient to compile particular functions on the side, especially since my main code is in C++ and I created a mess trying to redefine all the bacs/pblas/... prototypes with the name that the Fortran code is looking for.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jun 2014 22:13:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028884#M20034</guid>
      <dc:creator>Romain_F_</dc:creator>
      <dc:date>2014-06-03T22:13:37Z</dc:date>
    </item>
    <item>
      <title>Hi Romain F.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028885#M20035</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://software.intel.com/en-us/user/1028866" style="font-size: 11px; line-height: 16.5px;"&gt;Romain F.&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Sorry for the slow response. &amp;nbsp;You are right,the mechanism of reporting incorrect input parameters is broken in the function.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;And right, it seems there are some problem also on the workspace reported by the function, we are investigating this.&lt;/P&gt;

&lt;P&gt;But anyway, &amp;nbsp;if you allocate bigger workspace as it was reported by the first query call to the function, you will get right result.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;for example,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;int work_size =std::max(1,(int)lwork);&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;float* work =(float *)malloc(work_size*sizeof(float));&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;int* iwork =(int *) malloc(work_size*sizeof(int));&lt;/P&gt;

&lt;P&gt;Then the function should be work as expected.&lt;/P&gt;

&lt;P&gt;Best Regards,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Ying &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2014 03:26:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028885#M20035</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2014-06-05T03:26:46Z</dc:date>
    </item>
    <item>
      <title>Hi, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028886#M20036</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Is there any news on that topic?&lt;BR /&gt;
	&lt;BR /&gt;
	Best,&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Romain&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2014 11:29:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028886#M20036</guid>
      <dc:creator>Romain_F_</dc:creator>
      <dc:date>2014-08-21T11:29:43Z</dc:date>
    </item>
    <item>
      <title>Hi Romain, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028887#M20037</link>
      <description>&lt;P&gt;Hi Romain,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks for asking.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I checked the issue we recorded in internal database, &amp;nbsp;as I see it now,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;To have some progress here we &amp;nbsp;split the problem in two parts: 1) incorrect workspace sizes 2) crash on incorrect input parameter.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;We will try to solve the first one for the next release, so you could at least use MKL. Hopefully then you just will not face the second problem.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;I will notify you when it is available. &amp;nbsp;For now, &amp;nbsp;you may still need the workaround , use the bigger workspace&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Ying&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;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Aug 2014 02:05:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028887#M20037</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2014-08-25T02:05:09Z</dc:date>
    </item>
    <item>
      <title>Hi Roman, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028888#M20038</link>
      <description>&lt;P&gt;Hi Roman,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I heard from develop team, that the issue will be fixed in latest MKL release. &amp;nbsp;You are welcomed to try it and let us know if any problem.&lt;/P&gt;

&lt;P&gt;You should be get notify when the new release is ready or obverse the notes in forum&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Mon, 10 Nov 2014 05:39:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028888#M20038</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2014-11-10T05:39:29Z</dc:date>
    </item>
    <item>
      <title>Hi Roman, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028889#M20039</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Roman,&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;I'm glad to notify you the issue in p?hseqr and p?gebal functions are fixed in latest release MKL 11.2 update 1, which is available from Intel Registration Center. &amp;nbsp;You are welcomed to try it.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Ying&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Nov 2014 03:06:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028889#M20039</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2014-11-17T03:06:33Z</dc:date>
    </item>
    <item>
      <title>That is very good news,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028890#M20040</link>
      <description>&lt;P&gt;That is very good news, thanks for letting me know.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I will try the new version as soon as I get a chance.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Best,&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Romain&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Dec 2014 14:53:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-using-pdhseqr/m-p/1028890#M20040</guid>
      <dc:creator>Romain_F_</dc:creator>
      <dc:date>2014-12-02T14:53:24Z</dc:date>
    </item>
  </channel>
</rss>

