<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Hi Again, in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Cluster-Sparse-Solver-Beginner-Questions/m-p/1121072#M24950</link>
    <description>&lt;P&gt;Hi Again,&lt;/P&gt;

&lt;P&gt;As i am reading through the documentation of the 2017 MKL Cluster Sparse Solver, I have the need to revisit this question.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I see that you have added the parMETIS package as an option under iparam[1]. I see in the description that the "Input matrix for reordering must be distributed amoung different MPI processes &lt;STRONG&gt;without intersection&lt;/STRONG&gt;". Just for my clarity that means each row of the matrix must exist on one and only one mpi-process and can no longer be distributed as before.&lt;/P&gt;

&lt;P&gt;As an example my current code might construct a matrix on two different processes with the following (trivial) example:&lt;/P&gt;

&lt;P&gt;Process 1:&amp;nbsp;&lt;SPAN style="font-size: 1em;"&gt;&amp;lt;0,0,20&amp;gt;, &amp;lt;0,1,-20&amp;gt;,&amp;lt;1,0,-20&amp;gt;,&amp;lt;1,1,20&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Process 2: &amp;lt;0,1,25&amp;gt;,&amp;lt;1,1,25&amp;gt;,&amp;lt;1,2,-25&amp;gt;,&amp;lt;2,2,25&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;The &amp;lt;&amp;gt; represent a triplet outling COO format for easy comparison.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Would this type of matrix be disallowed from using iparam[1]=10? Do you provide a function to help merge and remove the overlaps?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Oct 2016 15:32:58 GMT</pubDate>
    <dc:creator>William_D_2</dc:creator>
    <dc:date>2016-10-03T15:32:58Z</dc:date>
    <item>
      <title>Cluster_Sparse_Solver Beginner Questions</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Cluster-Sparse-Solver-Beginner-Questions/m-p/1121070#M24948</link>
      <description>&lt;P&gt;For the project I am working on I need to solve a very large system of sparse linear equations (3-4 Billion rows) describing flow along a network. Each edge of the network creates 4 matrix values with indexes with the form: (i,i) (i,j) &amp;nbsp;(j,i) (j,j). Each row of the matrix, corresponds to a particular node of the network and each node can connect to 4 to 5 edges. I need to sum the diagonal elements from all the edges that connect to each node. My objects describing the edges of the network are large and can not be fit on a single node. My question is, does the cluster sparse solver sum up elements that are repeated for me, or do i need to perform that work on my own? As an alternative, does PARDISO perform this type of summation?&lt;/P&gt;

&lt;P&gt;Second question, I read somewhere that the entire matrix must be able to fit onto each node. Is this still true?&lt;/P&gt;

&lt;P&gt;Finally, I have a performance question. I have the ability to create my matrix such that it is Positive Definite (really simple if just flip the signs of the matrix and rhs side vector). Is solving a positive definite matrix fast, more precise, or both when compared to a sparse indefinite?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2016 16:55:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Cluster-Sparse-Solver-Beginner-Questions/m-p/1121070#M24948</guid>
      <dc:creator>William_D_2</dc:creator>
      <dc:date>2016-07-08T16:55:42Z</dc:date>
    </item>
    <item>
      <title>Hi William,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Cluster-Sparse-Solver-Beginner-Questions/m-p/1121071#M24949</link>
      <description>&lt;P&gt;Hi William,&lt;/P&gt;

&lt;P&gt;please see my comments below&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 1.5;"&gt;&amp;gt; My question is, does the cluster sparse solver sum up elements that are repeated for me, or do i need to perform that work on my own? &lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Cluster sparse solver sum only elements from different computational nodes based on fact that csr format on each node is ordered. &amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 1.5;"&gt;&amp;gt;As an alternative, does PARDISO perform this type of summation?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;In current version of MKL PARDISO doesn't support distributed format&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;&amp;gt;Second question, I read somewhere that the entire matrix must be able to fit onto each node. Is this still true?&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;&amp;nbsp;In current version entire matrix must be able to fit onto master node&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;&amp;gt;Finally, I have a performance question. I have the ability to create my matrix such that it is Positive Definite (really simple if just flip the signs of the matrix and rhs side vector). Is solving a positive definite matrix fast, more precise, or both when compared to a sparse indefinite?&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Algorithm for spd matrices slightly faster in general then indefinite matrix algorithm.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jul 2016 18:52:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Cluster-Sparse-Solver-Beginner-Questions/m-p/1121071#M24949</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2016-07-12T18:52:00Z</dc:date>
    </item>
    <item>
      <title>Hi Again,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Cluster-Sparse-Solver-Beginner-Questions/m-p/1121072#M24950</link>
      <description>&lt;P&gt;Hi Again,&lt;/P&gt;

&lt;P&gt;As i am reading through the documentation of the 2017 MKL Cluster Sparse Solver, I have the need to revisit this question.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I see that you have added the parMETIS package as an option under iparam[1]. I see in the description that the "Input matrix for reordering must be distributed amoung different MPI processes &lt;STRONG&gt;without intersection&lt;/STRONG&gt;". Just for my clarity that means each row of the matrix must exist on one and only one mpi-process and can no longer be distributed as before.&lt;/P&gt;

&lt;P&gt;As an example my current code might construct a matrix on two different processes with the following (trivial) example:&lt;/P&gt;

&lt;P&gt;Process 1:&amp;nbsp;&lt;SPAN style="font-size: 1em;"&gt;&amp;lt;0,0,20&amp;gt;, &amp;lt;0,1,-20&amp;gt;,&amp;lt;1,0,-20&amp;gt;,&amp;lt;1,1,20&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Process 2: &amp;lt;0,1,25&amp;gt;,&amp;lt;1,1,25&amp;gt;,&amp;lt;1,2,-25&amp;gt;,&amp;lt;2,2,25&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;The &amp;lt;&amp;gt; represent a triplet outling COO format for easy comparison.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Would this type of matrix be disallowed from using iparam[1]=10? Do you provide a function to help merge and remove the overlaps?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Oct 2016 15:32:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Cluster-Sparse-Solver-Beginner-Questions/m-p/1121072#M24950</guid>
      <dc:creator>William_D_2</dc:creator>
      <dc:date>2016-10-03T15:32:58Z</dc:date>
    </item>
  </channel>
</rss>

