<?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: Is there any efficient way (library or function or algorithm) to delete or append specific row a in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1289503#M31491</link>
    <description>&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Hi Kim,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We assume that your issue is resolved. If you need any additional information, please submit a new question as this thread will no longer be monitored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Arpita&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jun 2021 09:58:03 GMT</pubDate>
    <dc:creator>ArpitaP_Intel</dc:creator>
    <dc:date>2021-06-21T09:58:03Z</dc:date>
    <item>
      <title>Is there any efficient way (library or function or algorithm) to delete or append specific row and c</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1285744#M31396</link>
      <description>&lt;P&gt;Is there any efficient way (library or function or algorithm) to delete or append specific row and column component in Compressed Sparse Row format??&lt;/P&gt;
&lt;P&gt;I'm using intel compiler however there are no any function to do that in Math Kernel Library.&lt;/P&gt;
&lt;P&gt;So I need any information to delete or to append specific row and column data in CSR format.&lt;/P&gt;</description>
      <pubDate>Mon, 31 May 2021 03:03:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1285744#M31396</guid>
      <dc:creator>kim__seongik</dc:creator>
      <dc:date>2021-05-31T03:03:10Z</dc:date>
    </item>
    <item>
      <title>Re:Is there any efficient way (library or function or algorithm) to delete or append specific row and c</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1285866#M31407</link>
      <description>&lt;P&gt;Hi Kim,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Compressed Sparse row matrix (CSR) is a storage format by virtue of which one can achieve efficient access of elements of a sparse matrix. It is basically used for efficient matrix multiplication.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;The CSR Matrix is a combination of 4 arrays namely values, columns, pointerB, pointerE. The use of the arrays are as follows:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;values&lt;/B&gt;&lt;/P&gt;&lt;P&gt;A real or complex array that contains the non-zero elements of A. Values of the non-zero elements of A are mapped into the values array using the row-major storage mapping described above.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;columns&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Element i of the integer array columns is the number of the column in A that contains the i-th value in the values array.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;pointerB&lt;/B&gt;&lt;/P&gt;&lt;P&gt;Element j of this integer array gives the index of the element in the values array that is first non-zero element in a row j of A. Note that this index is equal to pointerB[j]-indexing .&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;pointerE&lt;/B&gt;&lt;/P&gt;&lt;P&gt;An integer array that contains row indices, such that pointerE[j]-1-indexing is the index of the element in the values array that is last non-zero element in a row j of A.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;With the insertion or deletion of element to your value array brings about change in the rest of the parameters. So, it is impossible to delete or append any row or column of CSR. For more information you can check the below link&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/appendix-a-linear-solvers-basics/sparse-matrix-storage-formats/sparse-blas-csr-matrix-storage-format.html" rel="noopener noreferrer" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/appendix-a-linear-solvers-basics/sparse-matrix-storage-formats/sparse-blas-csr-matrix-storage-format.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpita&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 31 May 2021 11:19:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1285866#M31407</guid>
      <dc:creator>ArpitaP_Intel</dc:creator>
      <dc:date>2021-05-31T11:19:46Z</dc:date>
    </item>
    <item>
      <title>Re:Is there any efficient way (library or function or algorithm) to delete or append specific row and c</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1287584#M31456</link>
      <description>&lt;P&gt;Hi Kim,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let us know, if your issue is resolved.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arpita&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 07 Jun 2021 02:55:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1287584#M31456</guid>
      <dc:creator>ArpitaP_Intel</dc:creator>
      <dc:date>2021-06-07T02:55:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is there any efficient way (library or function or algorithm) to delete or append specific row a</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1289503#M31491</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Hi Kim,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We assume that your issue is resolved. If you need any additional information, please submit a new question as this thread will no longer be monitored.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: sans-serif;"&gt;Arpita&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jun 2021 09:58:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Is-there-any-efficient-way-library-or-function-or-algorithm-to/m-p/1289503#M31491</guid>
      <dc:creator>ArpitaP_Intel</dc:creator>
      <dc:date>2021-06-21T09:58:03Z</dc:date>
    </item>
  </channel>
</rss>

