<?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: OpenMP and bounds checking on allocatable array components of derived types in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1546634#M169366</link>
    <description>&lt;P&gt;That works - thanks very much!&lt;/P&gt;</description>
    <pubDate>Wed, 22 Nov 2023 21:56:51 GMT</pubDate>
    <dc:creator>ndd21</dc:creator>
    <dc:date>2023-11-22T21:56:51Z</dc:date>
    <item>
      <title>OpenMP and bounds checking on allocatable array components of derived types</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1492750#M166641</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P class=""&gt;Hello, I've just encountered this problem in a Fortran+OpenMP program:&lt;/P&gt;&lt;P class=""&gt;&amp;nbsp;&lt;/P&gt;&lt;P class=""&gt;laptop3:~&amp;gt; cat t.f90&lt;BR /&gt;PROGRAM t&lt;BR /&gt;IMPLICIT NONE&lt;BR /&gt;INTEGER,PARAMETER :: N=10,M=20&lt;BR /&gt;INTEGER :: i&lt;BR /&gt;TYPE pwdat_type&lt;BR /&gt;REAL,ALLOCATABLE :: r(:)&lt;BR /&gt;END TYPE pwdat_type&lt;BR /&gt;TYPE(pwdat_type) :: p(N)&lt;BR /&gt;REAL :: x(M)&lt;/P&gt;&lt;P class=""&gt;DO i=1,N&lt;BR /&gt;ALLOCATE(p(i)%r(M))&lt;BR /&gt;p(i)%r=1.23&lt;BR /&gt;ENDDO ! i&lt;/P&gt;&lt;P class=""&gt;!$OMP PARALLEL WORKSHARE DEFAULT(none) SHARED(x,p)&lt;BR /&gt;x=p(1)%r&lt;BR /&gt;!$OMP END PARALLEL WORKSHARE&lt;/P&gt;&lt;P class=""&gt;END PROGRAM t&lt;BR /&gt;laptop3:~&amp;gt; ifort --version&lt;BR /&gt;ifort (IFORT) 2021.9.0 20230302&lt;BR /&gt;Copyright (C) 1985-2023 Intel Corporation. All rights reserved.&lt;/P&gt;&lt;P class=""&gt;laptop3:~&amp;gt; ifort -O0 -check bounds -qopenmp t.f90&lt;BR /&gt;At least one variable in the private list was not emitted&lt;BR /&gt;beblk_t OMP (0x7f5778613c10)&lt;BR /&gt;======================================================&lt;BR /&gt;shared_list:&lt;BR /&gt;(* emitted *) "t_$P$1_V$3f"&lt;BR /&gt;(* emitted *) "t_$X_V$3e"&lt;BR /&gt;======================================================&lt;BR /&gt;private_list:&lt;BR /&gt;"var$48_V$6b"&lt;BR /&gt;======================================================&lt;BR /&gt;t.f90(16): 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.&lt;BR /&gt;compilation aborted for t.f90 (code 1)&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 04 Jun 2023 22:25:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1492750#M166641</guid>
      <dc:creator>ndd21</dc:creator>
      <dc:date>2023-06-04T22:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: OpenMP and bounds checking on allocatable array components of derived types</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1492871#M166650</link>
      <description>&lt;P&gt;Thanks for reporting this with a good reproducer. I filed a bug against ifort, CMPLRIL0-35333. That's an unusual error message before the ICE message.&lt;/P&gt;
&lt;P&gt;As a workaround, the reproducer compiles fine with ifx. .o and .mod files are interchangeable between ifort and ifx unless you use -ipo. Have you seen the &lt;A href="https://www.intel.com/content/www/us/en/developer/articles/guide/porting-guide-for-ifort-to-ifx.html" target="_self"&gt;Porting Guide for Intel Fortran Compiler&lt;/A&gt;?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 11:23:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1492871#M166650</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-06-05T11:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: OpenMP and bounds checking on allocatable array components of derived types</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1492888#M166653</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jun 2023 12:36:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1492888#M166653</guid>
      <dc:creator>ndd21</dc:creator>
      <dc:date>2023-06-05T12:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: OpenMP and bounds checking on allocatable array components of derived types</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1546179#M169308</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/296858"&gt;@ndd21&lt;/a&gt;, the Internal Compiler Error (ICE) you reported is fixed in the version of ifort that was released earlier this week.&lt;/P&gt;
&lt;P&gt;Please check it out!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 18:58:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1546179#M169308</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-11-21T18:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: OpenMP and bounds checking on allocatable array components of derived types</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1546634#M169366</link>
      <description>&lt;P&gt;That works - thanks very much!&lt;/P&gt;</description>
      <pubDate>Wed, 22 Nov 2023 21:56:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/OpenMP-and-bounds-checking-on-allocatable-array-components-of/m-p/1546634#M169366</guid>
      <dc:creator>ndd21</dc:creator>
      <dc:date>2023-11-22T21:56:51Z</dc:date>
    </item>
  </channel>
</rss>

