<?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 Sorry for the two - thought I in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082010#M122140</link>
    <description>&lt;P&gt;Sorry for the two - thought I lost it&lt;/P&gt;

&lt;P&gt;There is a reason to hate C++&lt;/P&gt;</description>
    <pubDate>Wed, 01 Jun 2016 20:37:57 GMT</pubDate>
    <dc:creator>JohnNichols</dc:creator>
    <dc:date>2016-06-01T20:37:57Z</dc:date>
    <item>
      <title>VS 2015</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081994#M122124</link>
      <description>&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;I am a bit lost. I pulled off all of the INTEL Compilers, and then installed VS2015 - Community Edition - with what I thought was everything turned on. I then added the NEW BETA and tried out a program with DISLIN library from Germany.&lt;/P&gt;

&lt;P&gt;Exactly the same project runs perfectly on VS2013, but I get C++ errors on compile, cannot find scanf etc on VS2015.&amp;nbsp; Clearly I goofed but where&lt;/P&gt;

&lt;P&gt;Every program that does not have DISLIN runs perfectly the same on both Studios.&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 18:09:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081994#M122124</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-05-31T18:09:45Z</dc:date>
    </item>
    <item>
      <title>Rerun the VS2015 install,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081995#M122125</link>
      <description>&lt;P&gt;Rerun the VS2015 install, select a custom install and check the box for C++.&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2016 18:19:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081995#M122125</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-05-31T18:19:13Z</dc:date>
    </item>
    <item>
      <title>Rerun the VS2015 install,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081996#M122126</link>
      <description>&lt;P&gt;Rerun the VS2015 install, select a custom install and check the box for C++.&lt;/P&gt;

&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;Uninstalled IVF BETA and VS 2015. Cleaned out everything, reinstalled VS 2015 every switch selected 31 GB - made sure C++ selected then put on the last IVF 16? and still get the scanf error on compile.&lt;/P&gt;

&lt;P&gt;Another program has this error see picture &amp;nbsp;-- it get upset at a return from a FFT subroutine - when I turn on cpu_time routine&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:fortran;"&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp; Wulf.f90
&amp;nbsp;&amp;nbsp;&amp;nbsp; !
&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp; FUNCTIONS:
&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp; Wulf - Entry point of console application.
&amp;nbsp;&amp;nbsp;&amp;nbsp; !

&amp;nbsp;&amp;nbsp;&amp;nbsp; !****************************************************************************
&amp;nbsp;&amp;nbsp;&amp;nbsp; !
&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp; PROGRAM: Wulf
&amp;nbsp;&amp;nbsp;&amp;nbsp; !
&amp;nbsp;&amp;nbsp;&amp;nbsp; !&amp;nbsp; PURPOSE:&amp;nbsp; Entry point for the console application.
&amp;nbsp;&amp;nbsp;&amp;nbsp; !
&amp;nbsp;&amp;nbsp;&amp;nbsp; !****************************************************************************

&amp;nbsp;&amp;nbsp;&amp;nbsp; program Wulf
&amp;nbsp;&amp;nbsp;&amp;nbsp; use BASE
&amp;nbsp;&amp;nbsp;&amp;nbsp; use FastFourierTransform
&amp;nbsp;&amp;nbsp;&amp;nbsp; use S
&amp;nbsp;&amp;nbsp;&amp;nbsp; use Scotia

&amp;nbsp;&amp;nbsp;&amp;nbsp; implicit none
&amp;nbsp;&amp;nbsp;&amp;nbsp; integer i,ISTAT,count, dummy, NG
&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp) time
&amp;nbsp;&amp;nbsp;&amp;nbsp; complex(kind=dp), ALLOCATABLE :: X(:)
&amp;nbsp;&amp;nbsp;&amp;nbsp; REAL (KIND=dp), ALLOCATABLE :: aXYZ(:,:)



&amp;nbsp;&amp;nbsp;&amp;nbsp; call Files(1,NG)
&amp;nbsp;&amp;nbsp;&amp;nbsp; read(sRA,*)count

&amp;nbsp;&amp;nbsp;&amp;nbsp; ALLOCATE (aXYZ(count1,count),X(NFA),STAT=istat)
&amp;nbsp;&amp;nbsp;&amp;nbsp; IF (istat.NE.0) THEN
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WRITE (*, *) '*** Could not allocate some arrays in WULF'
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STOP
&amp;nbsp;&amp;nbsp;&amp;nbsp; END IF

&amp;nbsp;&amp;nbsp;&amp;nbsp; time = 0.1d0


&amp;nbsp;&amp;nbsp;&amp;nbsp; do i =1,NFA
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if(i .eq. 1) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) = (0.70154d0,0.0d0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elseif(i .eq. 2) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) =(-2.5018d0,0.0d0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elseif(i .eq. 3) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) = (-0.35385d0,0.0d0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elseif(i .eq. 4) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) = (-0.82359d0,0.0d0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elseif(i .eq. 5) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) = (-1.5771d0,0.0d0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elseif(i .eq. 6) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) = (0.50797d0,0.0d0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elseif(i .eq. 7) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) = (0.28198d0,0.0d0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elseif(i .eq. 8) then
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) = (0.03348d0, 0.0d0)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if
&amp;nbsp;&amp;nbsp;&amp;nbsp; end do

&amp;nbsp;&amp;nbsp;&amp;nbsp; call pardiso_unsym(aXYZ,count,1)
&amp;nbsp;&amp;nbsp;&amp;nbsp; call FFT(sm, SOUT, NFA, time, X)
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; end program Wulf


&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture_0.PNG"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/8875i642068A76705475F/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Capture_0.PNG" alt="Capture_0.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 00:04:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081996#M122126</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T00:04:25Z</dc:date>
    </item>
    <item>
      <title>Module FastFourierTransform</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081997#M122127</link>
      <description>&lt;PRE class="brush:fortran;"&gt;Module FastFourierTransform
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; contains
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; Subroutine FFT(File1, FileOut, N, time, X)
&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Fortran example.
&amp;nbsp;&amp;nbsp;&amp;nbsp; ! 1D complex to complex, and real to conjugate-even
&amp;nbsp;&amp;nbsp;&amp;nbsp; Use MKL_DFTI
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; implicit none
&amp;nbsp;&amp;nbsp;&amp;nbsp; integer n
&amp;nbsp;&amp;nbsp;&amp;nbsp; integer FileOut
&amp;nbsp;&amp;nbsp;&amp;nbsp; Double Complex :: X(n), XC(N)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Double precision :: Y(n), U,&amp;nbsp; SUM, DF, W, SUMW
&amp;nbsp;&amp;nbsp;&amp;nbsp; Double precision :: YStart, time, FFTRatio
&amp;nbsp;&amp;nbsp;&amp;nbsp; integer i,j, File1
&amp;nbsp;&amp;nbsp;&amp;nbsp; type(DFTI_DESCRIPTOR), POINTER :: My_Desc1_Handle, My_Desc2_Handle
&amp;nbsp;&amp;nbsp;&amp;nbsp; Integer :: Status
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; !...put input data into X(1),...,X(32); Y(1),...,Y(32)
&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Perform a complex to complex transform
&amp;nbsp;&amp;nbsp;&amp;nbsp; j = 1
&amp;nbsp;&amp;nbsp;&amp;nbsp; YStart = 0.0d0
&amp;nbsp;&amp;nbsp;&amp;nbsp; FFTRatio = time
&amp;nbsp;&amp;nbsp;&amp;nbsp; DF = 1.0d0/(time*dfloat(n))
&amp;nbsp;&amp;nbsp;&amp;nbsp; sum = 0.0d0
&amp;nbsp;&amp;nbsp;&amp;nbsp; sumw = 0.0d0
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; do i =1,N
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; y(i) = real(x(i))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(*,*)i,x(i)
&amp;nbsp;&amp;nbsp;&amp;nbsp; end do
&amp;nbsp;&amp;nbsp;&amp;nbsp; Status = DftiCreateDescriptor( My_Desc1_Handle, DFTI_DOUBLE,DFTI_COMPLEX, 1, N )
&amp;nbsp;&amp;nbsp;&amp;nbsp; Status = DftiCommitDescriptor( My_Desc1_Handle )
&amp;nbsp;&amp;nbsp;&amp;nbsp; Status = DftiComputeForward( My_Desc1_Handle, X )
&amp;nbsp;&amp;nbsp;&amp;nbsp; Status = DftiFreeDescriptor(My_Desc1_Handle)
&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; do i =1,N
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; x(i) = FFTRatio*x(i)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XC(i) = CONJG(x(i))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; U = x(i)*xc(I)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum = sum+U*df
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sumw = sumw+(y(i)*y(i))*time
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; write(FileOUT,10)i,(real(x(i))),aimag(x(i)),y(i),sum,sumw
10&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; format(i5,",",F14.8,",",F14.8,",",F14.8,",",F14.8,",",F14.8)
&amp;nbsp;&amp;nbsp;&amp;nbsp; end do
&amp;nbsp;&amp;nbsp;&amp;nbsp; ! result is given by {X(1),X(2),...,X(32)}
&amp;nbsp;&amp;nbsp;&amp;nbsp; ! Perform a real to complex conjugate-even transform
&amp;nbsp;&amp;nbsp;&amp;nbsp; Status = DftiCreateDescriptor(My_Desc2_Handle, DFTI_DOUBLE, DFTI_REAL, 1, N)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Status = DftiCommitDescriptor(My_Desc2_Handle)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Status = DftiComputeForward(My_Desc2_Handle, Y)
&amp;nbsp;&amp;nbsp;&amp;nbsp; Status = DftiFreeDescriptor(My_Desc2_Handle)
&amp;nbsp;&amp;nbsp;&amp;nbsp; ! result is given in CCS format.
&amp;nbsp;&amp;nbsp;&amp;nbsp; return
&amp;nbsp;&amp;nbsp;&amp;nbsp; end subroutine FFT
&amp;nbsp;&amp;nbsp;&amp;nbsp; END module&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 00:08:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081997#M122127</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T00:08:00Z</dc:date>
    </item>
    <item>
      <title>Routine that does not return.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081998#M122128</link>
      <description>&lt;P&gt;Routine that does not return.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 00:09:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081998#M122128</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T00:09:24Z</dc:date>
    </item>
    <item>
      <title>You've described at least two</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081999#M122129</link>
      <description>&lt;P&gt;You've described at least two different issues. One is a linking (not compile) error looking for a C library routine scanf. Please upload a ZIP of the buildlog.htm of a complete project rebuild showing these errors.&lt;/P&gt;

&lt;P&gt;The stack corruption error indicates a bug in your program. .T31_ is a compiler-generated temporary, so that complicates diagnosis a bit, but it would help if you could identify the line of code where this error occurred.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 00:38:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1081999#M122129</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-06-01T00:38:06Z</dc:date>
    </item>
    <item>
      <title>Build is VS 2015</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082000#M122130</link>
      <description>&lt;P&gt;Build is VS 2015&lt;/P&gt;

&lt;P&gt;Build(2) is VS 2013&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 14:14:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082000#M122130</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T14:14:35Z</dc:date>
    </item>
    <item>
      <title>Quote:Steve Lionel (Intel)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082001#M122131</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Steve Lionel (Intel) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;You've described at least two different issues.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Two issues -- I am a bit wary of typing a note and it disappears into your system as just occurred with the build - new forum topic I created.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 14:16:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082001#M122131</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T14:16:04Z</dc:date>
    </item>
    <item>
      <title>WULF</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082002#M122132</link>
      <description>&lt;P&gt;WULF&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 14:17:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082002#M122132</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T14:17:40Z</dc:date>
    </item>
    <item>
      <title>Steve:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082003#M122133</link>
      <description>&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;WULF is the program with the strange return.&lt;/P&gt;

&lt;P&gt;The call to FFT from the main program never returns. If you look you can see the write(*,*)'Here"&lt;/P&gt;

&lt;P&gt;in that routine. If I take out the return it halts normally.&lt;/P&gt;

&lt;P&gt;I can debug on the return and it stops and says I am here. But nothing after that in the main routine every works&lt;/P&gt;

&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 14:20:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082003#M122133</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T14:20:16Z</dc:date>
    </item>
    <item>
      <title>For your link errors - I see</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082004#M122134</link>
      <description>&lt;P&gt;For your link errors - &amp;nbsp;the errors are caused by inconsistent run-time library settings between your Fortran code and the dislin.lib library, which is apparently written in C. Change the Fortran project property Fortran &amp;gt; Libraries &amp;gt; Use Runtime Library to "Multithread DLL (/MD)" and relink.&lt;/P&gt;

&lt;P&gt;My guess is that your MKL program corrupts the stack somewhere. I will see if I can reproduce the problem.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 15:55:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082004#M122134</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-06-01T15:55:00Z</dc:date>
    </item>
    <item>
      <title>Steve:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082005#M122135</link>
      <description>&lt;P&gt;Steve:&lt;/P&gt;

&lt;P&gt;It was VS2015 - I got rid of it and reverted to VS2013 and all is fine&lt;/P&gt;

&lt;P&gt;Ah.............. cannot seem to escape the 13&lt;/P&gt;

&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 19:08:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082005#M122135</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T19:08:02Z</dc:date>
    </item>
    <item>
      <title>John, what do I enter as</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082006#M122136</link>
      <description>&lt;P&gt;John, what do I enter as input to the program?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 19:19:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082006#M122136</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-06-01T19:19:50Z</dc:date>
    </item>
    <item>
      <title>I think your problem with</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082007#M122137</link>
      <description>&lt;P&gt;I think your problem with VS2015 is a change Microsoft made in the C library for that version. It isn't a Fortran issue. &amp;nbsp;See&amp;nbsp;https://msdn.microsoft.com/en-us/library/bb531344.aspx#BK_CRT&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 19:33:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082007#M122137</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2016-06-01T19:33:12Z</dc:date>
    </item>
    <item>
      <title>The input file is at.inp</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082008#M122138</link>
      <description>&lt;P&gt;The input file is at.inp&lt;/P&gt;

&lt;P&gt;You merely type AT at the file input and it looks after it from there.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I will tell the DISLIN guy he has a problem - VS 2015 I cannot use.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 20:31:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082008#M122138</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T20:31:31Z</dc:date>
    </item>
    <item>
      <title>Just type</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082009#M122139</link>
      <description>&lt;P&gt;Just type&lt;/P&gt;

&lt;P&gt;AT&lt;/P&gt;

&lt;P&gt;at the input line and it will find the AT.inp file&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 20:36:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082009#M122139</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T20:36:55Z</dc:date>
    </item>
    <item>
      <title>Sorry for the two - thought I</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082010#M122140</link>
      <description>&lt;P&gt;Sorry for the two - thought I lost it&lt;/P&gt;

&lt;P&gt;There is a reason to hate C++&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 20:37:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082010#M122140</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T20:37:57Z</dc:date>
    </item>
    <item>
      <title>Evgueni Petrov aka espetrov</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082011#M122141</link>
      <description>&lt;P&gt;&lt;A href="https://software.intel.com/en-us/user/410407"&gt;&lt;U&gt;&lt;FONT color="#0066cc"&gt;Evgueni Petrov aka espetrov (Intel)&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;&lt;/P&gt;

&lt;DIV class="forum-post-date"&gt;Steve:&lt;/DIV&gt;

&lt;DIV class="forum-post-date"&gt;&lt;BR /&gt;
	​The comments form the other day were just loaded onto the MKL forum -- the above Intel person is also asking questions about WULF.&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Jun 2016 21:14:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082011#M122141</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-01T21:14:34Z</dc:date>
    </item>
    <item>
      <title>Hi John,</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082012#M122142</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;

&lt;P&gt;You may have run into an issue with linking to the DISLIN library from VS 2015. I used to have similar issues when I switched to VS 2015 community edition a year ago. This is not a Fortran problem. Most of the DISLIN library files were updated recently to work fine with the VS 2015 - perhaps you need to update your version of DISLIN. Otherwise, see related issues reported on the DISLIN user group forum (&lt;A href="https://groups.google.com/forum/#!forum/dislin-users"&gt;https://groups.google.com/forum/#!forum/dislin-users&lt;/A&gt; ), where you should get the support to get your program to link correctly.&lt;/P&gt;

&lt;P&gt;Andi&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jun 2016 22:14:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082012#M122142</guid>
      <dc:creator>Andreas_Z_</dc:creator>
      <dc:date>2016-06-01T22:14:49Z</dc:date>
    </item>
    <item>
      <title>Andi:</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082013#M122143</link>
      <description>&lt;P&gt;Andi:&lt;/P&gt;

&lt;P&gt;I updated the DISLIN version and reinstalled everything to try and get around the error.&lt;/P&gt;

&lt;P&gt;Simplest just to remove VS2015 and use 2013 - not enough changes in VS to warrant the change.&lt;/P&gt;

&lt;P&gt;Thanks for the web site.&lt;/P&gt;

&lt;P&gt;I also run the latest Windows 10 Fast ring build, it could be something in there and I was using the Intel Review&amp;nbsp;- life is to short to worry about this&lt;/P&gt;

&lt;P&gt;Ta&lt;/P&gt;

&lt;P&gt;John&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jun 2016 17:21:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/VS-2015/m-p/1082013#M122143</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2016-06-02T17:21:30Z</dc:date>
    </item>
  </channel>
</rss>

