<?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 OK, when did 16.0.2 come out  in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085012#M122823</link>
    <description>&lt;P&gt;OK, when did 16.0.2 come out ?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I might already have it on the other PC -- -&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;No big deal, but thought you'd want to be apprised anyway.&lt;/P&gt;</description>
    <pubDate>Wed, 24 Feb 2016 15:59:46 GMT</pubDate>
    <dc:creator>WSinc</dc:creator>
    <dc:date>2016-02-24T15:59:46Z</dc:date>
    <item>
      <title>Another debugging issue - gives wrong values</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085006#M122817</link>
      <description>&lt;P&gt;The following source code runs fine as far as the PRINT statements go -&lt;/P&gt;

&lt;P&gt;But I get completely wrong values when I put a break point after the PRINT statements, and&lt;/P&gt;

&lt;P&gt;try to look at the variable contents. It looks like it does not think they were initialized.&lt;/P&gt;

&lt;P&gt;And about half the time VS crashes ! !&lt;/P&gt;

&lt;P&gt;The problem goes away when I make everything real(8) instead.&lt;/P&gt;

&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp;program kepler&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; implicit none&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; real(16) r(3),th(3),x(3),y(3),e,p,kang&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp;!!!!!!!!!!!!!!!!!!!!! &amp;nbsp; &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; kang=1&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; e=0.&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; p=1.0&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; th(1)=.7854Q0&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; r(1) =p/( 1.0 - e*cos(th(1)) )&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; th(2)=kang/r(1)**2 ! theta dot &amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; r(2) =-sin(th(1))/( 1.0 - e*cos(th(1))**2 )&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; r(2) =r(2)*p&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; x(1)=r(1)*cos(th(1))&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; y(1)=r(1)*sin(th(1))&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; x(2)=-r(1)*sin(th(1))*th(2)+cos(th(1))*r(2)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; y(2)= r(1)*cos(th(1))*th(2)-sin(th(1))*r(2)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; th(3)=-2.0*r(2)/r(1)**3&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; print *,"e,p=",e,p&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; print *,"r=",r&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; print *,"th=",th&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; print *,"x=",x&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; print *,"y=",y&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; read(*,*)&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; end program kepler&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;Real(16) is part of the standard, right ?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 20:52:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085006#M122817</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2016-02-23T20:52:49Z</dc:date>
    </item>
    <item>
      <title>No, real(16) is not "part of</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085007#M122818</link>
      <description>&lt;P&gt;No, real(16) is not "part of the standard" in that the standard does not specify particular kind numbers. Furthermore, the standard requires only single and double precision. That said, this program should work ok.&lt;/P&gt;

&lt;P&gt;I can reproduce an issue with Visual Studio crashing when one hits the breakpoint. It might be that the debug support for REAL(16) has some issues - I'll investigate further.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Feb 2016 21:16:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085007#M122818</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-02-23T21:16:47Z</dc:date>
    </item>
    <item>
      <title>Something that looks a little</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085008#M122819</link>
      <description>&lt;P&gt;Something that looks a little strange to me is that you feel you need the precision of REAL(16) in your calculations, but you are using a value for pi/4 that is rounded at the&amp;nbsp;4th significant digit.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 01:20:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085008#M122819</guid>
      <dc:creator>Harry_A_</dc:creator>
      <dc:date>2016-02-24T01:20:03Z</dc:date>
    </item>
    <item>
      <title>Not trying to be exact about</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085009#M122820</link>
      <description>&lt;P&gt;Not trying to be exact about that, just trying to get approx. 45 degree polar angle.&lt;/P&gt;

&lt;P&gt;If I wanted pi/4, I would put the whole thing in to 18 places, then divide it by four.&lt;/P&gt;

&lt;P&gt;3.14159265358979323846, etc.&lt;/P&gt;

&lt;P&gt;Or say atan(1.0)&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 02:18:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085009#M122820</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2016-02-24T02:18:31Z</dc:date>
    </item>
    <item>
      <title>I tried with VS2013+IFort 16</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085010#M122821</link>
      <description>&lt;P&gt;I tried with VS2013+IFort 16.0.1. I did not notice anything unusual in the debugger, after reaching a breakpoint set on the READ statement. All the variables had reasonable values.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 10:45:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085010#M122821</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2016-02-24T10:45:12Z</dc:date>
    </item>
    <item>
      <title>I could reproduce this with</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085011#M122822</link>
      <description>&lt;P&gt;I could reproduce this with 16.0.0 but not 16.0.2. Please install the current version.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 15:26:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085011#M122822</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-02-24T15:26:19Z</dc:date>
    </item>
    <item>
      <title>OK, when did 16.0.2 come out</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085012#M122823</link>
      <description>&lt;P&gt;OK, when did 16.0.2 come out ?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I might already have it on the other PC -- -&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;No big deal, but thought you'd want to be apprised anyway.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 15:59:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085012#M122823</guid>
      <dc:creator>WSinc</dc:creator>
      <dc:date>2016-02-24T15:59:46Z</dc:date>
    </item>
    <item>
      <title>Last week.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085013#M122824</link>
      <description>&lt;P&gt;Last week.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2016 16:33:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Another-debugging-issue-gives-wrong-values/m-p/1085013#M122824</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-02-24T16:33:17Z</dc:date>
    </item>
  </channel>
</rss>

