<?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: Internal compiler error with -qmkl-ilp64 in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1509331#M34885</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes using the Link Line Advisor and checking the "&lt;SPAN&gt;Link with Intel® oneMKL libraries explicitly" allows me to link ilp64 MKL without getting the compiler error. So my issue has been resolved. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jasper&lt;/P&gt;</description>
    <pubDate>Sat, 29 Jul 2023 08:02:56 GMT</pubDate>
    <dc:creator>JaspervdK</dc:creator>
    <dc:date>2023-07-29T08:02:56Z</dc:date>
    <item>
      <title>Internal compiler error with -qmkl-ilp64</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1507262#M34852</link>
      <description>&lt;P&gt;Using the latest intel oneAPI 2023 the following code gives an internal compiler error:&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;program main
    implicit none
    integer, parameter :: N = 1000
    integer, parameter :: Nmin = 267
    real*8, allocatable, dimension(:,:) :: array

    allocate(array(N, 2))

    array = 0.d0

    print*, array(Nmin:N, 2)

end program main&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;I compile as:&lt;/P&gt;&lt;LI-CODE lang="none"&gt;ifort *.F90 -i8 -qmkl-ilp64 -o run&lt;/LI-CODE&gt;&lt;P&gt;which matches with the options recommended to me by the link line advisor (I know the above code does not have any MKL usage, but my full code does and experiences a similar crash). The ICE reads:&lt;/P&gt;&lt;LI-CODE lang="none"&gt;IERROR_MODULE_ID_1279

Main.F90(1): catastrophic error: **Internal compiler error: internal abort** Please report this error along with the circumstances in which it occurred in a Software Problem Report.  Note: File and line given may not be explicit cause of this error.
compilation aborted for Main.F90 (code 1)&lt;/LI-CODE&gt;&lt;P&gt;If I replace -qmkl-ilp64 with just -qmkl the error disappears. Is it still safe to use -i8 -qmkl with the new version of MKL? This is what I used to do on the older compiler versions.&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jul 2023 12:55:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1507262#M34852</guid>
      <dc:creator>JaspervdK</dc:creator>
      <dc:date>2023-07-22T12:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: Internal compiler error with -qmkl-ilp64</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1507508#M34856</link>
      <description>&lt;P&gt;I found that linking with MKL ilp64 explicitly as,&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ifort Main.F90 -i8 -I"$(MKLROOT)/include" -L$(MKLROOT)/lib/intel64 -lmkl_intel_ilp64 \
 		-lmkl_intel_thread -lmkl_core -liomp5 -lpthread -lm -ldl -o run&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;does not give an error&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jul 2023 07:48:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1507508#M34856</guid>
      <dc:creator>JaspervdK</dc:creator>
      <dc:date>2023-07-24T07:48:48Z</dc:date>
    </item>
    <item>
      <title>Re:Internal compiler error with -qmkl-ilp64</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1507684#M34858</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for posting in Intel Communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;Is it still safe to use -i8 -qmkl with the new version of MKL?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Yes, you can use -the i8 option with the new version of Intel MKL. When we tried to run your code with sequential and parallel linking, we are able to get the expected results with both the ifort and ifx compilers.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We recommend you use the Intel Link Line Advisor for compiling and linking your code with Intel MKL.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please find the below link for the Intel Link Line Advisor,&lt;/P&gt;&lt;P&gt;as it supports different environments, tools, and interfaces, oneMKL provides multiple libraries to choose&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl-link-line-advisor.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl-link-line-advisor.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please try and let us know if you have any other issues?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 24 Jul 2023 16:36:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1507684#M34858</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-07-24T16:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Internal compiler error with -qmkl-ilp64</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1509331#M34885</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes using the Link Line Advisor and checking the "&lt;SPAN&gt;Link with Intel® oneMKL libraries explicitly" allows me to link ilp64 MKL without getting the compiler error. So my issue has been resolved. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jasper&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jul 2023 08:02:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1509331#M34885</guid>
      <dc:creator>JaspervdK</dc:creator>
      <dc:date>2023-07-29T08:02:56Z</dc:date>
    </item>
    <item>
      <title>Re:Internal compiler error with -qmkl-ilp64</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1509678#M34886</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;So my issue has been resolved.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;It’s great to know that the issue has been resolved, in case you run into any other issues please feel free to create a new thread.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Have a Good Day!&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 31 Jul 2023 15:16:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Internal-compiler-error-with-qmkl-ilp64/m-p/1509678#M34886</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-07-31T15:16:54Z</dc:date>
    </item>
  </channel>
</rss>

