<?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 Steve, in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033574#M111172</link>
    <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;Thank you for the help. &amp;nbsp;The options have pointed out some old unique ways the file dumps were being synchronized, including the reading of formatted direct-access files as sequential files. &amp;nbsp;This has improved several items, if only for code standardization.&lt;/P&gt;

&lt;P&gt;Thank you again.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Apr 2015 19:41:09 GMT</pubDate>
    <dc:creator>NotThatItMatters</dc:creator>
    <dc:date>2015-04-21T19:41:09Z</dc:date>
    <item>
      <title>Unformatted file I/O difference between Debug and Release</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033569#M111167</link>
      <description>&lt;P&gt;I have code which has the option of dumping memory to a file and then later reading this file to repopulate memory for a later run. &amp;nbsp;I am noting that I can run the code in Release mode without error, and yet in Debug mode the READ statements crash with the claim, input beyond end of record.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;The READ statements contain within the program two REWIND statements for the file. &amp;nbsp;I have put some tracking statements to a file to see where the problem lies, but there is no apparent reading out of sequence.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2015 18:39:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033569#M111167</guid>
      <dc:creator>NotThatItMatters</dc:creator>
      <dc:date>2015-04-20T18:39:04Z</dc:date>
    </item>
    <item>
      <title>There is likely an error in</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033570#M111168</link>
      <description>&lt;P&gt;There is likely an error in your code, perhaps an uninitialized variable. Without a test case there's no way to tell. File I/O is not handled any differently in debug or release modes, so the difference is almost certainly variable related.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2015 19:18:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033570#M111168</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-04-20T19:18:51Z</dc:date>
    </item>
    <item>
      <title>Thanks for sending the</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033571#M111169</link>
      <description>&lt;P&gt;Thanks for sending the project file. You had /fpscomp:general set in the Debug configuration but not in Release, and this very definitely changes the structure of unformatted files.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 14:50:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033571#M111169</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-04-21T14:50:06Z</dc:date>
    </item>
    <item>
      <title>If memory serves, the switch</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033572#M111170</link>
      <description>&lt;P&gt;If memory serves, the switch /fpscomp:general was set in the Debug configuration so that the output of my direct access files would be equivalent when running Debug or Release. &amp;nbsp;Without this switch, the &lt;SPAN style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;fixed record length file&amp;nbsp;&lt;/SPAN&gt;created with the&amp;nbsp;Debug configuration had LF as an end-of-line indicator whereas the Release had CR/LF.&lt;/P&gt;

&lt;P&gt;The bonking line at present is something along the lines of&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;WRITE(IOCODE) (ARRAY(I), I = 1, IJD)&lt;/PRE&gt;

&lt;P&gt;or&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;READ(IOCODE) (ARRAY(I), I = 1, IJD)&lt;/PRE&gt;

&lt;P&gt;where IJD is 0.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 15:37:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033572#M111170</guid>
      <dc:creator>NotThatItMatters</dc:creator>
      <dc:date>2015-04-21T15:37:46Z</dc:date>
    </item>
    <item>
      <title>You've got other /fpscomp</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033573#M111171</link>
      <description>&lt;P&gt;You've got other /fpscomp options set in Debug and not release. These need to match. For example, you have /fpscomp:ioformat set in the Compatibility property page in Debug but not in release. General was set on the Compatibility page in Debug but as "Additional Options" in release. Make all these match.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 15:52:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033573#M111171</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-04-21T15:52:46Z</dc:date>
    </item>
    <item>
      <title>Steve,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033574#M111172</link>
      <description>&lt;P&gt;Steve,&lt;/P&gt;

&lt;P&gt;Thank you for the help. &amp;nbsp;The options have pointed out some old unique ways the file dumps were being synchronized, including the reading of formatted direct-access files as sequential files. &amp;nbsp;This has improved several items, if only for code standardization.&lt;/P&gt;

&lt;P&gt;Thank you again.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2015 19:41:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Unformatted-file-I-O-difference-between-Debug-and-Release/m-p/1033574#M111172</guid>
      <dc:creator>NotThatItMatters</dc:creator>
      <dc:date>2015-04-21T19:41:09Z</dc:date>
    </item>
  </channel>
</rss>

