<?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 using pardiso with multiple right hand sides in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801958#M3141</link>
    <description>sorry, the error was mine. i forgot that in my code i use sparse right hand side. after converting it to a full right hand side, it worked perfectly.&lt;BR /&gt;&lt;BR /&gt;best regards</description>
    <pubDate>Mon, 14 Jun 2010 06:31:37 GMT</pubDate>
    <dc:creator>gitsnedbutzi</dc:creator>
    <dc:date>2010-06-14T06:31:37Z</dc:date>
    <item>
      <title>using pardiso with multiple right hand sides</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801954#M3137</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I need to set up pardiso for multiple right hand sides. However I failed to do so, because I'm not really a great programmer. For me, it's not quiet clear, in which form x and b have to be.&lt;BR /&gt;&lt;BR /&gt;I tried a two-dimensional dynamic array but it didn't work.&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;double **x = new double *&lt;N&gt; ;&lt;/N&gt;&lt;/P&gt;&lt;P&gt;for( int j = 0 ; j &amp;lt; n ; j++ )&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;x&lt;J&gt; = new double[nrhs];&lt;/J&gt;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;Is it supposed to bea vector ina row major format?&lt;BR /&gt;&lt;BR /&gt;Thanks for your help!!</description>
      <pubDate>Thu, 10 Jun 2010 13:57:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801954#M3137</guid>
      <dc:creator>gitsnedbutzi</dc:creator>
      <dc:date>2010-06-10T13:57:26Z</dc:date>
    </item>
    <item>
      <title>using pardiso with multiple right hand sides</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801955#M3138</link>
      <description>Hi,&lt;DIV&gt;Similar with one right hand side x and b are one dimension double * arrays but therelength become in nrhs (number of rhs) time larger (length of x and b nrhs*n, where n - dimension of problem). For more details please read &lt;DIV id="_mcePaste"&gt;IntelMKLibrary ReferenceManual Chapter 8Sparse Solver Routines.&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;With best regards,&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;Alexander Kalinkin&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 10 Jun 2010 16:11:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801955#M3138</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2010-06-10T16:11:28Z</dc:date>
    </item>
    <item>
      <title>using pardiso with multiple right hand sides</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801956#M3139</link>
      <description>Thanks, that did the trick. I thought the reference manual was a bit confusing because it said that b is an array with dimension (n, nrhs) which made me think that it's a two-dimensional array.&lt;BR /&gt;&lt;BR /&gt;Now I have another problem:&lt;BR /&gt;My solver works fine for all test examples. However when I try a larger matrix from my FE code, it can get through everything (analysis, factorization)up to the solution phase. At the solution phase (phase 33)pardiso crashes with an access violation when reading.&lt;BR /&gt;&lt;BR /&gt;Any ideas on what might be wrong, or how to check what the problem is?&lt;BR /&gt;&lt;BR /&gt;Other solves work fine on the matrix...&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 11 Jun 2010 14:02:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801956#M3139</guid>
      <dc:creator>gitsnedbutzi</dc:creator>
      <dc:date>2010-06-11T14:02:30Z</dc:date>
    </item>
    <item>
      <title>using pardiso with multiple right hand sides</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801957#M3140</link>
      <description>Hi again!&lt;DIV&gt;Such situation appears only with many right hand side or with 1 rhs too? Could you describe problem deeply or attach small testcase? :)&lt;/DIV&gt;&lt;DIV&gt;With best regards,&lt;/DIV&gt;&lt;DIV&gt;Alexander Kalinkin&lt;/DIV&gt;</description>
      <pubDate>Fri, 11 Jun 2010 16:58:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801957#M3140</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2010-06-11T16:58:52Z</dc:date>
    </item>
    <item>
      <title>using pardiso with multiple right hand sides</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801958#M3141</link>
      <description>sorry, the error was mine. i forgot that in my code i use sparse right hand side. after converting it to a full right hand side, it worked perfectly.&lt;BR /&gt;&lt;BR /&gt;best regards</description>
      <pubDate>Mon, 14 Jun 2010 06:31:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801958#M3141</guid>
      <dc:creator>gitsnedbutzi</dc:creator>
      <dc:date>2010-06-14T06:31:37Z</dc:date>
    </item>
    <item>
      <title>using pardiso with multiple right hand sides</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801959#M3142</link>
      <description>I'm glad to hear it, fill free to ask question if you will have any troubles.&lt;DIV&gt;With best regards,&lt;/DIV&gt;&lt;DIV&gt;Alexander Kalinkin&lt;/DIV&gt;</description>
      <pubDate>Mon, 14 Jun 2010 08:15:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/using-pardiso-with-multiple-right-hand-sides/m-p/801959#M3142</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2010-06-14T08:15:41Z</dc:date>
    </item>
  </channel>
</rss>

