<?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: Question about sparse matrix in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191873#M29763</link>
    <description>&lt;P&gt;Please check the user's guide on how to use the linker&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/mkl-linux-developer-guide/top/linking-your-application-with-the-intel-math-kernel-library/linking-quick-start/using-the-mkl-compiler-option.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/mkl-linux-developer-guide/top/linking-your-application-with-the-intel-math-kernel-library/linking-quick-start/using-the-mkl-compiler-option.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;-mkl=cluster&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV id="using-the-mkl-compiler-option_GUID-FC4E4E19-4E12-441A-8DE9-E69EE2767E62" class="p"&gt;to link with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;Intel® MKL&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;cluster components (sequential) that use Intel MPI.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Jul 2020 09:12:46 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2020-07-13T09:12:46Z</dc:date>
    <item>
      <title>Question about sparse matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191250#M29740</link>
      <description>&lt;P&gt;1.&amp;nbsp;Is there an appropriate subroutine in mkl with respect to matrix assembly?&lt;BR /&gt;&amp;nbsp; &amp;nbsp; I made and used by myself, but it takes too long.&lt;BR /&gt;&amp;nbsp; &amp;nbsp; I want to something like below expression in fortran&lt;BR /&gt;&amp;nbsp; &amp;nbsp;(example-matlab case) global_matrix(dof,dof) = global_matrix(dof,dof) + element_matrix&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2.&amp;nbsp;Is there any subroutine in mkl to create a sparse matrix format?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Which subroutine should be used for sparse matrix multiplication?&lt;BR /&gt;&amp;nbsp; &amp;nbsp; I want to something like below expression in fortran&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;(example -matlab case) A*x=b&amp;nbsp; (A : sparse matrix, x: vector, b:vector)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. Is there a subroutine that can do in fortran mkl how to delete certain rows and columns?&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;I want to something like below expression in fortran&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;(example -matlab case)&amp;nbsp; matrix(dof,dof) = [];&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;5.&amp;nbsp; I want to use scalapack of intel mkl, but can't I use it except cluster??&lt;BR /&gt;&amp;nbsp; &amp;nbsp; When I used scalapack's dlasrt2 on the desktop, error lnk 2019 occurred.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 06:36:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191250#M29740</guid>
      <dc:creator>kim__seongik</dc:creator>
      <dc:date>2020-07-10T06:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Question about sparse matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191298#M29743</link>
      <description>&lt;P&gt;1. there are no such routines&lt;/P&gt;
&lt;P&gt;2. you can try to use conversion from/to dense - CSR, CSC, and others supported sparse formats. Please refer to use MKL Reference to see more details&lt;/P&gt;
&lt;P&gt;3.&amp;nbsp; please refer to the documentation follow with this link&amp;nbsp;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/mkl-developer-reference-c/top/blas-and-sparse-blas-routines/sparse-blas-level-2-and-level-3-routines/sparse-blas-level-2-and-level-3-routines-1.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/mkl-developer-reference-c/top/blas-and-sparse-blas-routines/sparse-blas-level-2-and-level-3-routines/sparse-blas-level-2-and-level-3-routines-1.html&lt;/A&gt;&lt;/P&gt;
&lt;DIV&gt;You may see a lot of m*v&amp;nbsp; routines with different sparse formal, e.x - tmkl_?csrgemv&lt;/DIV&gt;
&lt;DIV&gt;4. There is no such routine.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;5. you can build and run on the SMP system as well.&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;how did you link the case? how did you run it?&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 09:40:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191298#M29743</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-07-10T09:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Question about sparse matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191299#M29744</link>
      <description>&lt;P&gt;regarding the #5 - please check the mkl linker adviser how to properly link with the ScaLAPACK components&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 09:42:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191299#M29744</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-07-10T09:42:16Z</dc:date>
    </item>
    <item>
      <title>Re: Question about sparse matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191809#M29759</link>
      <description>&lt;P&gt;Thank you for your reply !!&lt;BR /&gt;&lt;BR /&gt;In number 5 my setting is below figure::&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="질문1.PNG" style="width: 779px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/11178iB486153C7EA2B9BB/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="질문1.PNG" alt="질문1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 02:35:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191809#M29759</guid>
      <dc:creator>kim__seongik</dc:creator>
      <dc:date>2020-07-13T02:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Question about sparse matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191873#M29763</link>
      <description>&lt;P&gt;Please check the user's guide on how to use the linker&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/mkl-linux-developer-guide/top/linking-your-application-with-the-intel-math-kernel-library/linking-quick-start/using-the-mkl-compiler-option.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/mkl-linux-developer-guide/top/linking-your-application-with-the-intel-math-kernel-library/linking-quick-start/using-the-mkl-compiler-option.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;-mkl=cluster&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV id="using-the-mkl-compiler-option_GUID-FC4E4E19-4E12-441A-8DE9-E69EE2767E62" class="p"&gt;to link with&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;Intel® MKL&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;cluster components (sequential) that use Intel MPI.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 09:12:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191873#M29763</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-07-13T09:12:46Z</dc:date>
    </item>
    <item>
      <title>Re: Question about sparse matrix</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191875#M29764</link>
      <description>&lt;P&gt;I missed that you use windows:&lt;/P&gt;
&lt;P&gt;the linking would look like as follows: /Qmkl=cluster&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jul 2020 09:14:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Question-about-sparse-matrix/m-p/1191875#M29764</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-07-13T09:14:43Z</dc:date>
    </item>
  </channel>
</rss>

