<?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:Problem with correct linking of lapack libraries for 64bits. in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1204189#M29962</link>
    <description>&lt;P&gt;ok, thanks for the update&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 26 Aug 2020 03:09:29 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2020-08-26T03:09:29Z</dc:date>
    <item>
      <title>Problem with correct linking of lapack libraries for 64bits.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1202523#M29935</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I have a program in which I want to perform a diagonalization of a very large matrix using dsyevd subroutine routine. The dimension of my matrix is 80592, so I need to use integers of 11 digits.&lt;/P&gt;
&lt;P&gt;For smaller matrices, I was compiling using the flags "-mkl&amp;nbsp;-CB -heap-arrays -qopenmp -mkl -fpic -mcmodel=large" and everything was fine&lt;/P&gt;
&lt;P&gt;But now that I need to use 64 bits integers, I am compiling with "-i8 -I${MKLROOT}/include/intel64/ilp64 -mkl=parallel -CB -heap-arrays -qopenmp -mkl -fpic -mcmodel=large -I${MKLROOT}/include/intel64/ilp64 ${MKLROOT}/lib/intel64/libmkl_blas95_ilp64.a ${ MKLROOT}/lib/intel64/libmkl_lapack95_ilp64.a -liomp5 -lpthread -lm -ldl", which I took from the Intel MKL Link Line advisor, using dynamic linking.&lt;/P&gt;
&lt;P&gt;So, when I run my code and reach the part where I call dsyevd, I get the following error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;forrtl: severe (174): SIGSEGV, segmentation fault occurred&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying also with a simple small Identity matrix just to test the 64 bits linking. I get the same error.&lt;/P&gt;
&lt;P&gt;Many thanks in advance,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cayo Gonçalves&lt;/P&gt;</description>
      <pubDate>Fri, 21 Aug 2020 16:06:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1202523#M29935</guid>
      <dc:creator>Cayo_G_</dc:creator>
      <dc:date>2020-08-21T16:06:53Z</dc:date>
    </item>
    <item>
      <title>Re:Problem with correct linking of lapack libraries for 64bits.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1203382#M29939</link>
      <description>&lt;P&gt;please remove -mkl=parallel option and link the example explicitly:&lt;/P&gt;&lt;P&gt;icc &lt;B&gt;-DMKL_ILP64&lt;/B&gt; -I${MKLROOT}/include &amp;nbsp;-L${MKLROOT}/lib/intel64 -lmkl_intel_&lt;B&gt;ilp64&lt;/B&gt; -lmkl_intel_thread -lmkl_core -liomp5 -lpthread -lm -ldl &lt;/P&gt;&lt;P&gt;and declare all integer as MKL_INT into your example.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Aug 2020 07:55:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1203382#M29939</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-08-24T07:55:00Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Problem with correct linking of lapack libraries for 64bits.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1203416#M29942</link>
      <description>&lt;P&gt;Thank you for your answer Gennady. Sorry, I didn't realized that I didn't mentioned that I am using ifort, not icc. Does it make a difference for you solution?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Aug 2020 09:38:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1203416#M29942</guid>
      <dc:creator>Cayo_G_</dc:creator>
      <dc:date>2020-08-24T09:38:30Z</dc:date>
    </item>
    <item>
      <title>Re:Problem with correct linking of lapack libraries for 64bits.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1203440#M29943</link>
      <description>&lt;P&gt;it is the same for ifort or icc, icl ....&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Aug 2020 10:48:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1203440#M29943</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-08-24T10:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Problem with correct linking of lapack libraries for 64bits.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1204078#M29956</link>
      <description>Thank you very much, it worked</description>
      <pubDate>Tue, 25 Aug 2020 19:38:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1204078#M29956</guid>
      <dc:creator>Cayo_G_</dc:creator>
      <dc:date>2020-08-25T19:38:58Z</dc:date>
    </item>
    <item>
      <title>Re:Problem with correct linking of lapack libraries for 64bits.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1204189#M29962</link>
      <description>&lt;P&gt;ok, thanks for the update&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Aug 2020 03:09:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1204189#M29962</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-08-26T03:09:29Z</dc:date>
    </item>
    <item>
      <title>Re:Problem with correct linking of lapack libraries for 64bits.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1204190#M29963</link>
      <description>&lt;P&gt;This issue has been resolved and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 26 Aug 2020 03:10:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Problem-with-correct-linking-of-lapack-libraries-for-64bits/m-p/1204190#M29963</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-08-26T03:10:46Z</dc:date>
    </item>
  </channel>
</rss>

