<?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: program hangs when using DEALLOCATE in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/753999#M9566</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/367365"&gt;tim18&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; Such as IMPLICIT NONE, to assure that you don't fail to declare INTEGER x ? or -check, to perform several run-time checks?&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
As for the IMPLICIT NONE I always use it and therefore it shouldn' be the case.&lt;BR /&gt;&lt;BR /&gt;I am now using -check all - and there are lots of other issues appearing before the problem I described. After I solve these issues I hope I will be able to understand what's wrong with the DEALLOCATE statement. I'll report the result later.&lt;BR /&gt;&lt;BR /&gt;Thanks for the tip!&lt;BR /&gt;</description>
    <pubDate>Tue, 24 Mar 2009 02:12:09 GMT</pubDate>
    <dc:creator>whistles28</dc:creator>
    <dc:date>2009-03-24T02:12:09Z</dc:date>
    <item>
      <title>program hangs when using DEALLOCATE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/753997#M9564</link>
      <description>Hi!&lt;BR /&gt;&lt;BR /&gt;I am new here. I use the ifort compiler in with a Xeon based computer (well, actually a cluster but I use only one computer).&lt;BR /&gt;Does anyone know what can be happening when my fortran program just hangs at one DEALLOCATE(this_is_an_array) statement?&lt;BR /&gt;&lt;BR /&gt;I checked the state of the array just before the statement and it is allocated&lt;BR /&gt;I even wrote&lt;BR /&gt;&lt;BR /&gt;DEALLOCATE(this_is_an_array, STAT=x)&lt;BR /&gt;Write(*,*) x&lt;BR /&gt;&lt;BR /&gt;but x never gets to be written.It hangs before this.&lt;BR /&gt;&lt;BR /&gt;the array was defined as allocatable in an external module an later it was allocated in a subroutine.&lt;BR /&gt;&lt;BR /&gt;Is there any compilation option which will allow me to know what's happening?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Francisco</description>
      <pubDate>Tue, 24 Mar 2009 00:10:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/753997#M9564</guid>
      <dc:creator>whistles28</dc:creator>
      <dc:date>2009-03-24T00:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: program hangs when using DEALLOCATE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/753998#M9565</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/419526"&gt;whistles28&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;DEALLOCATE(this_is_an_array, STAT=x)&lt;BR /&gt;Write(*,*) x&lt;BR /&gt;&lt;BR /&gt;but x never gets to be written.It hangs before this.&lt;BR /&gt;&lt;BR /&gt;the array was defined as allocatable in an external module an later it was allocated in a subroutine.&lt;BR /&gt;&lt;BR /&gt;Is there any compilation option which will allow me to know what's happening?&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Such as IMPLICIT NONE, to assure that you don't fail to declare INTEGER x ? or -check, to perform several run-time checks?&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Mar 2009 01:25:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/753998#M9565</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2009-03-24T01:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: program hangs when using DEALLOCATE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/753999#M9566</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/367365"&gt;tim18&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; Such as IMPLICIT NONE, to assure that you don't fail to declare INTEGER x ? or -check, to perform several run-time checks?&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
As for the IMPLICIT NONE I always use it and therefore it shouldn' be the case.&lt;BR /&gt;&lt;BR /&gt;I am now using -check all - and there are lots of other issues appearing before the problem I described. After I solve these issues I hope I will be able to understand what's wrong with the DEALLOCATE statement. I'll report the result later.&lt;BR /&gt;&lt;BR /&gt;Thanks for the tip!&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Mar 2009 02:12:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/753999#M9566</guid>
      <dc:creator>whistles28</dc:creator>
      <dc:date>2009-03-24T02:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: program hangs when using DEALLOCATE</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/754000#M9567</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/419526"&gt;whistles28&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
As for the IMPLICIT NONE I always use it and therefore it shouldn' be the case.&lt;BR /&gt;&lt;BR /&gt;I am now using -check all - and there are lots of other issues appearing before the problem I described. After I solve these issues I hope I will be able to understand what's wrong with the DEALLOCATE statement. I'll report the result later.&lt;BR /&gt;&lt;BR /&gt;Thanks for the tip!&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
Problem solved:&lt;BR /&gt;&lt;BR /&gt;The problem was that I had some variables which were used before they were initialized and the arrays related to them became inconsistent. By activating the -check option I managed to detect these problems and correct them.&lt;BR /&gt;&lt;BR /&gt;Thanks again!&lt;BR /&gt;Francisco&lt;BR /&gt;</description>
      <pubDate>Tue, 24 Mar 2009 02:52:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/program-hangs-when-using-DEALLOCATE/m-p/754000#M9567</guid>
      <dc:creator>whistles28</dc:creator>
      <dc:date>2009-03-24T02:52:48Z</dc:date>
    </item>
  </channel>
</rss>

