<?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: Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0 in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587813#M171713</link>
    <description>&lt;P&gt;I did some poking around. The ifort ICE you reported is a duplicate of another bug. Look for the ICE to melt in 2024.2 available in mid-2024!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 09 Apr 2024 19:11:04 GMT</pubDate>
    <dc:creator>Barbara_P_Intel</dc:creator>
    <dc:date>2024-04-09T19:11:04Z</dc:date>
    <item>
      <title>Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587134#M171663</link>
      <description>&lt;P&gt;There is a regression with the Intel oneAPI 2024 Fortran compiler Intel(R) 64, Version 2021.12.0,&lt;/P&gt;&lt;P&gt;which had been working in 2021.10.0, and it also works with ifx (as well as gfortran and nagfor).&lt;/P&gt;&lt;P&gt;Compilation leads to an internal compiler error (ICE).&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;module m1
  implicit none
  private
  type :: t1
    integer, dimension(:), allocatable :: flst
    integer :: n_in = 0
  end type t1
  type :: t2
    type(t1), dimension(:), allocatable :: tt
    integer :: n_in = 0
  contains
    procedure :: s1 =&amp;gt; t2_s1
  end type t2
contains
   subroutine t2_s1 (rt, ttt)
    class(t2), intent(in) :: rt
    type(t1), intent(out), dimension(:), allocatable :: ttt
    integer :: n_real
    integer :: i_real
    n_real = size (rt%tt)
    allocate (ttt (0))
    do i_real = 1, n_real
       call s3 (i_real, ttt)
    end do
  contains
    subroutine s3 (i_real, ttt)
      integer, intent(in) :: i_real
      type(t1), intent(inout), dimension(:), allocatable :: ttt
      type(t1) :: ttt_tmp
      associate (tt =&amp;gt; rt%tt(i_real))
        ttt_tmp = s2 (tt, rt%n_in)
        ttt = [ttt, ttt_tmp]
      end associate
    end subroutine s3
  end subroutine t2_s1
  function s2 (flv1, n_in) result(flv2)
    type(t1), intent(in) :: flv1
    integer, intent(in) :: n_in
    type(t1) :: flv2
    integer :: n
    n = size (flv1%flst)
    allocate (flv2%flst (n))
    flv2%n_in = n_in
  end function s2
end module m1&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 07 Apr 2024 20:31:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587134#M171663</guid>
      <dc:creator>Juergen_R_R</dc:creator>
      <dc:date>2024-04-07T20:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587137#M171664</link>
      <description>&lt;P&gt;Dear Juergen_R_R,&lt;/P&gt;&lt;P&gt;Well, at least with:&lt;/P&gt;&lt;P&gt;$ ifx --version&lt;BR /&gt;ifx (IFX) 2024.1.0 20240308&lt;BR /&gt;Copyright (C) 1985-2024 Intel Corporation. All rights reserved.&lt;/P&gt;&lt;P&gt;$ ifx -O2 -error-limit 4 -e03 -fimf-arch-consistency=true -fimf-precision=high -finline-functions -fp-model consistent -fpp -fpe-all=1 -ipo -mavx -mtune=generic -m64 -parallel-source-info=1 -qmkl -qopenmp -qopt-report=3 -standard-semantics -std18 -traceback -WB -warn all -xHost -c testcase-0207.f90&lt;BR /&gt;$&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jorge.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 21:01:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587137#M171664</guid>
      <dc:creator>jdelia</dc:creator>
      <dc:date>2024-04-07T21:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587138#M171665</link>
      <description>&lt;P&gt;Yes, I already mentioned that it works with ifx. However, ifx still doesn't work fully with our software. That's the reason why we still have to rely on ifort&lt;/P&gt;</description>
      <pubDate>Sun, 07 Apr 2024 21:05:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587138#M171665</guid>
      <dc:creator>Juergen_R_R</dc:creator>
      <dc:date>2024-04-07T21:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587498#M171690</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/108292"&gt;@Juergen_R_R&lt;/a&gt;,&amp;nbsp;I also get ICE with the current nightly build with ifort. Since it compiles ok with ifx, it will be hard to get a compiler engineer to look at it with all the other bug fixes going on. The plan is that the last release of ifort is mid 2024.&lt;/P&gt;
&lt;P&gt;Do you know that you can mix and match object files and .mod files between ifx and ifort, unless you compile with -ipo? That may help you move along.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 21:32:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587498#M171690</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2024-04-08T21:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587499#M171691</link>
      <description>&lt;P&gt;That is very bad news. I think, even 2021.11.0 was ok, so the regression must have happened pretty recently. As ifx still has some major problems and extrapolating from past experience, this means that we probably have to discard Intel compilers for 1-2 years until all the stuff is fixed. At the moment, I'm trying to isolate another problem, where ifx produces wrong code. Mixing code is no option as this cannot be automized.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Apr 2024 21:37:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587499#M171691</guid>
      <dc:creator>Juergen_R_R</dc:creator>
      <dc:date>2024-04-08T21:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587813#M171713</link>
      <description>&lt;P&gt;I did some poking around. The ifort ICE you reported is a duplicate of another bug. Look for the ICE to melt in 2024.2 available in mid-2024!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 19:11:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587813#M171713</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2024-04-09T19:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587814#M171714</link>
      <description>&lt;P&gt;Barbara, that's great news!! A lot of motivation to invest into debugging for me and my team!&lt;/P&gt;</description>
      <pubDate>Tue, 09 Apr 2024 19:12:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1587814#M171714</guid>
      <dc:creator>Juergen_R_R</dc:creator>
      <dc:date>2024-04-09T19:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Fortran regression ICE  in  Intel(R) 64, Version 2021.12.0</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1611880#M172833</link>
      <description>&lt;P&gt;I can confirm that this has indeed been fixed in oneAPI 24.2 with ifort 2021.13.0. However, there is a new or additional regression, which I have reported here:&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.intel.com/t5/Intel-Fortran-Compiler/Another-regression-in-ifort-2021-13-0-oneAPI-24-2/m-p/1611877#M172831" target="_self"&gt;New/additional regression&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Jul 2024 14:02:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Fortran-regression-ICE-in-Intel-R-64-Version-2021-12-0/m-p/1611880#M172833</guid>
      <dc:creator>Juergen_R_R</dc:creator>
      <dc:date>2024-07-03T14:02:39Z</dc:date>
    </item>
  </channel>
</rss>

