<?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: IFX 2025 results in forrtl: severe (170): Program Exception - stack overflow error in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1647091#M174471</link>
    <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/80270"&gt;@avinashs&lt;/a&gt;&amp;nbsp;you may also show us how you define mysub and the subroutine that calls mysub.&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/395872"&gt;@iu360&lt;/a&gt;&amp;nbsp;if you want some help you need to provide at least some information what your problem actually is, which code it triggers and under which circumstances.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Dec 2024 11:44:27 GMT</pubDate>
    <dc:creator>TobiasK</dc:creator>
    <dc:date>2024-12-03T11:44:27Z</dc:date>
    <item>
      <title>IFX 2025 results in forrtl: severe (170): Program Exception - stack overflow error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1646719#M174443</link>
      <description>&lt;P&gt;I am merely running a previously successful project in IFORT with the compiler option changed to IFX. The project compiles successfully but produces the run time error&amp;nbsp;&lt;STRONG&gt;forrtl: severe (170): Program Exception - stack overflow&lt;/STRONG&gt; (shown in the DOS window) and&amp;nbsp;&lt;STRONG&gt;Unhandled exception at 0x00007FF72C2BFEE7 in myifxprog.exe: 0xC00000FD: Stack overflow (parameters: 0x0000000000000001, 0x0000000148803000)&lt;/STRONG&gt; in a MSVSC popup window. Any suggestions would be greatly appreciated as there is no diagnostic information available. I also noticed that the debugger is not displaying any variables or the variables have a red bullet with a cross in it (undefined address).&lt;/P&gt;</description>
      <pubDate>Sun, 01 Dec 2024 22:31:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1646719#M174443</guid>
      <dc:creator>avinashs</dc:creator>
      <dc:date>2024-12-01T22:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: IFX 2025 results in forrtl: severe (170): Program Exception - stack overflow error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1646893#M174449</link>
      <description>&lt;P&gt;Enable all runtime checks, and run in Debug configuration. Something may show up.&lt;/P&gt;&lt;P&gt;Stack Overflow can occur when a temporary needs to be created for:&lt;/P&gt;&lt;P&gt;ArrayOut = (Array Expression)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this be the case, then this can be corrected in two ways:&lt;/P&gt;&lt;P&gt;1) enable heap arrays&lt;/P&gt;&lt;P&gt;2) Replace the "offending" statement with DO loop(s)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 15:52:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1646893#M174449</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2024-12-02T15:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: IFX 2025 results in forrtl: severe (170): Program Exception - stack overflow error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1646960#M174460</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/63968"&gt;@jimdempseyatthecove&lt;/a&gt;&amp;nbsp;Thanks for the suggestions. I enabled heap arrays but the error did not go away. The debugger halts at a subroutine name i.e. at&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;-&amp;gt; subroutine mysub(arg1, arg2)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;and not at a specific executable statement. So cannot narrow it down to a particular variable. Again, the program works fine in IFORT and gfortran so this is an IFX specific error.&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 23:02:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1646960#M174460</guid>
      <dc:creator>avinashs</dc:creator>
      <dc:date>2024-12-02T23:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: IFX 2025 results in forrtl: severe (170): Program Exception - stack overflow error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1646964#M174461</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Windows VS to set heap-arrays&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PRoject Properties&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Fortran&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Optimization&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Heap arrays set to 0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;clean&lt;/P&gt;
&lt;P&gt;Rebuild&lt;/P&gt;
&lt;P&gt;run&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If Linux use -heap-arrays&lt;/P&gt;
&lt;P&gt;option.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Dec 2024 23:08:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1646964#M174461</guid>
      <dc:creator>Ron_Green</dc:creator>
      <dc:date>2024-12-02T23:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: IFX 2025 results in forrtl: severe (170): Program Exception - stack overflow error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1647091#M174471</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/80270"&gt;@avinashs&lt;/a&gt;&amp;nbsp;you may also show us how you define mysub and the subroutine that calls mysub.&lt;BR /&gt;&lt;BR /&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/395872"&gt;@iu360&lt;/a&gt;&amp;nbsp;if you want some help you need to provide at least some information what your problem actually is, which code it triggers and under which circumstances.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Dec 2024 11:44:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1647091#M174471</guid>
      <dc:creator>TobiasK</dc:creator>
      <dc:date>2024-12-03T11:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: IFX 2025 results in forrtl: severe (170): Program Exception - stack overflow error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1647366#M174488</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/52256"&gt;@Ron_Green&lt;/a&gt;&amp;nbsp;This is exactly what I did. The error persists with heap arrays.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Dec 2024 17:29:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1647366#M174488</guid>
      <dc:creator>avinashs</dc:creator>
      <dc:date>2024-12-04T17:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: IFX 2025 results in forrtl: severe (170): Program Exception - stack overflow error</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1653739#M174742</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/80270"&gt;@avinashs&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;could you please try to set heap-arrays not to zero but just leave it blank?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2025 12:47:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/IFX-2025-results-in-forrtl-severe-170-Program-Exception-stack/m-p/1653739#M174742</guid>
      <dc:creator>TobiasK</dc:creator>
      <dc:date>2025-01-02T12:47:57Z</dc:date>
    </item>
  </channel>
</rss>

