<?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: Re:DO CONCURRENT and ASSOCIATE triggers Runtime Errors in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577649#M171165</link>
    <description>&lt;P&gt;Yes, but I will still continue using it for a while before I port code over. There are still runtime issues with ifx (going to submit it when I have some time) and it still does not run as fast as ifort for my projects.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I think a lot of people are hoping that ifort will get another year of life out of it at the last minute &lt;LI-EMOJI id="lia_winking-face" title=":winking_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 04 Mar 2024 17:27:07 GMT</pubDate>
    <dc:creator>Scott_Boyce</dc:creator>
    <dc:date>2024-03-04T17:27:07Z</dc:date>
    <item>
      <title>DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1197288#M151061</link>
      <description>&lt;P&gt;I recently updated my Intel fortran and have significant runtime issues that previously were not a problem in Intel Fortran or gfortran.&lt;/P&gt;
&lt;P&gt;The first issue is that sometimes &lt;FONT face="courier new,courier"&gt;DO CONCURRENT(I=1:10)&lt;/FONT&gt; with have an iteration with &lt;FONT face="courier new,courier"&gt;I=11&lt;/FONT&gt;, which raises an index error.&lt;/P&gt;
&lt;P&gt;The second issue is when there is an &lt;FONT face="courier new,courier"&gt;ASSOCIATE&lt;/FONT&gt; construct within a &lt;FONT face="courier new,courier"&gt;DO CONCURRENT&lt;/FONT&gt;. When this occurs it fails to initialize the&amp;nbsp;&lt;FONT face="courier new,courier"&gt;DO CONCURRENT&lt;/FONT&gt; index variable.&lt;/P&gt;
&lt;P&gt;This is an example code that raises this error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;! This was not a problem with Intel(R) Visual Fortran Compiler 18.0.5.274 [Intel(R) 64] (Sets B=1)
!      This error occurs with version 19.1.1.216 and 19.1.2.254
!
! This error occurs if you enable any one of the following Run-time Checks
! /check:uninit
! /check:bounds
! /check:stack
!
! Error seems to occur whenever there is two DO CONCURRENT loops and an ASSOCIATE construct.
! 
! Also sometimes I get eratic behavior with multiple DO CONCCURENTS in a row.
!
! Note this compilation also raises the warning 
!    "Message		remark #7712: This variable has not been used.   [I]		Main.f90	27	"
!
PROGRAM MAIN
  IMPLICIT NONE
  INTEGER, PARAMETER:: D1=5
  INTEGER, DIMENSION(D1):: A,B
  INTEGER:: I
  !
  A = 1
  !
  !First iteration has I=J=-858993460
  ! cmd prompt says: Run-Time Check Failure. The variable \'MAIN$I\' is being used in \'Main.f90(27,7)\' without being defined
  DO CONCURRENT ( I = 1:D1 ) 
      ASSOCIATE( PNT =&amp;gt; A(I) ) 
         B(I) = I
      END ASSOCIATE
  END DO
  
  PAUSE
END PROGRAM
!
! Compiler Flags:
!
!  /nologo
!  /debug:full
!  /Od
!  /assume:nocc_omp
!  /Qopenmp-offload-
!  /Qdiag-error-limit:10
!  /Qdiag-disable:6717
!  /warn:declarations
!  /warn:unused
!  /warn:ignore_loc
!  /warn:noalignments
!  /warn:uncalled
!  /warn:interfaces
!  /fpe:0
!  /fp:source
!  /Qfp-stack-check
!  /module:"C:\prog\obj\obj_x64_Debug\\"
!  /object:"C:\prog\obj\obj_x64_Debug\\"
!  /Fd"C:\prog\obj\obj_x64_Debug\vc150.pdb"
!  /traceback
!  /check:bounds
!  /check:uninit
!  /check:stack
!  /libs:static
!  /threads
!  /dbglibs
!  /c
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My code has extensive use of &lt;FONT face="courier new,courier"&gt;DO CONCURRENT&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;ASSOCIATE&lt;/FONT&gt; for very large Derived Data Types, so refactoring to revert to a regular do is not an option.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 14:55:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1197288#M151061</guid>
      <dc:creator>ScottBoyce</dc:creator>
      <dc:date>2020-08-04T14:55:15Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222119#M152325</link>
      <description>&lt;P&gt;Hi Scott,&lt;/P&gt;
&lt;P&gt;I have the same issue. We are currently migrating from IVF XE 2013 to XE 2020 (19.1.2.254) and I am getting the same runtime error (with the same behavior) when doing non regression tests. In my case it happens in a 32-bit dll, so it seems to be a general compiler problem. I previously tested the XE 2019 version of the compiler and I don't remember getting the problem. Fortunately, I don't have a lot of do concurrent constructs with nested associate statement. When I located the problem, I found weird to see these nested constructs (I did not write the code myself) so I assumed this kind of constructs were forbidden even if they worked in the past. I am also quite surprised that you get no answer from Intel or anyone else about this issue.&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 07:35:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222119#M152325</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2020-10-23T07:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222471#M152337</link>
      <description>&lt;P&gt;I've experience a non-DO CONCURRENT situation with ASSOCIATE that may be related. In my case it was related to performing the ASSOCIATE(AssociateVar=&amp;gt;xxx) within an OpenMP parallel region.&lt;/P&gt;
&lt;P&gt;As best as I could diagnose there were two issues:&lt;/P&gt;
&lt;P&gt;1) When the AssociateVar was not declared outside the scope of the parallel region&lt;BR /&gt;2) When the AssociateVar was declared with a different type and/or rank outside the scope of the parallel region&lt;/P&gt;
&lt;P&gt;If possible, you may find a fix by declaring the associate variable (with same type and rank) outside the DO CONCURRENT to see if this affects correct code generation.&lt;/P&gt;
&lt;P&gt;FWIW this may or may not not address the subscript out of bounds issue.&lt;/P&gt;
&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Sat, 24 Oct 2020 14:33:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222471#M152337</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2020-10-24T14:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222495#M152340</link>
      <description>&lt;P&gt;The associate does work outside the DO CONCURRENT, the problem is within it with the 2020 compiler update.&lt;/P&gt;
&lt;P&gt;I ended up having to downgrade my compiler back to the 2018 version (which has a ADVANCE="NO" compiler bug) which runs the code without a problem. I do not get the initialization error, the index has a value of 1 instead of undefined.&lt;/P&gt;
&lt;P&gt;My problem is the code has complex data types that are looped through with ASSOCIATE construct to make the code easier to read.&lt;/P&gt;
&lt;P&gt;For example, I would look across something like:&lt;BR /&gt;main%group(I)%sub(J)&lt;/P&gt;
&lt;P&gt;which I would simplify to something like:&lt;/P&gt;
&lt;P&gt;subJ =&amp;gt;&amp;nbsp;main%group(I)%sub(J)&lt;/P&gt;
&lt;P&gt;The issue is that I and J are undefined when they are DO CONCURRENT loop indexes.&lt;/P&gt;
&lt;P&gt;Unfortunately this code is about 500,000 lines and substantially uses DO CONCURRENT to take advantage of its multi-index looping and logical check&lt;BR /&gt;(for example DO CONCURRENT(I=1:N,J=1:M, CHECK(I,J)&amp;gt;0) )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 24 Oct 2020 17:31:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222495#M152340</guid>
      <dc:creator>ScottBoyce</dc:creator>
      <dc:date>2020-10-24T17:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222841#M152353</link>
      <description>&lt;P&gt;I had also issues with OpemMP and ASSOCIATE. An older thread give some more information &lt;A href="https://community.intel.com/t5/Intel-Fortran-Compiler/What-should-the-default-access-be-for-an-associate-name-defined/m-p/1143029" target="_self"&gt;here&lt;/A&gt;. -O3 was not a good idea in my case, -O2 worked so far. Maybe these two issues are linked?&lt;/P&gt;
&lt;P&gt;Currently, I avoid using ASSOCIATE within an OpenMP region.&lt;/P&gt;
&lt;P&gt;For DO CONCURRENT it might be easier to nail it down, because only the Fortran standard and not in addition the OpemMP standard has to be taken into account.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 12:11:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222841#M152353</guid>
      <dc:creator>Johannes_Rieke</dc:creator>
      <dc:date>2020-10-26T12:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222849#M152354</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;It seems the reverse is also true. I just experienced a problem with a DO CONCURRENT inside an ASSOCIATE construct, itself part of a classical DO loop.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an extract of my code:&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;        if (PumparoundsCount /= 0) then
          do I=1,PumparoundsCount
             associate (pa =&amp;gt; SetOfPumparounds(I))
                 N1 = pa%FromTray
                 N2 = pa%ToTray
                 N1M1   = N1 - 1
                 N1M1NC = N1M1*NC
                 XL(:) = 0.D0
                 YV(:) = 0.D0
                 do concurrent (J=1:NOCOMP, CMPD_INDEX(J) &amp;gt; 0)
                    XL(J) = PAR(JX+N1M1NC+CMPD_INDEX(J))
                    YV(J) = PAR(JY+N1M1NC+CMPD_INDEX(J))
                 end do
                 ...
&lt;/LI-CODE&gt;
&lt;P&gt;I had an access violation problem on the line where XL(J) is assigned, with the loop index, J,&amp;nbsp; equal to 0!&lt;/P&gt;
&lt;P&gt;Previously the assignement loop was done using a FORALL statement, which does not seem to show the problem.&lt;/P&gt;
&lt;P&gt;I recently replaced the FORALL with a DO CONCURRENT because I remember reading an old post by Steve Lionel saying that a DO CONCURRENT is a FORALL done right (if I'm not wrong) ! So, I expected that a DO CONCURRENT was more effective than a FORALL (may be not in my case but who knows?).&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 12:50:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222849#M152354</guid>
      <dc:creator>netphilou31</dc:creator>
      <dc:date>2020-10-26T12:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222877#M152356</link>
      <description>&lt;P&gt;Following on from this, I've found at least a couple of related issues in recent versions of the compiler:&lt;/P&gt;
&lt;P&gt;1) DO CONCURRENT fails to copy a string from an array in XE2020U1; logged (and open) with Intel Support as issue 04643307.&lt;/P&gt;
&lt;P&gt;2) It looks like the Intel Fortran compiler (18.0.3 and 19.0.5, at least) sometimes treats an associate-name as a shared variable in OpenMP loops. You can't specify an associate-name in a private clause, as it has no declaration. We found this in a regression in our code and worked around it by using local pointers instead.&amp;nbsp; I never did get around to reporting this; probably because I think that cut down versions of the code weren't reproducing the problem.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 15:01:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222877#M152356</guid>
      <dc:creator>Mark_Lewy</dc:creator>
      <dc:date>2020-10-26T15:01:01Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222936#M152359</link>
      <description>&lt;P&gt;Same here, I switched most of my loops from FORALL to DO CONCURRENT from the same post (Also have read that in a number of other online references). I did not think about moving back to a FORALL (though most of the new code from the past two years was originally written with DO CONCURRENT, so I am not sure if they will work with FORALL)&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 17:13:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222936#M152359</guid>
      <dc:creator>ScottBoyce</dc:creator>
      <dc:date>2020-10-26T17:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222937#M152360</link>
      <description>&lt;P&gt;Since our 2020 license is a shared one for our research center, I asked the server maintainer to submit a bug request on this issue. I am hopping he has done it and its in the que to get fixed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For now I am stuck using my personal copy of 2018.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 17:15:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1222937#M152360</guid>
      <dc:creator>ScottBoyce</dc:creator>
      <dc:date>2020-10-26T17:15:24Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1223269#M152375</link>
      <description>&lt;P&gt;RE: You can't specify an associate-name in a private clause, as it has no declaration.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A work around is to declare a like typed variable outside the parallel region. (It will be replaced with the ASSOCIATE)&lt;/P&gt;
&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Tue, 27 Oct 2020 14:02:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1223269#M152375</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2020-10-27T14:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577152#M171135</link>
      <description>&lt;P&gt;I just wanted to bump this because it was never fixed.&lt;/P&gt;&lt;P&gt;I also have the same issue with the associate block outside of a do concurrent.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Mar 2024 23:21:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577152#M171135</guid>
      <dc:creator>Scott_Boyce</dc:creator>
      <dc:date>2024-03-01T23:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577640#M171162</link>
      <description>&lt;P&gt;Thanks for nudge on this issue.&lt;/P&gt;
&lt;P&gt;I just checked this using a preview version of ifx 2024.1.0. No errors using any of those /check compiler options. That release is planned to be available in 4-6 weeks.&lt;/P&gt;
&lt;P&gt;FYI... /check:uninit with ifx is a no-op. With ifx 2024.1.0 a warning message is printed about that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 17:20:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577640#M171162</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2024-03-04T17:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Re:DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577642#M171163</link>
      <description>&lt;P&gt;That is awesome to hear. about ifx.&lt;BR /&gt;How about ifort, that was the compiler that also triggers the error.&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 17:18:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577642#M171163</guid>
      <dc:creator>Scott_Boyce</dc:creator>
      <dc:date>2024-03-04T17:18:41Z</dc:date>
    </item>
    <item>
      <title>Re:DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577645#M171164</link>
      <description>&lt;P&gt;Ditto for ifort 2021.12.0. It runs ok.&lt;/P&gt;&lt;P&gt;You do realize that ifort is deprecated and will no longer be distributed by the end of 2024, right?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 04 Mar 2024 17:24:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577645#M171164</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2024-03-04T17:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Re:DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577649#M171165</link>
      <description>&lt;P&gt;Yes, but I will still continue using it for a while before I port code over. There are still runtime issues with ifx (going to submit it when I have some time) and it still does not run as fast as ifort for my projects.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, I think a lot of people are hoping that ifort will get another year of life out of it at the last minute &lt;LI-EMOJI id="lia_winking-face" title=":winking_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Mar 2024 17:27:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1577649#M171165</guid>
      <dc:creator>Scott_Boyce</dc:creator>
      <dc:date>2024-03-04T17:27:07Z</dc:date>
    </item>
    <item>
      <title>Re:DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1585196#M171486</link>
      <description>&lt;P&gt;ifx 2024.1.0 was just released. I verified that the problems with DO CONCURRENT and ASSOCIATE are fixed. &lt;/P&gt;&lt;P&gt;Enjoy!&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 01 Apr 2024 15:56:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1585196#M171486</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2024-04-01T15:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: DO CONCURRENT and ASSOCIATE triggers Runtime Errors</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1585197#M171487</link>
      <description>&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 01 Apr 2024 16:02:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/DO-CONCURRENT-and-ASSOCIATE-triggers-Runtime-Errors/m-p/1585197#M171487</guid>
      <dc:creator>Scott_Boyce</dc:creator>
      <dc:date>2024-04-01T16:02:31Z</dc:date>
    </item>
  </channel>
</rss>

