<?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 Array section passing problem in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744970#M3267</link>
    <description>I have a problem with a program, and reduced it to this mini-program:&lt;BR /&gt;&lt;BR /&gt;program SEC_TEST&lt;BR /&gt;! To test passing array sections to a procedure.&lt;BR /&gt; implicit none&lt;BR /&gt;&lt;BR /&gt; integer :: i, N=8&lt;BR /&gt; real,allocatable :: X(:)&lt;BR /&gt;&lt;BR /&gt; ALLOCATE (X(0:N))&lt;BR /&gt; do i = 1, N&lt;BR /&gt; X(i) = i&lt;BR /&gt; enddo&lt;BR /&gt; print '(" X values stride 1:", 9f6.1)', X(0:N)&lt;BR /&gt; print '(" X values stride 2:", 9f6.1)', X(0:N:2)&lt;BR /&gt; print '(" X values stride 4:", 9f6.1)', X(0:N:4)&lt;BR /&gt; print *&lt;BR /&gt; call SUB (X(0:N), N)&lt;BR /&gt; call SUB (X(0:N:2), N/2)&lt;BR /&gt; call SUB (X(0:N:4), N/4)&lt;BR /&gt; DEALLOCATE (X)&lt;BR /&gt;end program SEC_TEST&lt;BR /&gt;&lt;BR /&gt;subroutine SUB (X, N)&lt;BR /&gt;&lt;BR /&gt; integer :: N&lt;BR /&gt; real :: X(0:N)&lt;BR /&gt;&lt;BR /&gt; print '(" Passed X values :", 9f6.1)', X(0:N)&lt;BR /&gt;&lt;BR /&gt;end subroutine SUB&lt;BR /&gt;&lt;BR /&gt;The output is this:&lt;BR /&gt;&lt;BR /&gt;X values stride 1: 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0&lt;BR /&gt;X values stride 2: 0.0 2.0 4.0 6.0 8.0&lt;BR /&gt;X values stride 4: 0.0 4.0 8.0&lt;BR /&gt;&lt;BR /&gt;Passed X values : 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0&lt;BR /&gt;Passed X values : 0.0 1.0 2.0 3.0 4.0&lt;BR /&gt;Passed X values : 0.0 1.0 2.0&lt;BR /&gt;&lt;BR /&gt;This is not what is supposed to happen. What is wrong?&lt;BR /&gt;Dieter Britz britz&lt;AT&gt;chem.au.dk&lt;BR /&gt;&lt;BR /&gt;&lt;/AT&gt;</description>
    <pubDate>Thu, 13 Sep 2007 09:13:09 GMT</pubDate>
    <dc:creator>Dieter_B_</dc:creator>
    <dc:date>2007-09-13T09:13:09Z</dc:date>
    <item>
      <title>Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744970#M3267</link>
      <description>I have a problem with a program, and reduced it to this mini-program:&lt;BR /&gt;&lt;BR /&gt;program SEC_TEST&lt;BR /&gt;! To test passing array sections to a procedure.&lt;BR /&gt; implicit none&lt;BR /&gt;&lt;BR /&gt; integer :: i, N=8&lt;BR /&gt; real,allocatable :: X(:)&lt;BR /&gt;&lt;BR /&gt; ALLOCATE (X(0:N))&lt;BR /&gt; do i = 1, N&lt;BR /&gt; X(i) = i&lt;BR /&gt; enddo&lt;BR /&gt; print '(" X values stride 1:", 9f6.1)', X(0:N)&lt;BR /&gt; print '(" X values stride 2:", 9f6.1)', X(0:N:2)&lt;BR /&gt; print '(" X values stride 4:", 9f6.1)', X(0:N:4)&lt;BR /&gt; print *&lt;BR /&gt; call SUB (X(0:N), N)&lt;BR /&gt; call SUB (X(0:N:2), N/2)&lt;BR /&gt; call SUB (X(0:N:4), N/4)&lt;BR /&gt; DEALLOCATE (X)&lt;BR /&gt;end program SEC_TEST&lt;BR /&gt;&lt;BR /&gt;subroutine SUB (X, N)&lt;BR /&gt;&lt;BR /&gt; integer :: N&lt;BR /&gt; real :: X(0:N)&lt;BR /&gt;&lt;BR /&gt; print '(" Passed X values :", 9f6.1)', X(0:N)&lt;BR /&gt;&lt;BR /&gt;end subroutine SUB&lt;BR /&gt;&lt;BR /&gt;The output is this:&lt;BR /&gt;&lt;BR /&gt;X values stride 1: 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0&lt;BR /&gt;X values stride 2: 0.0 2.0 4.0 6.0 8.0&lt;BR /&gt;X values stride 4: 0.0 4.0 8.0&lt;BR /&gt;&lt;BR /&gt;Passed X values : 0.0 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0&lt;BR /&gt;Passed X values : 0.0 1.0 2.0 3.0 4.0&lt;BR /&gt;Passed X values : 0.0 1.0 2.0&lt;BR /&gt;&lt;BR /&gt;This is not what is supposed to happen. What is wrong?&lt;BR /&gt;Dieter Britz britz&lt;AT&gt;chem.au.dk&lt;BR /&gt;&lt;BR /&gt;&lt;/AT&gt;</description>
      <pubDate>Thu, 13 Sep 2007 09:13:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744970#M3267</guid>
      <dc:creator>Dieter_B_</dc:creator>
      <dc:date>2007-09-13T09:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744971#M3268</link>
      <description>This looks like a good case for a problem report on you premier.intel.com account. I got the same result with ifort 10.0.026 32-bit, while it works correctly with gfortran 4.3.0 20070824.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Sep 2007 13:34:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744971#M3268</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2007-09-13T13:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744972#M3269</link>
      <description>I was hoping that Steve Lionel would see this and react. How do I make&lt;BR /&gt;a problem report? I can log in, but where do I go from there?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Sep 2007 15:06:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744972#M3269</guid>
      <dc:creator>Dieter_B_</dc:creator>
      <dc:date>2007-09-13T15:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744973#M3270</link>
      <description>&lt;P&gt;Britz,&lt;/P&gt;
&lt;P&gt;The following is a work around (until the bug is fixed)&lt;/P&gt;&lt;PRE&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;&lt;P&gt;program&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SEC_TEST&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;FONT color="#008000" size="2"&gt;&lt;P&gt;! To test passing array sections to a procedure.&lt;/P&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;implicit none&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;interface&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;subroutine&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SUB (X, N)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;integer&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; :: N&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;real&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; :: X(:)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;end subroutine&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SUB&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;end interface&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;integer&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; :: i, N=8&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;real&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;,&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;allocatable&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; :: X(:)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;ALLOCATE&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; (X(0:N))&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;do&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; i = 0, N&lt;P&gt;&lt;/P&gt;&lt;P&gt;X(i) = i&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;enddo&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;print&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; '(" X values stride 1:", 9f6.1)', X(0:N)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;print&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; '(" X values stride 2:", 9f6.1)', X(0:N:2)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;print&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; '(" X values stride 4:", 9f6.1)', X(0:N:4)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;print&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; *&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;call&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SUB (X(0:N:1), N)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;call&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SUB (X(0:N:2), N/2)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;call&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SUB (X(0:N:4), N/4)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;DEALLOCATE&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; (X)&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;&lt;P&gt;end&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; &lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;program&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SEC_TEST&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;&lt;P&gt;subroutine&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SUB (X, N)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;integer&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; :: N&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;real&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; :: X(:)&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;print&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; '(" Passed X values :", 9f6.1)', X&lt;P&gt;&lt;/P&gt;&lt;/FONT&gt;&lt;B&gt;&lt;FONT color="#0000ff" size="2"&gt;&lt;P&gt;end subroutine&lt;/P&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;FONT&gt;&lt;/FONT&gt;&lt;FONT size="2"&gt; SUB&lt;/FONT&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;Use an inteface block for the subroutine and defered shape&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;*** Note that the subscripts inside the SUB&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;are 1:N+1. So you may have to muck around with&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;with the indexing&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;integer :: SliceHack = 1&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;  do I=0, N&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;    X(I+SliceHack) = ...&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;or&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;  do I=0+SliceHack,N+SliceHack&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;     X(I) = ...&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FON t="" size="2"&gt;Jim Dempsey&lt;/FON&gt;&lt;/P&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 13 Sep 2007 15:17:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744973#M3270</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2007-09-13T15:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744974#M3271</link>
      <description>You submit problem reports to Intel Premier Support, as described in the product documentation. You can start &lt;A href="http://www.intel.com/support/performancetools/fortran/"&gt;here&lt;/A&gt;.&lt;BR /&gt;&lt;BR /&gt;This problem sounds vaguely familiar to me but I can't readily find it in our tracking system.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Sep 2007 15:41:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744974#M3271</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2007-09-13T15:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744975#M3272</link>
      <description>When you report this, please reference T80051-CP. Curiously, replacing ALLOCATABLE with POINTER makes it behave correctly. The developers here are very puzzled by this bug and are looking at it.&lt;BR /&gt;</description>
      <pubDate>Thu, 13 Sep 2007 16:18:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744975#M3272</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2007-09-13T16:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744976#M3273</link>
      <description>Aaargh, sorry, I didn't see the bit about the reference number until after&lt;BR /&gt;I submitted the problem.&lt;BR /&gt;Dieter&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Sep 2007 09:13:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744976#M3273</guid>
      <dc:creator>Dieter_B_</dc:creator>
      <dc:date>2007-09-14T09:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744977#M3274</link>
      <description>Attach a comment to your issue.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Sep 2007 13:05:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744977#M3274</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2007-09-14T13:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744978#M3275</link>
      <description>Dieter,&lt;BR /&gt;&lt;BR /&gt;I can't see any recent submission from you. What's the issue number?&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Sep 2007 13:34:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744978#M3275</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2007-09-14T13:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744979#M3276</link>
      <description>This bug has been fixed in our sources - it affects allocatable arrays only. The fix will appear in a future update.&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Sep 2007 17:27:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744979#M3276</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2007-09-14T17:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744980#M3277</link>
      <description>A workaround is to add the switch "-switch fe_not_contig".&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Sep 2007 18:02:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744980#M3277</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2007-09-14T18:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744981#M3278</link>
      <description>I am told that the issue has now been resolved (quick action!). But when I&lt;BR /&gt;check up on the latest update, it seems to be from 24. August. So I had&lt;BR /&gt;better wait a bit before updating.&lt;BR /&gt;&lt;BR /&gt;I carefully read the documentation that came with the installation, and I do&lt;BR /&gt;not find instructions on how to update. How do I do it, please? Is it a new&lt;BR /&gt;installation, which replaces the one already in place, or is it a simpler process?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Sep 2007 08:17:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744981#M3278</guid>
      <dc:creator>Dieter_B_</dc:creator>
      <dc:date>2007-09-17T08:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744982#M3279</link>
      <description>Lately, the linux compiler update installations have been independent of previous ones. Each update suggests installing in a new directory, so that the old ones remain available until removed. &lt;BR /&gt;</description>
      <pubDate>Mon, 17 Sep 2007 12:46:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744982#M3279</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2007-09-17T12:46:11Z</dc:date>
    </item>
    <item>
      <title>Re: Array section passing problem</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744983#M3280</link>
      <description>The issue is resolved only in the sense that a fix has been checked in to the compiler sources. You won't see it until a future update - the support engineer who is handling your issue is supposed to let you know when the update with the fix is available.&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Sep 2007 13:52:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Array-section-passing-problem/m-p/744983#M3280</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2007-09-17T13:52:33Z</dc:date>
    </item>
  </channel>
</rss>

