<?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 This seems to be an in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033592#M111179</link>
    <description>&lt;P&gt;This seems to be an independent problem. A fix is being targeted for the same&amp;nbsp;update to the version 16.0 beta compiler as for your OpenMP tasking issue, available in about a couple of weeks.&amp;nbsp;If you would like to test the fix in the 16.0 beta compiler, see Steve's post at the top of this forum, (&lt;A href="https://software.intel.com/en-us/forums/topic/549312"&gt;https://software.intel.com/en-us/forums/topic/549312&lt;/A&gt;&amp;nbsp;) and go to the registration link. Please let us know if it works.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Apr 2015 19:33:06 GMT</pubDate>
    <dc:creator>Martyn_C_Intel</dc:creator>
    <dc:date>2015-04-21T19:33:06Z</dc:date>
    <item>
      <title>Openmp allocatable type private bug</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033586#M111173</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I think there is a bug , when using an allocatable type in a private list, like the small example below. For this program , I get "allocatable array is already allocated" , without openmp it works well. And No problem with gfortran either.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;

&lt;P&gt;Pat&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;program toto
implicit none
type qq
double precision,dimension(:),allocatable :: f
end type
call t()
contains
subroutine t()
type(qq),allocatable :: ff
double precision,dimension(:),allocatable :: f
integer :: i,j
i=0
!$omp parallel sections private(f,ff)
!$omp section 
print *,i
!$omp section
allocate(f(10))
f=2
print *,'f',f
deallocate(f)
!$omp section
allocate(ff)
allocate(ff%f(5))
ff%f=5
print *,'g',ff%f
deallocate(ff)
!$omp end parallel sections
end subroutine
end program toto
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2014 17:17:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033586#M111173</guid>
      <dc:creator>Patrice_l_</dc:creator>
      <dc:date>2014-12-26T17:17:26Z</dc:date>
    </item>
    <item>
      <title>Did you mean to make the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033587#M111174</link>
      <description>&lt;P&gt;Oops disregard&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2014 20:21:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033587#M111174</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2014-12-26T20:21:00Z</dc:date>
    </item>
    <item>
      <title>Add copyin(f,ff) such that</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033588#M111175</link>
      <description>&lt;P&gt;Add copyin(f,ff) such that the empty array descriptors are copied to the thread copy of the array descriptor.&lt;/P&gt;

&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Fri, 26 Dec 2014 22:21:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033588#M111175</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2014-12-26T22:21:25Z</dc:date>
    </item>
    <item>
      <title>With what compiler version,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033589#M111176</link>
      <description>&lt;P&gt;With what compiler version, environment and command line did you see the error?&lt;/P&gt;
&lt;P&gt;I tried and your code seemed to work fine for me. I don't see why a copyin clause should be needed, there's no actual data to copy.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2015 17:27:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033589#M111176</guid>
      <dc:creator>Martyn_C_Intel</dc:creator>
      <dc:date>2015-01-05T17:27:01Z</dc:date>
    </item>
    <item>
      <title>Hi ,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033590#M111177</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;

&lt;P&gt;I'm using version 15.0.1 and I'm compiling with ifort -O0 -C -g -traceback. The test case is simple so it doesnt trigger the bug without the check. But it does in a more complicated case.&lt;/P&gt;

&lt;P&gt;Pat.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2015 17:40:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033590#M111177</guid>
      <dc:creator>Patrice_l_</dc:creator>
      <dc:date>2015-01-05T17:40:47Z</dc:date>
    </item>
    <item>
      <title>Thanks, that allowed me to</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033591#M111178</link>
      <description>&lt;P&gt;Thanks, that allowed me to reproduce. I was able to make a smaller test case that gave the error even without -C. This has been escalated to the compiler developers, we'll let you know what they say. It's possible that there might be a link between this issue and the other one that you reported.&lt;/P&gt;
&lt;P&gt;Thanks for reporting these problems and for providing clear reproducers.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2015 20:49:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033591#M111178</guid>
      <dc:creator>Martyn_C_Intel</dc:creator>
      <dc:date>2015-01-05T20:49:08Z</dc:date>
    </item>
    <item>
      <title>This seems to be an</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033592#M111179</link>
      <description>&lt;P&gt;This seems to be an independent problem. A fix is being targeted for the same&amp;nbsp;update to the version 16.0 beta compiler as for your OpenMP tasking issue, available in about a couple of weeks.&amp;nbsp;If you would like to test the fix in the 16.0 beta compiler, see Steve's post at the top of this forum, (&lt;A href="https://software.intel.com/en-us/forums/topic/549312"&gt;https://software.intel.com/en-us/forums/topic/549312&lt;/A&gt;&amp;nbsp;) and go to the registration link. Please let us know if it works.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 19:33:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033592#M111179</guid>
      <dc:creator>Martyn_C_Intel</dc:creator>
      <dc:date>2015-04-21T19:33:06Z</dc:date>
    </item>
    <item>
      <title>That beta update compiler is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033593#M111180</link>
      <description>&lt;P&gt;That beta update compiler is now available.&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2015 23:56:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033593#M111180</guid>
      <dc:creator>Martyn_C_Intel</dc:creator>
      <dc:date>2015-05-18T23:56:56Z</dc:date>
    </item>
    <item>
      <title>I confirm this bug is fixed</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033594#M111181</link>
      <description>&lt;P&gt;I confirm this bug is fixed with the intel 16 beta update 1.&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 14:10:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Openmp-allocatable-type-private-bug/m-p/1033594#M111181</guid>
      <dc:creator>Patrice_l_</dc:creator>
      <dc:date>2015-05-19T14:10:12Z</dc:date>
    </item>
  </channel>
</rss>

