<?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 oneAPI ifort 2021.4, submodule parameter in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1484647#M166310</link>
    <description>&lt;P&gt;The oneAPI 2023.1 Toolkits including ifort 2021.9.0 were released in early April 2023. Fortran compilers are part of the oneAPI HPC Toolkit.&lt;/P&gt;
&lt;P&gt;Ron Green wrote &lt;A href="https://community.intel.com/t5/Blogs/Tech-Innovation/Tools/Intel-oneAPI-Compilers-Packaging-and-Versioning-2021-2022/post/1425602" target="_blank" rel="noopener"&gt;this blog&lt;/A&gt; about Intel compiler versioning last fall. Maybe that will help.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 May 2023 20:26:16 GMT</pubDate>
    <dc:creator>Barbara_P_Intel</dc:creator>
    <dc:date>2023-05-09T20:26:16Z</dc:date>
    <item>
      <title>internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1320111#M157894</link>
      <description>&lt;P&gt;Hi Intel compiler developers,&lt;/P&gt;
&lt;P&gt;after using the new oneAPI Intel® Fortran Compiler Classic 2021.4.0, one of my programs has triggerd an internal compiler error (ICE).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following simple program reproduces the issue when compiled using the following command line:&amp;nbsp; &lt;BR /&gt;ifort /c /Od /debug:full /debug-parameters:all .\test_ICE_submodule_param.f90&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;module mod1
interface
    module subroutine bar()
    end subroutine bar
end interface 
end module mod1
!-------------------------------------------

submodule (mod1) submod
contains
    module subroutine bar()
    implicit none
    !parameter in a submodule causes ICE with ifort 2021.4.0 when compiler flags
    ! /debug-parameters:all or /debug-parameters:used are set aside /debug:full
    integer,parameter :: k = 3  
    end subroutine bar
end submodule submod 
!-------------------------------------------

program test_ICE
use mod1
call bar()
end program test_ICE
    
!command line flags leading to internal compiler error:
! ifort /c /Od /debug:full /debug-parameters:all .\test_ICE_submodule_param.f90
    
! --&amp;gt; fortcom: Fatal: There has been an internal compiler error (C0000005).&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This ICE seems to be caused by having a parameter declared in a *submodule* procedure while using the&amp;nbsp;/debug:full /debug-parameters:all compiler flags. It does not occur when&amp;nbsp;/debug-parameters:all is absent (nor with ifort version 2021.3).&amp;nbsp;&lt;BR /&gt;So, a workaround is to not use&amp;nbsp;/debug-parameters:all or&amp;nbsp;/debug-parameters:used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Oct 2021 19:37:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1320111#M157894</guid>
      <dc:creator>Andreas_Z_</dc:creator>
      <dc:date>2021-10-07T19:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1320446#M157909</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/105869"&gt;@Andreas_Z_&lt;/a&gt;&amp;nbsp;, thank you for such a nice job of triaging the problem! I filed a bug report for you, CMPLRIL0-34296. I'll let you know when it is fixed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2021 20:26:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1320446#M157909</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2021-10-08T20:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1401160#M162090</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/105869"&gt;@Andreas_Z_&lt;/a&gt;&amp;nbsp; for descirbing the problem and &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/44501"&gt;@Barbara_P_Intel&lt;/a&gt; thank you for opening the ticket.&lt;/P&gt;
&lt;P&gt;We still have the same issue with the version 2022.1.0.&lt;/P&gt;
&lt;P&gt;Is it possible to give us a short feedback regarding the current status of ticket CMPLRIL0-34296 ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And an other short question related to that topic: What additional benefit does &lt;SPAN class="sub_section_element_selectors"&gt;/debug-parameters:all&lt;/SPAN&gt; provides me, when I already set &lt;SPAN class="sub_section_element_selectors"&gt;&amp;nbsp;/debug:full&lt;/SPAN&gt;? From the offical documentation of the &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/fortran-compiler-oneapi-dev-guide-and-reference/top/compiler-reference/compiler-options/output-debug-and-precompiled-header-options/debug-parameters.html" target="_blank" rel="noopener"&gt;debug-parameters&lt;/A&gt; flag and the &lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/fortran-compiler-oneapi-dev-guide-and-reference/top/compiler-reference/compiler-options/output-debug-and-precompiled-header-options/debug-windows.html" target="_blank" rel="noopener"&gt;debug&lt;/A&gt; flag I was not able to answer that question.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2022 11:32:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1401160#M162090</guid>
      <dc:creator>Willi1</dc:creator>
      <dc:date>2022-07-18T11:32:30Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1401229#M162095</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/246518"&gt;@Willi1&lt;/a&gt;, it looks like&amp;nbsp;&lt;SPAN&gt;CMPLRIL0-34296 will be fixed in the next release which is planned for Fall 2022.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jul 2022 16:22:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1401229#M162095</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2022-07-18T16:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482663#M166272</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/44501"&gt;@Barbara_P_Intel&lt;/a&gt;: There is a new release out "Intel® oneAPI HPC Toolkit (version 2023.1.0)".&lt;BR /&gt;Is the &lt;SPAN class="sub_section_element_selectors"&gt;CMPLRIL0-34296 Bug&lt;/SPAN&gt; fixed in this Release?&lt;BR /&gt;Thank you in andvance for your response&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 10:38:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482663#M166272</guid>
      <dc:creator>Willi1</dc:creator>
      <dc:date>2023-05-03T10:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482676#M166274</link>
      <description>&lt;P&gt;ifort /c /Od /debug:full /debug-parameters:all .\test_ICE_submodule_param.f90&lt;BR /&gt;Intel(R) Fortran Intel(R) 64 Compiler Classic for applications running on Intel(R) 64, Version 2021.9.0 Build 20230302_000000&lt;BR /&gt;Copyright (C) 1985-2023 Intel Corporation. All rights reserved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Latest version: No errors or warnings, created the .obj file&lt;/P&gt;
&lt;P&gt;Regards, Andrew&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 12:20:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482676#M166274</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2023-05-03T12:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482772#M166278</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/66560"&gt;@andrew_4619&lt;/a&gt;,&amp;nbsp;for confirming!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 17:07:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482772#M166278</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-05-03T17:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482952#M166281</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/66560"&gt;@andrew_4619&lt;/a&gt; for the test.&lt;BR /&gt;I'm a little bit wondering: Is the Version 2021.9.0 newer than the Version 2022.1.0 , which I tested last year and which had the Bug in it?&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 05:55:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482952#M166281</guid>
      <dc:creator>Willi1</dc:creator>
      <dc:date>2023-05-04T05:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482991#M166282</link>
      <description>&lt;P&gt;You like many have suffered from the Intel Confusing Version Syndrome. Ifort 2021.9 compiler is part of the OneApi 2023.1 product&lt;/P&gt;</description>
      <pubDate>Thu, 04 May 2023 08:56:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1482991#M166282</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2023-05-04T08:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: internal compiler error with oneAPI ifort 2021.4, submodule parameter</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1484647#M166310</link>
      <description>&lt;P&gt;The oneAPI 2023.1 Toolkits including ifort 2021.9.0 were released in early April 2023. Fortran compilers are part of the oneAPI HPC Toolkit.&lt;/P&gt;
&lt;P&gt;Ron Green wrote &lt;A href="https://community.intel.com/t5/Blogs/Tech-Innovation/Tools/Intel-oneAPI-Compilers-Packaging-and-Versioning-2021-2022/post/1425602" target="_blank" rel="noopener"&gt;this blog&lt;/A&gt; about Intel compiler versioning last fall. Maybe that will help.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 May 2023 20:26:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/internal-compiler-error-with-oneAPI-ifort-2021-4-submodule/m-p/1484647#M166310</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-05-09T20:26:16Z</dc:date>
    </item>
  </channel>
</rss>

