<?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 Error code is misleading when running PARDISO out-of-core in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877592#M9138</link>
    <description>&lt;P&gt;Jaewonj,&lt;/P&gt;
&lt;P&gt;Thank you for test case!&lt;/P&gt;
&lt;P&gt;I compiled and linked it with MKL10.2Update4 but didnt get error -2. Could you set msglvl=1; and provied us with output statistic?&lt;/P&gt;
&lt;P&gt;Anyway, I got the follow strange output info:&lt;/P&gt;
&lt;P&gt;PARDISO_OOC_OPEN_FILE_ERROR occured: blkl: open file for storing ind&lt;/P&gt;
&lt;P&gt;At phase 11, error code = 0&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;It is incorrect. In MKL10.2Update5 we fixed some issues about OOC error information. I linked test with Update5 and got correct output:&lt;/P&gt;
&lt;P&gt;At phase 11, error code = -10&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;So, I think that your problem already fixed in MKL10.2Update5&lt;/P&gt;</description>
    <pubDate>Tue, 09 Mar 2010 11:56:50 GMT</pubDate>
    <dc:creator>Sergey_Solovev__Inte</dc:creator>
    <dc:date>2010-03-09T11:56:50Z</dc:date>
    <item>
      <title>Error code is misleading when running PARDISO out-of-core</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877590#M9136</link>
      <description>&lt;P&gt;In case I do not have write permission to the current working directory, PARDISO OOC returns an error code of -2 ("not enough memory") at phase 11. It would be great if PARDISO OOC returns -11 ("read/write problems with the OOC data file"), or at lease -9 or -10.&lt;/P&gt;
&lt;P&gt;Can this be fixed in the next release?&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;
&lt;P&gt;Jaewon&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;BR /&gt;
&lt;P&gt;===================================&lt;/P&gt;
&lt;P&gt;pardiso-ooc.c&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
#include "stdio.h"&lt;BR /&gt;#include "stdlib.h"&lt;BR /&gt;#include "math.h"&lt;BR /&gt;#include "mkl.h"&lt;BR /&gt;#include "mkl_spblas.h"&lt;BR /&gt;#include "mkl_service.h"&lt;BR /&gt;#include "mkl_solver.h"&lt;BR /&gt;&lt;BR /&gt;int main () &lt;BR /&gt;{&lt;BR /&gt; char transa = 'N';&lt;BR /&gt; MKL_INT i, n = 2;&lt;BR /&gt; MKL_INT ia[3] = {1, 3, 5};&lt;BR /&gt; MKL_INT ja[4] = {1, 2, 1, 2};&lt;BR /&gt; double aa[4] = {3., 4., 5., 6.};&lt;BR /&gt; double x[2], x_exact[2] = {1., 2.}, b[2];&lt;BR /&gt; MKL_INT mtype, nrhs = 1; &lt;BR /&gt; void *pt[64];&lt;BR /&gt; MKL_INT iparm[64], maxfct = 1, mnum = 1, phase, error = 0, msglvl = 0;&lt;BR /&gt;&lt;BR /&gt; for (i = 0; i &amp;lt; 64; ++i) {&lt;BR /&gt; iparm&lt;I&gt; = 0;&lt;BR /&gt; pt&lt;I&gt; = 0;&lt;BR /&gt; }&lt;BR /&gt; &lt;BR /&gt; mtype = 11;&lt;BR /&gt; iparm[0] = 1;&lt;BR /&gt; iparm[1] = 3; /* PARMETIS */&lt;BR /&gt; iparm[2] = 1; /* currently not used */&lt;BR /&gt; iparm[5] = 0; /* write solution to rhs : 0 (no), 1 (yes) */&lt;BR /&gt; iparm[7] = 1; /* max number of iterative refinement */&lt;BR /&gt; iparm[26] = 1; /* input matrix check */&lt;BR /&gt; iparm[27] = 0; /* double precision. use 1 for single precision */&lt;BR /&gt; &lt;BR /&gt; /* 0 for in-core, 2 for out-of-core&lt;BR /&gt; Set environmental MKL_PARDISO_OOC_MAX_CORE_SIZE &lt;BR /&gt; if necessary (default is 2000 MB).&lt;BR /&gt; &lt;BR /&gt; export MKL_PARDISO_OOC_KEEP_FILE=0 stores temporary files.&lt;BR /&gt; */&lt;BR /&gt; iparm[59] = 2; &lt;BR /&gt; &lt;BR /&gt; /* compute RHS based on exact solution */&lt;BR /&gt; mkl_dcsrgemv(&amp;amp;transa, &amp;amp;n, aa, ia, ja, x_exact, b);&lt;BR /&gt;&lt;BR /&gt; phase = 11; &lt;BR /&gt; PARDISO (pt, &amp;amp;maxfct, &amp;amp;mnum, &amp;amp;mtype, &amp;amp;phase,&lt;BR /&gt; &amp;amp;n, aa, ia, ja, NULL, &amp;amp;nrhs,&lt;BR /&gt; iparm, &amp;amp;msglvl, NULL, NULL, &amp;amp;error);&lt;BR /&gt; printf("At phase %d, error code = %d\\n", phase, error);&lt;BR /&gt;&lt;BR /&gt; /* this has been fixed in 10.2.4 */&lt;BR /&gt; /*system("rm ooc*");*/&lt;BR /&gt;&lt;BR /&gt; phase = 22;&lt;BR /&gt; PARDISO (pt, &amp;amp;maxfct, &amp;amp;mnum, &amp;amp;mtype, &amp;amp;phase,&lt;BR /&gt; &amp;amp;n, aa, ia, ja, NULL, &amp;amp;nrhs,&lt;BR /&gt; iparm, &amp;amp;msglvl, NULL, NULL, &amp;amp;error);&lt;BR /&gt; printf("At phase %d, error code = %d\\n", phase, error);&lt;BR /&gt;&lt;BR /&gt; phase = 33;&lt;BR /&gt; iparm[7] = 2; /* Max numbers of iterative refinement steps. */&lt;BR /&gt; PARDISO (pt, &amp;amp;maxfct, &amp;amp;mnum, &amp;amp;mtype, &amp;amp;phase,&lt;BR /&gt; &amp;amp;n, aa, ia, ja, NULL, &amp;amp;nrhs,&lt;BR /&gt; iparm, &amp;amp;msglvl, b, x, &amp;amp;error);&lt;BR /&gt; printf("At phase %d, error code = %d\\n", phase, error);&lt;BR /&gt;&lt;BR /&gt; phase = -1;&lt;BR /&gt; PARDISO (pt, &amp;amp;maxfct, &amp;amp;mnum, &amp;amp;mtype, &amp;amp;phase,&lt;BR /&gt; &amp;amp;n, aa, ia, ja, NULL, &amp;amp;nrhs,&lt;BR /&gt; iparm, &amp;amp;msglvl, NULL, NULL, &amp;amp;error);&lt;BR /&gt; printf("At phase %d, error code = %d\\n", phase, error);&lt;BR /&gt; &lt;BR /&gt; printf("\\nx = %f, %f\\n\\n", x[0], x[1]);&lt;BR /&gt;&lt;BR /&gt; return 0;&lt;BR /&gt;} &lt;BR /&gt;&lt;BR /&gt;&lt;/I&gt;&lt;/I&gt;</description>
      <pubDate>Thu, 04 Mar 2010 18:46:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877590#M9136</guid>
      <dc:creator>jaewonj</dc:creator>
      <dc:date>2010-03-04T18:46:04Z</dc:date>
    </item>
    <item>
      <title>Error code is misleading when running PARDISO out-of-core</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877591#M9137</link>
      <description>&lt;P&gt;Jaewonj,&lt;/P&gt;
&lt;P&gt;Yes, this request looks reasonable, the error message should be changed for these cases.This issue has been submitted to our internal development tracking database for further investigation, we will inform you once a new update becomes available.Here is a bug tracking number for your reference:DPD200090882&lt;/P&gt;
&lt;P&gt;--Gennady&lt;/P&gt;</description>
      <pubDate>Fri, 05 Mar 2010 06:40:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877591#M9137</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-03-05T06:40:18Z</dc:date>
    </item>
    <item>
      <title>Error code is misleading when running PARDISO out-of-core</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877592#M9138</link>
      <description>&lt;P&gt;Jaewonj,&lt;/P&gt;
&lt;P&gt;Thank you for test case!&lt;/P&gt;
&lt;P&gt;I compiled and linked it with MKL10.2Update4 but didnt get error -2. Could you set msglvl=1; and provied us with output statistic?&lt;/P&gt;
&lt;P&gt;Anyway, I got the follow strange output info:&lt;/P&gt;
&lt;P&gt;PARDISO_OOC_OPEN_FILE_ERROR occured: blkl: open file for storing ind&lt;/P&gt;
&lt;P&gt;At phase 11, error code = 0&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;It is incorrect. In MKL10.2Update5 we fixed some issues about OOC error information. I linked test with Update5 and got correct output:&lt;/P&gt;
&lt;P&gt;At phase 11, error code = -10&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;So, I think that your problem already fixed in MKL10.2Update5&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2010 11:56:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877592#M9138</guid>
      <dc:creator>Sergey_Solovev__Inte</dc:creator>
      <dc:date>2010-03-09T11:56:50Z</dc:date>
    </item>
    <item>
      <title>Error code is misleading when running PARDISO out-of-core</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877593#M9139</link>
      <description>&lt;P&gt;Sergey,&lt;/P&gt;
&lt;P&gt;That is good news. Thanks.&lt;/P&gt;
&lt;P&gt;Anyway, here is the output. Please search for "At phase 11, error code = -2".&lt;/P&gt;
&lt;P&gt;Jaewon&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;The file ./pardiso_ooc.cfg was not opened&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;=== PARDISO is running in Out-Of-Core mode, because iparam(60)=2 ===&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;PARDISO_OOC_OPEN_FILE_ERROR occured: blkl: open file for storing ind&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO  (     insufficient_memory) error_num= -800&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO memory allocation: STRUC_FI, size to allocate: 1927254944 bytes&lt;/P&gt;
&lt;P&gt;total memory wanted here: 6076389 kbyte&lt;/P&gt;
&lt;P&gt;symbolic (max): 72 symbolic (permanent): 6076389&lt;/P&gt;
&lt;P&gt;real(including 1 factor): 0&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;================  PARDISO: solving a real nonsymmetric system  ================&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Summary PARDISO: ( reorder to reorder )&lt;/P&gt;
&lt;P&gt;================&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Times:&lt;/P&gt;
&lt;P&gt;======&lt;/P&gt;
&lt;P&gt;Time fulladj: 0.000005 s&lt;/P&gt;
&lt;P&gt;Time reorder: 0.000065 s&lt;/P&gt;
&lt;P&gt;Time symbfct: 0.000034 s&lt;/P&gt;
&lt;P&gt;Time malloc : 0.000150 s&lt;/P&gt;
&lt;P&gt;Time total  : 0.000258 s total - sum: 0.000004 s&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Statistics:&lt;/P&gt;
&lt;P&gt;===========&lt;/P&gt;
&lt;P&gt;         1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;#equations:                                     2&lt;/P&gt;
&lt;P&gt;#non-zeros in A:                                4&lt;/P&gt;
&lt;P&gt;non-zeros in A (%):                            100.000000&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;#right-hand sides:                              1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;#columns for each panel:                        128&lt;/P&gt;
&lt;P&gt;#independent subgraphs:                         0&lt;/P&gt;
&lt;P&gt;#supernodes:                                    1&lt;/P&gt;
&lt;P&gt;size of largest supernode:                      2&lt;/P&gt;
&lt;P&gt;number of nonzeros in L                       4&lt;/P&gt;
&lt;P&gt;number of nonzeros in U                       1&lt;/P&gt;
&lt;P&gt;number of nonzeros in L+U                     5&lt;/P&gt;
&lt;P&gt;At phase 11, error code = -2&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO  ( sequence_ido,parameters) error_num= 100000&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO: clean impossible (ido?)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;================  PARDISO: solving a real nonsymmetric system  ================&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Summary PARDISO: ( factorize to factorize )&lt;/P&gt;
&lt;P&gt;================&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Times:&lt;/P&gt;
&lt;P&gt;======&lt;/P&gt;
&lt;P&gt;Time total  : 0.000013 s total - sum: 0.000013 s&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Statistics:&lt;/P&gt;
&lt;P&gt;===========&lt;/P&gt;
&lt;P&gt;         1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;#equations:                                     2&lt;/P&gt;
&lt;P&gt;#non-zeros in A:                                4&lt;/P&gt;
&lt;P&gt;non-zeros in A (%):                            100.000000&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;#right-hand sides:                              1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;#columns for each panel:                        128&lt;/P&gt;
&lt;P&gt;#independent subgraphs:                         0&lt;/P&gt;
&lt;P&gt;#supernodes:                                    1&lt;/P&gt;
&lt;P&gt;size of largest supernode:                      2&lt;/P&gt;
&lt;P&gt;number of nonzeros in L                       4&lt;/P&gt;
&lt;P&gt;number of nonzeros in U                       1&lt;/P&gt;
&lt;P&gt;number of nonzeros in L+U                     5&lt;/P&gt;
&lt;P&gt;gflop   for the numerical factorization:        0.000000&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;At phase 22, error code = -1&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO  ( sequence_ido,parameters) error_num= 100000&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO: clean impossible (ido?)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;================  PARDISO: solving a real nonsymmetric system  ================&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Summary PARDISO: ( solve to solve )&lt;/P&gt;
&lt;P&gt;================&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Times:&lt;/P&gt;
&lt;P&gt;======&lt;/P&gt;
&lt;P&gt;Time total  : 0.000011 s total - sum: 0.000011 s&lt;/P&gt;
&lt;P&gt;==============================================================&lt;/P&gt;
&lt;P&gt;----------- Out of core time (in percent (%)) --------------&lt;/P&gt;
&lt;P&gt;Factorization step (100 (%)):&lt;/P&gt;
&lt;P&gt;write to files : 0&lt;/P&gt;
&lt;P&gt;read from files: 0&lt;/P&gt;
&lt;P&gt;factorization - write&amp;amp;read : 100&lt;/P&gt;
&lt;P&gt;Solution step (100 (%)):&lt;/P&gt;
&lt;P&gt;read from files: 0&lt;/P&gt;
&lt;P&gt;solve - write&amp;amp;read: 100&lt;/P&gt;
&lt;P&gt;Total time (100 (%)):&lt;/P&gt;
&lt;P&gt;read from files: 0&lt;/P&gt;
&lt;P&gt;total - write&amp;amp;read: 100&lt;/P&gt;
&lt;P&gt;----------- Out of core Mb --------------&lt;/P&gt;
&lt;P&gt;Factorization step:&lt;/P&gt;
&lt;P&gt;write to files :      0.000 Mb&lt;/P&gt;
&lt;P&gt;read from files:      0.000 Mb&lt;/P&gt;
&lt;P&gt;Solution step:&lt;/P&gt;
&lt;P&gt;read from files:      0.000 Mb&lt;/P&gt;
&lt;P&gt;Total size of data transferred :&lt;/P&gt;
&lt;P&gt;write&amp;amp;read        :      0.000 Mb&lt;/P&gt;
&lt;P&gt;==============================================================&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Statistics:&lt;/P&gt;
&lt;P&gt;===========&lt;/P&gt;
&lt;P&gt;         1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;
&lt;P&gt;#equations:                                     2&lt;/P&gt;
&lt;P&gt;#non-zeros in A:                                4&lt;/P&gt;
&lt;P&gt;non-zeros in A (%):                            100.000000&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;#right-hand sides:                              1&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;#columns for each panel:                        128&lt;/P&gt;
&lt;P&gt;#independent subgraphs:                         0&lt;/P&gt;
&lt;P&gt;#supernodes:                                    1&lt;/P&gt;
&lt;P&gt;size of largest supernode:                      2&lt;/P&gt;
&lt;P&gt;number of nonzeros in L                       4&lt;/P&gt;
&lt;P&gt;number of nonzeros in U                       1&lt;/P&gt;
&lt;P&gt;number of nonzeros in L+U                     5&lt;/P&gt;
&lt;P&gt;gflop   for the numerical factorization:        0.000000&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;At phase 33, error code = -1&lt;/P&gt;
&lt;P&gt;At phase -1, error code = 0&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;x = 0.000000, 0.000000&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2010 21:05:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877593#M9139</guid>
      <dc:creator>jaewonj</dc:creator>
      <dc:date>2010-03-09T21:05:35Z</dc:date>
    </item>
    <item>
      <title>Error code is misleading when running PARDISO out-of-core</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877594#M9140</link>
      <description>&lt;P&gt;Sergey,&lt;/P&gt;
&lt;P&gt;I'm not sure if you need this but just in case.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;jaewonj@jaewonjlx:/usr/local$ uname -a&lt;/P&gt;
&lt;P&gt;Linux jaewonjlx 2.6.31-20-generic #57-Ubuntu SMP Mon Feb 8 09:02:26 UTC 2010 x86_64 GNU/Linux&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;jaewonj@jaewonjlx:/usr/local$ cat /proc/cpuinfo&lt;/P&gt;
&lt;P&gt;processor       : 0&lt;/P&gt;
&lt;P&gt;vendor_id       : GenuineIntel&lt;/P&gt;
&lt;P&gt;cpu family      : 6&lt;/P&gt;
&lt;P&gt;model           : 15&lt;/P&gt;
&lt;P&gt;model name      : Intel Core2 CPU          6600  @ 2.40GHz&lt;/P&gt;
&lt;P&gt;stepping        : 6&lt;/P&gt;
&lt;P&gt;cpu MHz         : 600.000&lt;/P&gt;
&lt;P&gt;cache size      : 4096 KB&lt;/P&gt;
&lt;P&gt;physical id     : 0&lt;/P&gt;
&lt;P&gt;siblings        : 2&lt;/P&gt;
&lt;P&gt;core id         : 0&lt;/P&gt;
&lt;P&gt;cpu cores       : 2&lt;/P&gt;
&lt;P&gt;apicid          : 0&lt;/P&gt;
&lt;P&gt;initial apicid  : 0&lt;/P&gt;
&lt;P&gt;fpu             : yes&lt;/P&gt;
&lt;P&gt;fpu_exception   : yes&lt;/P&gt;
&lt;P&gt;cpuid level     : 10&lt;/P&gt;
&lt;P&gt;wp              : yes&lt;/P&gt;
&lt;P&gt;flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx lm constant_tsc arch_perfmon pebs bts rep_good pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm lahf_lm tpr_shadow&lt;/P&gt;
&lt;P&gt;bogomips        : 4787.66&lt;/P&gt;
&lt;P&gt;clflush size    : 64&lt;/P&gt;
&lt;P&gt;cache_alignment : 64&lt;/P&gt;
&lt;P&gt;address sizes   : 36 bits physical, 48 bits virtual&lt;/P&gt;
&lt;P&gt;power management:&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;BR /&gt;
&lt;P&gt;&lt;/P&gt;
&lt;BR /&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Mar 2010 21:16:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877594#M9140</guid>
      <dc:creator>jaewonj</dc:creator>
      <dc:date>2010-03-09T21:16:21Z</dc:date>
    </item>
    <item>
      <title>Error code is misleading when running PARDISO out-of-core</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877595#M9141</link>
      <description>&lt;P&gt;Jaewonj, thank you!&lt;/P&gt;
&lt;P&gt;I checked it. This problem has been fixed in MKL10.2 Update5&lt;/P&gt;</description>
      <pubDate>Wed, 10 Mar 2010 12:37:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877595#M9141</guid>
      <dc:creator>Sergey_Solovev__Inte</dc:creator>
      <dc:date>2010-03-10T12:37:16Z</dc:date>
    </item>
    <item>
      <title>Error code is misleading when running PARDISO out-of-core</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877596#M9142</link>
      <description>Jaewonj,&lt;DIV&gt;&lt;P&gt;The problem you reported was fixed in the version 10.2 Update 5.This version available for download from intel registration
center: &lt;A href="https://registrationcenter.intel.com/"&gt;https://registrationcenter.intel.com/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Please check it and let us know if any others problem.&lt;/P&gt;&lt;P&gt;--Gennady&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 23 Apr 2010 20:32:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877596#M9142</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2010-04-23T20:32:46Z</dc:date>
    </item>
    <item>
      <title>Error code is misleading when running PARDISO out-of-core</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877597#M9143</link>
      <description>Thanks Gennady. &lt;BR /&gt;Confirmed that the problem has been fixed in 10.2.5.&lt;BR /&gt;&lt;BR /&gt;Jaewon&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Apr 2010 23:38:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Error-code-is-misleading-when-running-PARDISO-out-of-core/m-p/877597#M9143</guid>
      <dc:creator>jaewonj</dc:creator>
      <dc:date>2010-04-23T23:38:37Z</dc:date>
    </item>
  </channel>
</rss>

