<?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 Is this the same issue as in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974485#M97972</link>
    <description>&lt;P&gt;Is this the same issue as DPD200247881 reported &lt;A href="http://software.intel.com/en-us/forums/topic/392292"&gt;in this thread&lt;/A&gt;?&lt;/P&gt;

&lt;P&gt;May we expect a fix in the next minor release?&lt;/P&gt;</description>
    <pubDate>Mon, 10 Feb 2014 03:16:47 GMT</pubDate>
    <dc:creator>Alexis_R_</dc:creator>
    <dc:date>2014-02-10T03:16:47Z</dc:date>
    <item>
      <title>buggy coarray element assignment for derived type with allocatable component</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974484#M97971</link>
      <description>&lt;P&gt;I have seen a couple of similar bug reports on the forum, but not sure this is identical, so here goes.&lt;/P&gt;
&lt;P&gt;With ifort 14.0.1.106 using -assume realloc_lhs, the following code gives a segfault at line 12, which looks to me like a compiler bug.&lt;/P&gt;&lt;PRE class="brush:fortran;"&gt;[fortran]module my_class_module
    type my_type
        real, allocatable :: arr(:,:)
        contains
        procedure :: my_assignment
        generic :: assignment(=) =&amp;gt; my_assignment
    end type
    contains
    subroutine my_assignment(lhs,rhs)
        class(my_type),  intent(inout) :: lhs
        type(my_type),  intent(in)    :: rhs
        lhs%arr = rhs%arr
    end subroutine
end module

program hello
    use my_class_module
    type(my_type)           ::  c&lt;LI&gt;

    allocate(c%arr(2,2))

    c%arr = 0.0

    if (this_image() .gt. 1) c%arr = c[1]%arr ! this is ok
    if (this_image() .gt. 1) c     = c[1]     ! this line triggers a segfault
end program[/fortran]&lt;/LI&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2014 03:49:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974484#M97971</guid>
      <dc:creator>Alexis_R_</dc:creator>
      <dc:date>2014-02-03T03:49:40Z</dc:date>
    </item>
    <item>
      <title>Is this the same issue as</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974485#M97972</link>
      <description>&lt;P&gt;Is this the same issue as DPD200247881 reported &lt;A href="http://software.intel.com/en-us/forums/topic/392292"&gt;in this thread&lt;/A&gt;?&lt;/P&gt;

&lt;P&gt;May we expect a fix in the next minor release?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2014 03:16:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974485#M97972</guid>
      <dc:creator>Alexis_R_</dc:creator>
      <dc:date>2014-02-10T03:16:47Z</dc:date>
    </item>
    <item>
      <title>I would appreciate a comment</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974486#M97973</link>
      <description>&lt;P&gt;I would appreciate a comment from someone at Intel. I suspect this is a bug in the Intel compiler's coarray implementation, in which case I'd appreciate an issue number I can track.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2014 02:05:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974486#M97973</guid>
      <dc:creator>Alexis_R_</dc:creator>
      <dc:date>2014-04-01T02:05:11Z</dc:date>
    </item>
    <item>
      <title>Please accept our apologies</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974487#M97974</link>
      <description>&lt;P&gt;Please accept our apologies for overlooking your earlier post. It could be related to DPD200247881. The fix for the earlier issue noted in that other post is in the upcoming major release later this year but it does not address your issue or the later issue Steve captured in the internal tracking number you noted.&lt;/P&gt;
&lt;P&gt;I submitted your case to Development under a separate tracking id (noted below) so it can be analyzed separately and will let you know what information I receive from Development regarding your case.&lt;/P&gt;
&lt;P&gt;(Internal tracking id: DPD200255059)&lt;/P&gt;</description>
      <pubDate>Tue, 01 Apr 2014 12:05:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974487#M97974</guid>
      <dc:creator>Kevin_D_Intel</dc:creator>
      <dc:date>2014-04-01T12:05:00Z</dc:date>
    </item>
    <item>
      <title>Has a fix for DPD200255059</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974488#M97975</link>
      <description>&lt;P&gt;Has a fix for DPD200255059 been found? If so, which release is it targeted for?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2014 19:07:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974488#M97975</guid>
      <dc:creator>Alexis_R_</dc:creator>
      <dc:date>2014-08-13T19:07:06Z</dc:date>
    </item>
    <item>
      <title>I note that DPD200255059 is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974489#M97976</link>
      <description>&lt;P&gt;I note that DPD200255059 is not listed in the XE2015 Update 1 list of fixes. Any other updates on this issue?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2014 15:01:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974489#M97976</guid>
      <dc:creator>Alexis_R_</dc:creator>
      <dc:date>2014-11-20T15:01:59Z</dc:date>
    </item>
    <item>
      <title>My apologies. I wasn't aware</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974490#M97977</link>
      <description>&lt;P&gt;My apologies. I wasn't aware of your inquiry back in August.&lt;/P&gt;

&lt;P&gt;That defect has not yet been fixed. Shortly after submitting the Developers indicated it may take some digging to get to the bottom of this one. I did inquire whether there's any current status and will share that with you if there is anything new.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2014 15:21:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974490#M97977</guid>
      <dc:creator>Kevin_D_Intel</dc:creator>
      <dc:date>2014-11-20T15:21:47Z</dc:date>
    </item>
    <item>
      <title>The Developer said it is on</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974491#M97978</link>
      <description>&lt;P&gt;The Developer said it is on the radar, that they have investigated further and expect fixing it requires significant work and thus time. I will keep you updated.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Nov 2014 16:32:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/buggy-coarray-element-assignment-for-derived-type-with/m-p/974491#M97978</guid>
      <dc:creator>Kevin_D_Intel</dc:creator>
      <dc:date>2014-11-20T16:32:13Z</dc:date>
    </item>
  </channel>
</rss>

