<?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 Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863808#M7697</link>
    <description>&lt;DIV style="margin:0px;"&gt;Hello Ringle,&lt;BR /&gt;1)Yes, you can try to use only dynamic linking without this libraries( these libs are deprecated libraries since the next update of MKL - MKL 10.2 Update 2).&lt;BR /&gt;2) the snip of the code you provided is not complete. Could you get the testcase and the input data you are using for reproducing the problem? You can use private tread for sending this data. We will check this problem.&lt;BR /&gt;--Gennady&lt;/DIV&gt;</description>
    <pubDate>Mon, 05 Oct 2009 06:16:02 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2009-10-05T06:16:02Z</dc:date>
    <item>
      <title>Snow Leopard + MKL 10.2 update 2 breaks working PARDISO code</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863801#M7690</link>
      <description>Greetings,
&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;I had a working project built in Xcode using PARDISO using Leopard and the MKL version distributed with the 11.1.056 Intel C++ compiler. I work on two machines, a Penryn macbook pro and a Nehalem 8 core mac pro. After upgrading both to Snow Leopard and installing the 11.1.067 version of the c++ compiler and accompanying verison of MKL I have run into issues. I uninstalled all previous versions of the c++ compiler and MKL.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;Using the link line advisor the linking has changed slightly from what I was previously using. Using the new link line doesn't fix the problem, though, and this is the link line it advises to use:&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; font-family: 'Lucida Grande', sans-serif; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;-L$MKLPATH $MKLPATH/libmkl_solver_lp64.a -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -openmp -lpthread&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="font-family: 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;I get a segmentation fault when running the code after it has successfully compiled and linked.  I set iparm(27)=1 to see if there are any problems with my input matrix, but it returns no errors.  The segmentation fault seems to happen randomly as PARDISO is called.  If I use the debugger and run PARDISO a few times until the fault appears I receive &lt;SPAN style="border-collapse: separate; white-space: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; font-family: Menlo, sans-serif;"&gt;EXC_BAD_ACCESS in mkl_blas_xcswap. Any advice would be appreciated. Thanks!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 24 Sep 2009 13:59:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863801#M7690</guid>
      <dc:creator>ringlenscl_msu_edu</dc:creator>
      <dc:date>2009-09-24T13:59:17Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863802#M7691</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Below is the routine which calls PARDISO. There are multiple calls made within a loop where new matrices are calculated and solved (lhsmatrix and rhsvector are recalculated in calcLHSMatrix(n) and calcRHSVector(n)). Now the segmentation fault doesn't happen all of the time, as mentioned previously. The loop below can be run several times without it ever popping up. When it does happen, though, it's always on the first call (n=0) and during the numerical factorization (phase = 22) portion. If I set msglvl=1, the fault occurs at some point when the "Percentage of computed non-zeros for LL^T factorization" message appears.&lt;/DIV&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;I should also mention that I ran the complex, unsymmetric example and it doesn't seem to suffer from a segmentation fault, but I didn't run it through as many iterations. Any thoughts or suggestions would be appreciated. Thanks!&lt;/DIV&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Ryan&lt;/DIV&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="color: #cd00a3;"&gt;bool&lt;/SPAN&gt; &lt;SPAN style="color: #3a8288;"&gt;cylpotsolver&lt;/SPAN&gt;::solveLinSys3()&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;{&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;//same as solveLinSys2 except slightly rearranged&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #205a5e;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;calcRowsandCols&lt;SPAN style="color: #000000;"&gt;();&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #cd00a3;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;long&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;long&lt;SPAN style="color: #000000;"&gt; *pt = &lt;/SPAN&gt;new&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;long&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;long&lt;SPAN style="color: #000000;"&gt;[&lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;64&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;for&lt;/SPAN&gt;(&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; &lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;=&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;; &lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;&amp;lt;&lt;SPAN style="color: #2700dc;"&gt;64&lt;/SPAN&gt;; &lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;++)&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;pt[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;]=&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; *iparm = &lt;SPAN style="color: #cd00a3;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt;[&lt;SPAN style="color: #2700dc;"&gt;64&lt;/SPAN&gt;];&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;iparm[&lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;] = &lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;; &lt;/SPAN&gt;//use default parameters&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;iparm[&lt;SPAN style="color: #2700dc;"&gt;1&lt;/SPAN&gt;] = &lt;SPAN style="color: #2700dc;"&gt;3&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;iparm[&lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;26&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;]=&lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;; &lt;/SPAN&gt;//check data structure if equal to 1&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;iparm[&lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;59&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;] = &lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;; &lt;/SPAN&gt;//use in-core pardiso&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; maxfct = &lt;SPAN style="color: #2700dc;"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; mnum = &lt;SPAN style="color: #2700dc;"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; mtype = &lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;13&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;; &lt;/SPAN&gt;//unsymmetric and complex matrix&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt; phase = &lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;13&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;; &lt;/SPAN&gt;//analysis,numerical factorization,solve,iterative refinement&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; numeqs = nrad*nz;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; *perm;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; nrhs = &lt;SPAN style="color: #2700dc;"&gt;1&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; msglvl = &lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #3a8288;"&gt;complex16&lt;/SPAN&gt; *x = &lt;SPAN style="color: #cd00a3;"&gt;new&lt;/SPAN&gt; &lt;SPAN style="color: #3a8288;"&gt;complex16&lt;/SPAN&gt;[nrad*nz];&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; error;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;for&lt;/SPAN&gt;(&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; n=&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;; n&amp;lt;=ntheta/&lt;SPAN style="color: #2700dc;"&gt;2&lt;/SPAN&gt;; n++)&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;{&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #205a5e;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;calcLHSMatrix&lt;SPAN style="color: #000000;"&gt;(n);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #205a5e;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;calcRHSVector&lt;SPAN style="color: #000000;"&gt;(n);&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #e50000;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;cout&amp;lt;&amp;lt;&lt;/SPAN&gt;"Solving for n = "&lt;SPAN style="color: #000000;"&gt;&amp;lt;&lt;N&gt;&amp;lt;&amp;lt;&lt;/N&gt;&lt;/SPAN&gt;"...n"&lt;SPAN style="color: #000000;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;/*&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt; Call the linear system solver. See the Intel math kernel library docs for&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt; more info&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt; */&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #e50000;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;cout&amp;lt;&amp;lt;&lt;/SPAN&gt;"calling solver...n"&lt;SPAN style="color: #000000;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #814726;"&gt;PARDISO&lt;/SPAN&gt;(pt, &amp;amp;maxfct, &amp;amp;mnum, &amp;amp;mtype, &amp;amp;phase, &amp;amp;numeqs, lhsmatrix, rows,&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;columns, perm, &amp;amp;nrhs, iparm, &amp;amp;msglvl, rhsvector, x, &amp;amp;error);&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;cout&amp;lt;&amp;lt;&lt;SPAN style="color: #e50000;"&gt;"error = "&lt;/SPAN&gt;&amp;lt;&lt;ERROR&gt;&amp;lt;&amp;lt;&lt;SPAN style="color: #e50000;"&gt;"...n"&lt;/SPAN&gt;;&lt;/ERROR&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;phase = -&lt;/SPAN&gt;&lt;SPAN style="color: #2700dc;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="color: #000000;"&gt;; &lt;/SPAN&gt;//clear memory used by PARDISO&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #e50000;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;cout&amp;lt;&amp;lt;&lt;/SPAN&gt;"clearing memory...n"&lt;SPAN style="color: #000000;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #814726;"&gt;PARDISO&lt;/SPAN&gt;(pt, &amp;amp;maxfct, &amp;amp;mnum, &amp;amp;mtype, &amp;amp;phase, &amp;amp;numeqs, lhsmatrix, rows,&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;columns, perm, &amp;amp;nrhs, iparm, &amp;amp;msglvl, rhsvector, x, &amp;amp;error);&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;//u_(-n)=conj(u_n)&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;for&lt;/SPAN&gt;(&lt;SPAN style="color: #cd00a3;"&gt;int&lt;/SPAN&gt; &lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;=&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;; &lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;&lt;NRAD&gt;i++) //copy solved data to another array&lt;/NRAD&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;{&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;if&lt;/SPAN&gt;(n==&lt;SPAN style="color: #2700dc;"&gt;0&lt;/SPAN&gt;)&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;{&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;potdata[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;*ntheta].&lt;SPAN style="color: #3a8288;"&gt;re&lt;/SPAN&gt; = x[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;].&lt;SPAN style="color: #3a8288;"&gt;re&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;potdata[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;*ntheta].&lt;SPAN style="color: #3a8288;"&gt;im&lt;/SPAN&gt; = x[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;].&lt;SPAN style="color: #3a8288;"&gt;im&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;}&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;else&lt;/SPAN&gt; &lt;SPAN style="color: #cd00a3;"&gt;if&lt;/SPAN&gt;(n==ntheta/&lt;SPAN style="color: #2700dc;"&gt;2&lt;/SPAN&gt;)&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;{&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;potdata[ntheta/&lt;SPAN style="color: #2700dc;"&gt;2&lt;/SPAN&gt;+&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;*ntheta].&lt;SPAN style="color: #3a8288;"&gt;re&lt;/SPAN&gt;=x[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;].&lt;SPAN style="color: #3a8288;"&gt;re&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;potdata[ntheta/&lt;SPAN style="color: #2700dc;"&gt;2&lt;/SPAN&gt;+&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;*ntheta].&lt;SPAN style="color: #3a8288;"&gt;im&lt;/SPAN&gt;=x[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;].&lt;SPAN style="color: #3a8288;"&gt;im&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;}&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #cd00a3;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;else&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;{&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;potdata[n+&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;*ntheta].&lt;SPAN style="color: #3a8288;"&gt;re&lt;/SPAN&gt;=x[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;].&lt;SPAN style="color: #3a8288;"&gt;re&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;potdata[n+&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;*ntheta].&lt;SPAN style="color: #3a8288;"&gt;im&lt;/SPAN&gt;=x[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;].&lt;SPAN style="color: #3a8288;"&gt;im&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;potdata[ntheta-n+&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;*ntheta].&lt;SPAN style="color: #3a8288;"&gt;re&lt;/SPAN&gt;=x[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;].&lt;SPAN style="color: #3a8288;"&gt;re&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;potdata[ntheta-n+&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;*ntheta].&lt;SPAN style="color: #3a8288;"&gt;im&lt;/SPAN&gt;=-x[&lt;SPAN style="color: #3a8288;"&gt;i&lt;/SPAN&gt;].&lt;SPAN style="color: #3a8288;"&gt;im&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;}&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;}&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #008b00;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;//&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;cout&amp;lt;&amp;lt;"done."&amp;lt;&lt;ENDL&gt;
&lt;/ENDL&gt;&lt;/P&gt;&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;}&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; min-height: 13.0px;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #cd00a3;"&gt;delete&lt;/SPAN&gt; [] x,pt,iparm,perm;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #cd00a3;"&gt;&lt;SPAN style="color: #000000;"&gt;&lt;SPAN style="white-space: pre;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;return&lt;SPAN style="color: #000000;"&gt; &lt;/SPAN&gt;true&lt;SPAN style="color: #000000;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo;"&gt;}&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 25 Sep 2009 19:07:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863802#M7691</guid>
      <dc:creator>ringlenscl_msu_edu</dc:creator>
      <dc:date>2009-09-25T19:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863803#M7692</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/441606"&gt;ringlenscl.msu.edu&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Greetings,
&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;I had a working project built in Xcode using PARDISO using Leopard and the MKL version distributed with the 11.1.056 Intel C++ compiler. I work on two machines, a Penryn macbook pro and a Nehalem 8 core mac pro. After upgrading both to Snow Leopard and installing the 11.1.067 version of the c++ compiler and accompanying verison of MKL I have run into issues. I uninstalled all previous versions of the c++ compiler and MKL.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;Using the link line advisor the linking has changed slightly from what I was previously using. Using the new link line doesn't fix the problem, though, and this is the link line it advises to use:&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; font-family: 'Lucida Grande', sans-serif; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;-L$MKLPATH $MKLPATH/libmkl_solver_lp64.a -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -openmp -lpthread&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="font-family: 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;I get a segmentation fault when running the code after it has successfully compiled and linked. I set iparm(27)=1 to see if there are any problems with my input matrix, but it returns no errors. The segmentation fault seems to happen randomly as PARDISO is called. If I use the debugger and run PARDISO a few times until the fault appears I receive &lt;SPAN style="border-collapse: separate; white-space: normal; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; font-family: Menlo, sans-serif;"&gt;EXC_BAD_ACCESS in mkl_blas_xcswap. Any advice would be appreciated. Thanks!&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi ringle, &lt;BR /&gt;this is well known limitation with the latest Intel MKL's version dealt with XCode 3.2.&lt;BR /&gt;Please refer tothe&lt;A href="http://software.intel.com/en-us/articles/known-limitations-in-intel-mkl-10-2/"&gt;http://software.intel.com/en-us/articles/known-limitations-in-intel-mkl-10-2/&lt;/A&gt; article.&lt;BR /&gt;--Gennady</description>
      <pubDate>Mon, 28 Sep 2009 07:42:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863803#M7692</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-09-28T07:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863804#M7693</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Hi ringle, &lt;BR /&gt;this is well known limitation with the latest Intel MKL's version dealt with XCode 3.2.&lt;BR /&gt;Please refer tothe&lt;A href="http://software.intel.com/en-us/articles/known-limitations-in-intel-mkl-10-2/"&gt;http://software.intel.com/en-us/articles/known-limitations-in-intel-mkl-10-2/&lt;/A&gt; article.&lt;BR /&gt;--Gennady&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;It should be noticed that this limitation doesn't affect dynamic libraries. &lt;BR /&gt;the similar probelm was disscused in&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=68104as"&gt;http://software.intel.com/en-us/forums/showthread.php?t=68104as&lt;/A&gt; well.&lt;BR /&gt;--Gennady</description>
      <pubDate>Mon, 28 Sep 2009 07:49:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863804#M7693</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-09-28T07:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863805#M7694</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;It should be noticed that this limitation doesn't affect dynamic libraries. &lt;BR /&gt;the similar probelm was disscused in&lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=68104as"&gt;http://software.intel.com/en-us/forums/showthread.php?t=68104as&lt;/A&gt; well.&lt;BR /&gt;--Gennady &lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Hi,
&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Thanks for your reply. I looked at the first link and the only relevant entry that I saw was:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333; line-height: 16px;"&gt;To bind with static libraries for the Intel 64 architecture, you need Xcode* version 2.4.1 as the linkers which come with earlier Xcode* versions fail to bind. This limitation doesn't affect dynamic libraries, nor any IA-32 libraries.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="line-height: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="line-height: 16px;"&gt;Yet this seems to indicate that Xcode 2.4.1 is the earliest version which is usuable. Am I missing something? Also, the second link you posted leads to a page not found error. Anyway, are there any workarounds for this problem? Can one use 32 bit libraries, or is it a consequence of the static linking of the solver library? Thanks for your time.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="line-height: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="line-height: 16px;"&gt;Ryan&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 28 Sep 2009 13:25:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863805#M7694</guid>
      <dc:creator>ringlenscl_msu_edu</dc:creator>
      <dc:date>2009-09-28T13:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863806#M7695</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/441606"&gt;ringlenscl.msu.edu&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;Hi,
&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;Thanks for your reply. I looked at the first link and the only relevant entry that I saw was:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333; line-height: 16px;"&gt;To bind with static libraries for the Intel 64 architecture, you need Xcode* version 2.4.1 as the linkers which come with earlier Xcode* versions fail to bind. This limitation doesn't affect dynamic libraries, nor any IA-32 libraries.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="line-height: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="line-height: 16px;"&gt;Yet this seems to indicate that Xcode 2.4.1 is the earliest version which is usuable. Am I missing something? Also, the second link you posted leads to a page not found error. Anyway, are there any workarounds for this problem? Can one use 32 bit libraries, or is it a consequence of the static linking of the solver library? Thanks for your time.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="line-height: 16px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="color: #333333;"&gt;&lt;SPAN style="line-height: 16px;"&gt;Ryan&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Try this link: &lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=68104"&gt;http://software.intel.com/en-us/forums/showthread.php?t=68104&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Try linking with dylibs instead of static libs.&lt;BR /&gt;</description>
      <pubDate>Mon, 28 Sep 2009 16:48:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863806#M7695</guid>
      <dc:creator>Quoc-An_L_Intel</dc:creator>
      <dc:date>2009-09-28T16:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863807#M7696</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334122"&gt;Qale (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;Try this link: &lt;A href="http://software.intel.com/en-us/forums/showthread.php?t=68104"&gt;http://software.intel.com/en-us/forums/showthread.php?t=68104&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Try linking with dylibs instead of static libs.&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Greetings,
&lt;DIV&gt;&lt;SPAN style="font-family: Verdana, Arial, Helvetica, sans-serif;"&gt;I started out with the link line suggested by the link line advisor:&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;BR /&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="font-family: 'Lucida Grande'; border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;-L$MKLPATH $MKLPATH/libmkl_solver_lp64.a -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -openmp -lpthread&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="font-family: 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;By reading the MKL documentation it looks like &lt;SPAN style="font-family: 'Lucida Grande', sans-serif;"&gt;$MKLPATH/libmkl_solver_lp64.a isn't required and one can use&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="font-family: 'Lucida Grande', sans-serif;"&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;&lt;SPAN style="font-family: 'Lucida Grande', sans-serif;"&gt;-lmkl_intel_lp64 -lmkl_intel_thread -lmkl_lapack -lmkl_core -openmp -lpthread,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;instead, which is what I tried (all dylibs).  Everything links fine but the segmentation fault still occurs randomly and when it doesn't, the output is still wrong. &lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;Ryan&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN style="border-collapse: collapse; white-space: pre-wrap; -webkit-border-horizontal-spacing: 5px; -webkit-border-vertical-spacing: 5px;"&gt;CORRECTION:  When the code runs and the segmentation fault doesn't occur the output is correct.&lt;/SPAN&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 28 Sep 2009 20:29:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863807#M7696</guid>
      <dc:creator>ringlenscl_msu_edu</dc:creator>
      <dc:date>2009-09-28T20:29:30Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863808#M7697</link>
      <description>&lt;DIV style="margin:0px;"&gt;Hello Ringle,&lt;BR /&gt;1)Yes, you can try to use only dynamic linking without this libraries( these libs are deprecated libraries since the next update of MKL - MKL 10.2 Update 2).&lt;BR /&gt;2) the snip of the code you provided is not complete. Could you get the testcase and the input data you are using for reproducing the problem? You can use private tread for sending this data. We will check this problem.&lt;BR /&gt;--Gennady&lt;/DIV&gt;</description>
      <pubDate>Mon, 05 Oct 2009 06:16:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863808#M7697</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-10-05T06:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863809#M7698</link>
      <description>&lt;DIV style="margin: 0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;Hello Ringle,&lt;BR /&gt;1)Yes, you can try to use only dynamic linking without this libraries( these libs are deprecated libraries since the next update of MKL - MKL 10.2 Update 2).&lt;BR /&gt;2) the snip of the code you provided is not complete. Could you get the testcase and the input data you are using for reproducing the problem? You can use private tread for sending this data. We will check this problem.&lt;BR /&gt;--Gennady&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;I ran across this when I was testing a fresh install of the 11.1 compilers on SL. You have a testcase in hand already - it's in the mkl/tests/ directory:&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro ~]$ cd /opt/intel/Compiler/11.1/067/bin&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro bin]$ . iccvars.sh intel64&lt;BR /&gt;[waisaacs@waisaacsmacbookpro bin]$ . ifortvars.sh intel64&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro bin]$ echo $MKLROOT&lt;BR /&gt;/opt/intel/Compiler/11.1/067/Frameworks/mkl&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro bin]$ ifort -V&lt;BR /&gt;Intel Fortran Intel 64 Compiler Professional for applications running on Intel 64, Version 11.1 Build 20090827 Package ID: m_cprof_p_11.1.067&lt;BR /&gt;Copyright (C) 1985-2009 Intel Corporation. All rights reserved.&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro bin]$ cd ../Frameworks/mkl/tests/blas/&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro blas]$ make libem64t&lt;BR /&gt;make s1sparse.res d1sparse.res c1sparse.res z1sparse.res sblat1.res dblat1.res cblat1.res zblat1.res cblat1_f.res sblat2.res dblat2.res cblat2.res zblat2.res sblat3.res dblat3.res cblat3.res zblat3.res EXT=a _IA=em64t RES_EXT=lib&lt;BR /&gt;mkdir -p ./_results/intel_lp64_parallel_em64t_lib&lt;BR /&gt;ifort -w -O0 -vec-report0 source/s1sparse.f source/auxspars.f -L"/opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t" "/opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t"/libmkl_intel_lp64.a "/opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t"/libmkl_intel_thread.a "/opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t"/libmkl_core.a "/opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t"/libmkl_intel_thread.a "/opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t"/libmkl_core.a -L"/opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t" -liomp5 -lpthread -o _results/intel_lp64_parallel_em64t_lib/s1sparse.out&lt;BR /&gt;ld: in /opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t/libmkl_core.a(_mc3_cscal.o), ObjectFileAddressSpace::mappedAddress(0xFFFFFFFFFFFFFFFC) not in any section&lt;BR /&gt;make[1]: *** [s1sparse.res] Error 1&lt;BR /&gt;make: *** [libem64t] Error 2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;William&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Oct 2009 02:25:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863809#M7698</guid>
      <dc:creator>William_Isaacs</dc:creator>
      <dc:date>2009-10-08T02:25:46Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863810#M7699</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;&lt;BR /&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;ld: in /opt/intel/Compiler/11.1/067/Frameworks/mkl/lib/em64t/libmkl_core.a(_mc3_cscal.o), ObjectFileAddressSpace::mappedAddress(0xFFFFFFFFFFFFFFFC) not in any section&lt;BR /&gt;make[1]: *** [s1sparse.res] Error 1&lt;BR /&gt;make: *** [libem64t] Error 2&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Perhaps redundant, but this is mkl 10.2 update 2:&lt;BR /&gt;&lt;BR /&gt;from the examples/versionquery directory:&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro versionquery]$ make libem64t&lt;BR /&gt;make getversionstring_c.res getversion_tst.res getversionstring_f.res _IA=em64t EXT=a RES_EXT=lib&lt;BR /&gt;mkdir -p ./_results/intel_lp64_parallel_em64t_lib&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro versionquery]$ cat _results/intel_lp64_parallel_em64t_lib/getversion_tst.res&lt;BR /&gt;Major version: 10&lt;BR /&gt;Minor version: 2&lt;BR /&gt;Update version: 2&lt;BR /&gt;Product status: Product&lt;BR /&gt;Build: 20090814&lt;BR /&gt;Processor optimization: Intel Core 2 Duo Processor&lt;BR /&gt;================================================================&lt;BR /&gt;&lt;BR /&gt;[waisaacs@waisaacsmacbookpro versionquery]$ &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 08 Oct 2009 19:08:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863810#M7699</guid>
      <dc:creator>William_Isaacs</dc:creator>
      <dc:date>2009-10-08T19:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863811#M7700</link>
      <description>&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
Willian,I noticed you linked statically. This is well known problem for SnowLeo.&lt;BR /&gt;Please try to use dynamic linking by make soem64t instead of libem64t.&lt;BR /&gt;--Gennady&lt;BR /&gt;</description>
      <pubDate>Fri, 09 Oct 2009 04:01:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863811#M7700</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-10-09T04:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: Snow Leopard + MKL 10.2 update 2 breaks working PARDISO cod</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863812#M7701</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; Willian,I noticed you linked statically. This is well known problem for SnowLeo.&lt;BR /&gt;Please try to use dynamic linking by make soem64t instead of libem64t.&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;&lt;SPAN style="font-size: small;"&gt;Hello,&lt;BR /&gt;&lt;/SPAN&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;o:OfficeDocumentSettings&gt; &lt;o:AllowPNG /&gt; &lt;/o:OfficeDocumentSettings&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;w:WordDocument&gt; &lt;w:View&gt;Normal&lt;/w:View&gt; &lt;w:Zoom&gt;0&lt;/w:Zoom&gt; &lt;w:TrackMoves /&gt; &lt;w:TrackFormatting /&gt; &lt;w:PunctuationKerning /&gt; &lt;w:ValidateAgainstSchemas /&gt; &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt; &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt; &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt; &lt;w:DoNotPromoteQF /&gt; &lt;w:LidThemeOther&gt;EN-US&lt;/w:LidThemeOther&gt; &lt;w:LidThemeAsian&gt;X-NONE&lt;/w:LidThemeAsian&gt; &lt;w:LidThemeComplexScript&gt;X-NONE&lt;/w:LidThemeComplexScript&gt; &lt;w:Compatibility&gt; &lt;w:BreakWrappedTables /&gt; &lt;w:SnapToGridInCell /&gt; &lt;w:WrapTextWithPunct /&gt; &lt;w:UseAsianBreakRules /&gt; &lt;w:DontGrowAutofit /&gt; &lt;w:SplitPgBreakAndParaMark /&gt; &lt;w:DontVertAlignCellWithSp /&gt; &lt;w:DontBreakConstrainedForcedTables /&gt; &lt;w:DontVertAlignInTxbx /&gt; &lt;w:Word11KerningPairs /&gt; &lt;w:CachedColBalance /&gt; &lt;/w:Compatibility&gt; &lt;m:mathPr&gt; &lt;m:mathFont m:val="Cambria Math" /&gt; &lt;m:brkBin m:val="before" /&gt; &lt;m:brkBinSub m:val="--" /&gt; &lt;m:smallFrac m:val="off" /&gt; &lt;m:dispDef /&gt; &lt;m:lMargin m:val="0" /&gt; &lt;m:rMargin m:val="0" /&gt; &lt;m:defJc m:val="centerGroup" /&gt; &lt;m:wrapIndent m:val="1440" /&gt; &lt;m:intLim m:val="subSup" /&gt; &lt;m:naryLim m:val="undOvr" /&gt; &lt;/m:mathPr&gt;&lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"&gt; &lt;w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /&gt; &lt;w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /&gt; &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /&gt; &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /&gt; &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /&gt; &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /&gt; &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /&gt; &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /&gt; &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /&gt; &lt;w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 1" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 2" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 3" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 4" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 5" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 6" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 7" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 8" /&gt; &lt;w:LsdException Locked="false" Priority="39" Name="toc 9" /&gt; &lt;w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /&gt; &lt;w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /&gt; &lt;w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /&gt; &lt;w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /&gt; &lt;w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /&gt; &lt;w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /&gt; &lt;w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /&gt; &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /&gt; &lt;w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /&gt; &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /&gt; &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /&gt; &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /&gt; &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /&gt; &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /&gt; &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /&gt; &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /&gt; &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /&gt; &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /&gt; &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /&gt; &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /&gt; &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /&gt; &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /&gt; &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /&gt; &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /&gt; &lt;w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /&gt; &lt;w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /&gt; &lt;w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /&gt; &lt;w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /&gt; &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /&gt; &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /&gt; &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /&gt; &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /&gt; &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /&gt; &lt;w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /&gt; &lt;w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /&gt; &lt;w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /&gt; &lt;w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /&gt; &lt;w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /&gt; &lt;w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /&gt; &lt;w:LsdException Locked="false" Priority="37" Name="Bibliography" /&gt; &lt;w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /&gt; &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt; &lt;!--[if gte mso 10]&gt; &lt;mce:style&gt;&lt;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin;} --&gt; &lt;!--[endif]--&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: small;"&gt;&lt;SPAN style="font-family: " tahoma=""&gt;We have recently released Compiler Professional Edition for Mac OS version 11.1 update 3. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: small;"&gt;&lt;SPAN style="font-family: " tahoma=""&gt;The problem when static linking of MKL in XCode was resolved in this version.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Default"&gt;&lt;SPAN style="font-size: small;"&gt;&lt;SPAN style="font-family: " tahoma=""&gt;You can update this version of Compiler into intel registration center( &lt;/SPAN&gt; &lt;A href="https://registrationcenter.intel.com/"&gt;https://registrationcenter.intel.com/&lt;/A&gt; ).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="Default"&gt;&lt;SPAN style="font-size: x-small;"&gt;&lt;SPAN style="font-size: small;"&gt;--Gennady&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: 8.5pt; font-family: " tahoma=""&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;BR /&gt;</description>
      <pubDate>Tue, 17 Nov 2009 08:57:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Snow-Leopard-MKL-10-2-update-2-breaks-working-PARDISO-code/m-p/863812#M7701</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-11-17T08:57:20Z</dc:date>
    </item>
  </channel>
</rss>

