<?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 code crash during deallocate dynamic array for processor specif in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812450#M43511</link>
    <description>I concur with Arjen. Looks like something is stomping on the internal structures.&lt;BR /&gt;&lt;BR /&gt;What happens if you ALLOCATE, do something innocuous with the data (so code optimizer does not eliminate code), then DEALLOCATE. Do not assume the code you currently run is innocuous.&lt;BR /&gt;&lt;BR /&gt;If this works (DEALLOCATE without crash), then remove the call to the innocuous code, remove the DEALLOCATE and insert the DEALLOCATE in your code halfway to where you experience the crash. Then depending on if DEALLOCATION error occures or not, move the DEALLOCATION either closer to the end or beginning. Keep track of where you move it (e.g. leave tracks in code as comments). What you are doing is a binary search for point in code where corruption causes (future)deallocation error.&lt;BR /&gt;&lt;BR /&gt;Don't be surprised if bug dissappears while looking for it.&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey</description>
    <pubDate>Mon, 06 Jun 2011 17:47:28 GMT</pubDate>
    <dc:creator>jimdempseyatthecove</dc:creator>
    <dc:date>2011-06-06T17:47:28Z</dc:date>
    <item>
      <title>code crash during deallocate dynamic array for processor specific optimization</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812448#M43509</link>
      <description>&lt;P&gt;Code crashed when optimization set with processor specific switches.&lt;BR /&gt;&lt;BR /&gt;I am using windows IVF 2011 XE Update4 for X86 compiler 32. I have a dynamic array of a user defined type data which include a dynamic array, such as&lt;BR /&gt;Type myDataType&lt;BR /&gt; ...&lt;BR /&gt; real, dimension(:),allocatable:: m_fMemArray&lt;BR /&gt;End Type&lt;BR /&gt;&lt;BR /&gt;Type(myDataType), dimension(:),Allocatable::myActualData&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;At the program end, I have a deallocation of &lt;BR /&gt;DeAllocate(myActualData).&lt;BR /&gt;&lt;BR /&gt;This code runs fine in debug mode, in release mode. However, when I set the option of "Code Generation" as:&lt;BR /&gt;Enable Enhanced Instruction Set: Streaming SIMD Extension 2/arch:SSE2&lt;BR /&gt;Add Processor-OPptimized Code Path None (or Intel Netburst Microarchitecture and Pentium M...)&lt;BR /&gt;Intel Processor Specific Optimization Intel Netburst Microarchitecture and Pentium M...&lt;BR /&gt;&lt;BR /&gt;The code will crash at the time when trying to deallocate the data array. Such optimization has been working in the previous compilers.&lt;BR /&gt;&lt;BR /&gt;Is this a bug of compiler or possibly anything wrong on my side.&lt;BR /&gt;&lt;BR /&gt;If anyone can point me to the right direction, it will be much appreciated.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2011 12:25:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812448#M43509</guid>
      <dc:creator>wu_internet</dc:creator>
      <dc:date>2011-06-06T12:25:46Z</dc:date>
    </item>
    <item>
      <title>code crash during deallocate dynamic array for processor specif</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812449#M43510</link>
      <description>Can you post a complete program that exhibits this behaviour? &lt;BR /&gt;&lt;BR /&gt;My first hunch at a report like yours is that somewhere in the program you have&lt;BR /&gt;an access violation (array subscript out of bounds or the wrong number of &lt;BR /&gt;arguments to a routine etc.) and this causes a corruption in the internal &lt;BR /&gt;data. The problem surfaces much later. &lt;BR /&gt;&lt;BR /&gt;Another clue that this is happening is that it all works in debug mode but not &lt;BR /&gt;in release mode.&lt;BR /&gt;&lt;BR /&gt;One possible mehod to hunt down the place where the actual damage is done&lt;BR /&gt;is to deallocate the array earlier in the program and then stop - or to comment out &lt;BR /&gt;parts of the program and see whether the crash disappears.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Arjen</description>
      <pubDate>Mon, 06 Jun 2011 13:06:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812449#M43510</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2011-06-06T13:06:25Z</dc:date>
    </item>
    <item>
      <title>code crash during deallocate dynamic array for processor specif</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812450#M43511</link>
      <description>I concur with Arjen. Looks like something is stomping on the internal structures.&lt;BR /&gt;&lt;BR /&gt;What happens if you ALLOCATE, do something innocuous with the data (so code optimizer does not eliminate code), then DEALLOCATE. Do not assume the code you currently run is innocuous.&lt;BR /&gt;&lt;BR /&gt;If this works (DEALLOCATE without crash), then remove the call to the innocuous code, remove the DEALLOCATE and insert the DEALLOCATE in your code halfway to where you experience the crash. Then depending on if DEALLOCATION error occures or not, move the DEALLOCATION either closer to the end or beginning. Keep track of where you move it (e.g. leave tracks in code as comments). What you are doing is a binary search for point in code where corruption causes (future)deallocation error.&lt;BR /&gt;&lt;BR /&gt;Don't be surprised if bug dissappears while looking for it.&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey</description>
      <pubDate>Mon, 06 Jun 2011 17:47:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812450#M43511</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2011-06-06T17:47:28Z</dc:date>
    </item>
    <item>
      <title>code crash during deallocate dynamic array for processor specif</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812451#M43512</link>
      <description>Thanks very much for the advices provided by Arjen and Jim. They are really helpful.&lt;BR /&gt;Now I have resolved the problem without full comprehension. (I could be an IVF optimization bug).&lt;BR /&gt;&lt;BR /&gt;The cause of the problem:&lt;BR /&gt;=================&lt;BR /&gt;There is a defined data type in the application, such as:&lt;BR /&gt;&lt;BR /&gt;&lt;P&gt;Type myDataType&lt;BR /&gt; ...&lt;BR /&gt; real, dimension(:),allocatable:: m_fMemArray&lt;BR /&gt;End Type&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;There are declared such type data in the application, one is an allocatable array and the other is a scalar.&lt;BR /&gt;&lt;BR /&gt;Type(myDataType), dimension(:),Allocatable::myActualData&lt;BR /&gt;Type(myDataType)::InitValue &lt;BR /&gt;&lt;BR /&gt;In the middle of the application, as long as there is assignment of statement:&lt;BR /&gt;&lt;BR /&gt;Do i = 1, N&lt;BR /&gt; myActualData(i) = InitValue&lt;BR /&gt;EndDo&lt;/P&gt;&lt;P&gt;This will crash the application when deallocate myActualData.&lt;BR /&gt;&lt;BR /&gt;If I change the statement into&lt;BR /&gt;Do i = 1, N&lt;BR /&gt; Do j = 1,M&lt;BR /&gt; ...&lt;BR /&gt; myActualData(i).m_fMemArray(j) = InitValue.m_fMemArray(j)&lt;BR /&gt; ...&lt;BR /&gt; Enddo&lt;BR /&gt;Enddo&lt;BR /&gt;&lt;BR /&gt;This will be fine. &lt;BR /&gt;&lt;BR /&gt;The weird thing is that the application runs fine in the previous compilers. Also in current compiler, if in debug mode, or in release mode,with debug information exported. &lt;BR /&gt;&lt;BR /&gt;I suspect that it might be in certain optimized modeassigning the value through reference rather than data. However, when I play around with simple application, it appears all the assigment is actually doing assignment by data. I can not replicate the problem using simple application even though the above mentioned data is not massively used in the application.&lt;BR /&gt;&lt;BR /&gt;As I can not replicate in simplified application, I have not found a way to submit bug report to Intel yet.&lt;BR /&gt;&lt;BR /&gt;Kind regards,&lt;BR /&gt;&lt;BR /&gt;Wu_internet&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jun 2011 11:11:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812451#M43512</guid>
      <dc:creator>wu_internet</dc:creator>
      <dc:date>2011-06-08T11:11:42Z</dc:date>
    </item>
    <item>
      <title>code crash during deallocate dynamic array for processor specif</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812452#M43513</link>
      <description>Wu,&lt;BR /&gt;&lt;BR /&gt;What I suggest you do is to submit a problem report to Premier support with basically a copy of your above post.&lt;BR /&gt;&lt;BR /&gt;Ask them to provide you with diagnostic code that will dump the contents of the array descriptors. Note,you want both the arraydescriptor of the array of your types and each array descriptor within each element of your array of types.Run a test producing dump of array descriptors with the method the code works and a second test with a dump where the code fails. Use WinDiff if problem isn't apparent at first glance.&lt;BR /&gt;&lt;BR /&gt;I suspect something is wrong with how the array descriptors are initialized (or there is a side effect that disturbs the(an) array descriptor after initialization.&lt;BR /&gt;&lt;BR /&gt;The first response you get from them is usually"Can you provide us with a small reproducer". Kindly explain to them you said in your first postyou tried and you cannot.Then you ask them "What would you use to diagnose corruption of an array descriptor? I am willing to help you to diagnose this problem, I suspect this is a case of array descriptor initialization or corruption but I need your help in dumping the contents of an array descriptor and identifying what I see. Let's work together to solve this problem."&lt;BR /&gt;&lt;BR /&gt;While you have a work around, you would like the problem fixed because this problem may exist elsewhere in your code but the symptoms haven't caused the problem to be noticed (yet). One such problem with hidden symptom would be if the problem did not cause a crash but instead caused a memory leak. A worse problem would be an unnoticed corruption of the heap resulting in multiple objects allocated to overlapping addresses. I think you have identified a serious problem and it warrants a little bit of extra effort to diagnose and correct. The support person should understand this and work with you to correct this problem.&lt;BR /&gt;&lt;BR /&gt;Jim Dempsey</description>
      <pubDate>Wed, 08 Jun 2011 17:15:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812452#M43513</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2011-06-08T17:15:00Z</dc:date>
    </item>
    <item>
      <title>code crash during deallocate dynamic array for processor specif</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812453#M43514</link>
      <description>You don't need to submit a report quite yet. Use the attached and see if it helps you at all. Note that the "A0 offset" is no longer used for that purpose, so it will look strange. It will be zero unless the variable is polymorphic.&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Jun 2011 17:58:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812453#M43514</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2011-06-08T17:58:00Z</dc:date>
    </item>
    <item>
      <title>code crash during deallocate dynamic array for processor specif</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812454#M43515</link>
      <description>Steve,&lt;BR /&gt;&lt;BR /&gt;Thanks for attaching the array descriptor dump code. Will save it for a rainy day. It will be interesting to see if Wu discovers anything interesting.&lt;BR /&gt;&lt;BR /&gt;Jim</description>
      <pubDate>Wed, 08 Jun 2011 22:48:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812454#M43515</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2011-06-08T22:48:40Z</dc:date>
    </item>
    <item>
      <title>I am also experimenting a</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812455#M43516</link>
      <description>I am also experimenting a hard crash when calling deallocate on an allocatable array which belongs to a derived type. I am also using SSE2 but disabling it does not change the behavior.

The type is:
type :: RPT21DARR
  real, allocatable  :: p(:)
end type RPT21DARR

The variable is:
type(RPT21DARR) :: sk_2s(30)

The call which crashes:
deallocate(sk_2s(1)%p,STAT=ir)

Calling LOC on sk_2s(1)%p gets: 96031592 which is  5B95368 in hex.

Dumping the array descriptor of  sk_2s(1)%p just before the crach using the routine provided by Steve I am getting:

Dump of descriptor at location 05DEECA0
 Base address: 05B95368
 Element size: 4
 A0 offset from base: -4
 Flags: 00000005
        Defined
        Contiguous
 Rank: 1
  Dimension 1: LB 1 Extent 3005 Stride 4

The length is 3005 (as allocated). Do you see anything abnormal in this dump?   

Thanks,
Rak</description>
      <pubDate>Fri, 30 Nov 2012 21:20:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812455#M43516</guid>
      <dc:creator>rakkota</dc:creator>
      <dc:date>2012-11-30T21:20:10Z</dc:date>
    </item>
    <item>
      <title>And the error message for the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812456#M43517</link>
      <description>And the error message for the crash is... ?</description>
      <pubDate>Fri, 30 Nov 2012 21:23:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812456#M43517</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-11-30T21:23:24Z</dc:date>
    </item>
    <item>
      <title>Quote:Steve Lionel (Intel)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812457#M43518</link>
      <description>&lt;BLOCKQUOTE&gt;Steve Lionel (Intel) wrote:&lt;BR /&gt;&lt;P&gt;And the error message for the crash is... ?&lt;/P&gt;&lt;/BLOCKQUOTE&gt;

No error message at all. Just the Windows trace for an application crash:
Problem signature:
  Problem Event Name:	APPCRASH
  Application Name:	.emme.exe
  Application Version:	0.0.0.0
  Application Timestamp:	50ad4311
  Fault Module Name:	ntdll.dll
  Fault Module Version:	6.0.6002.18541
  Fault Module Timestamp:	4ec3e39f
  Exception Code:	c0000005
  Exception Offset:	0002a43e
  OS Version:	6.0.6002.2.2.0.256.6
  Locale ID:	1033
  Additional Information 1:	fd00
  Additional Information 2:	ea6f5fe8924aaa756324d57f87834160
  Additional Information 3:	fd00
  Additional Information 4:	ea6f5fe8924aaa756324d57f87834160

Anyway, it seems that I have isolated the problem. It appears only when I use inside a OpenMP parallel DO a variable declared as:

type(DPPT22DARR) :: ycaddmk(MCLS_) 
where MCLS_ is a parameter (30).

The above type is defined as:
      type :: DPPT22DARR
        double precision, allocatable  :: p(:,:)
      end type DPPT22DARR

The usage of the variable is either as:
ycaddmk(m)%p(i,j)=bla

or directly a matrix operation:
ycaddmk(m)%p=MyMatrix+MyScalar*ycaddmk(m)%p

I am trying now to reproduce it in a small project (hopefully I will be able to). 

As a work around for the first usage, I created a temporary matrix and copy in/copy out ycaddmk(m)%p  before/after the parallel DO (luckily the DO loop is over variable j). Unfortunately, I cannot do the same thing for the second example where the DO loop is over variable m :-( 

Thanks Steve,
Rak</description>
      <pubDate>Mon, 03 Dec 2012 17:42:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812457#M43518</guid>
      <dc:creator>rakkota</dc:creator>
      <dc:date>2012-12-03T17:42:43Z</dc:date>
    </item>
    <item>
      <title>The crash is an access</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812458#M43519</link>
      <description>The crash is an access violation. You might be exceeding the thread stack size - try defining the environment variable OMP_STACKSIZE to be some larger value (10000000 or such).</description>
      <pubDate>Mon, 03 Dec 2012 19:51:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812458#M43519</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-12-03T19:51:22Z</dc:date>
    </item>
    <item>
      <title>Quote:Steve Lionel (Intel)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812459#M43520</link>
      <description>&lt;BLOCKQUOTE&gt;Steve Lionel (Intel) wrote:&lt;BR /&gt;&lt;P&gt;The crash is an access violation. You might be exceeding the thread stack size - try defining the environment variable OMP_STACKSIZE to be some larger value (10000000 or such).&lt;/P&gt;&lt;/BLOCKQUOTE&gt;

100% sure it is not that (I've got it in the past and the behavior was different. It has been already set to a higher value anyway, and increasing it more didin't solve the problem.

I started constructing a simple program to try to reproduce the problem but I run now into a compiler bug (depressing...). I am attaching the VC2008 project file which issues the message: "1&amp;gt;fortcom: Fatal: There has been an internal compiler error (C0000005)." It practically contains only one *.f file. Note that this does not reproduce the crash but I cannot even compile. 

Perhaps more depressing: when I pressed upload, I've got an HTML AJAX error I will try to attach the JPEG screen-shot. Anyway, I am far more interested by the FORTRAN problem which is kind of show stopper of our current project than the HTML one.

Thanks Steve,
Rak</description>
      <pubDate>Mon, 03 Dec 2012 20:51:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812459#M43520</guid>
      <dc:creator>rakkota</dc:creator>
      <dc:date>2012-12-03T20:51:59Z</dc:date>
    </item>
    <item>
      <title>As expected, the upload didn</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812460#M43521</link>
      <description>As expected, the upload didn't work as expected.</description>
      <pubDate>Mon, 03 Dec 2012 20:54:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812460#M43521</guid>
      <dc:creator>rakkota</dc:creator>
      <dc:date>2012-12-03T20:54:52Z</dc:date>
    </item>
    <item>
      <title>Project to reproduce the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812461#M43522</link>
      <description>Project to reproduce the compiler bug.</description>
      <pubDate>Mon, 03 Dec 2012 20:55:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812461#M43522</guid>
      <dc:creator>rakkota</dc:creator>
      <dc:date>2012-12-03T20:55:58Z</dc:date>
    </item>
    <item>
      <title>I can't reproduce the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812462#M43523</link>
      <description>I can't reproduce the compiler failure with the version you cited (2011 Update 4). But when I look in the build logs, I see you are actually using 11.1.048, which is considerably older!  Please try it with a newer compiler.</description>
      <pubDate>Mon, 03 Dec 2012 22:11:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812462#M43523</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-12-03T22:11:01Z</dc:date>
    </item>
    <item>
      <title>Quote:Steve Lionel (Intel)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812463#M43524</link>
      <description>&lt;BLOCKQUOTE&gt;Steve Lionel (Intel) wrote:&lt;BR /&gt;&lt;P&gt;I can't reproduce the compiler failure with the version you cited (2011 Update 4). But when I look in the build logs, I see you are actually using 11.1.048, which is considerably older!  Please try it with a newer compiler.&lt;/P&gt;&lt;/BLOCKQUOTE&gt;

Hi Steve,

just to let you know that upgrading the compiler to the latest version solved both problems:
- the original one (mishandling arrays of allocatable arrays/pointers inside OpenMP do loops)
- the compiler crash inside VisualStudio when building a small example using allocatable arrays/pointers inside OpenMP do loops

Thanks,
Rak</description>
      <pubDate>Tue, 04 Dec 2012 19:36:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812463#M43524</guid>
      <dc:creator>rakkota</dc:creator>
      <dc:date>2012-12-04T19:36:24Z</dc:date>
    </item>
    <item>
      <title>Glad to hear it. In the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812464#M43525</link>
      <description>Glad to hear it. In the future, please double-check the compiler version you are using before writing up the report. I don't mind a report against an old version, but it saves both of us time if you name the correct version.</description>
      <pubDate>Tue, 04 Dec 2012 22:11:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/code-crash-during-deallocate-dynamic-array-for-processor/m-p/812464#M43525</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2012-12-04T22:11:31Z</dc:date>
    </item>
  </channel>
</rss>

