<?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: Sample Code in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1461051#M165352</link>
    <description>&lt;P&gt;I hope Intel appreciates the free work they're getting.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Mar 2023 14:26:48 GMT</pubDate>
    <dc:creator>Steve_Lionel</dc:creator>
    <dc:date>2023-03-02T14:26:48Z</dc:date>
    <item>
      <title>Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1458735#M165254</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I was looking to get a template for looking at the error in the WIN program.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;First problem - where are the Intel Fortran Sample files now stored?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I found a zip file from Steve and this sample gives the following error?&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;returnLength = C_SIZEOF(buffer)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The offending code, error occurs on all IFORT and IFX versions.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Severity Code Description Project File Line Suppression State&lt;BR /&gt;Error error #8949: A data entity with the ALLOCATABLE or POINTER attribute is not interoperable. [BUFFER] C:\Users\macne\Downloads\ipsxe2019-samples-win-20190327\compiler_f\Win32\ProcessorInfo\src\ProcessorInfo.f90 81 &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;! ==============================================================
!
! SAMPLE SOURCE CODE - SUBJECT TO THE TERMS OF SAMPLE CODE LICENSE AGREEMENT,
! http://software.intel.com/en-us/articles/intel-sample-source-code-license-agreement/
!
! Copyright 2016 Intel Corporation
!
! THIS FILE IS PROVIDED "AS IS" WITH NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT
! NOT LIMITED TO ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
! PURPOSE, NON-INFRINGEMENT OF INTELLECTUAL PROPERTY RIGHTS.
!
! =============================================================

! ProcessorInfo.f90
!
! Demonstrates the Windows API GetLogicalProcessorInformation, adapted from a Microsoft Developer
! Network example program.  This program also demonstrates the following Fortran 2003/2008 features:
! - Procedure pointers (F2003)
! - C_F_PROCPOINTER (F2003)
! - C_SIZEOF (F2008)
! - POPCNT intrinsic (F2008)
! - Unlimited format repeat count (F2008)
! - ERROR STOP (F2008)
!
! February 7, 2013 - Windows XP 64-bit and Windows Server 2003 don't return information
!                    on Hyperthreading. Add code to warn about that.
!**************************************************************************** 
program ProcessorInfo
    use, intrinsic :: ISO_C_BINDING
    use kernel32

    implicit none
    
    ! Variables
    procedure(GetLogicalProcessorInformation), pointer :: glpi
    type(T_SYSTEM_LOGICAL_PROCESSOR_INFORMATION), allocatable, dimension(:) :: buffer
    integer(DWORD) :: returnLength = 0
    integer :: logicalProcessorCount = 0
    integer :: numaNodeCount = 0
    integer :: processorCoreCount = 0
    integer :: processorCacheCount(3) = [0,0,0]
    integer :: processorPackageCount = 0
    integer(DWORD) :: ret
    integer :: nlpi, lpi_element_length, i
    integer(1), pointer, dimension(:) :: dumpbuf
    
    ! MSDN says that because GetLogicalProcessorInformation is not supported on all versions
    ! of Windows, it suggests getting the address dynamically.  We'll do that here, though
    ! in reality it should not be necessary. The following statement uses only Fortran standard
    ! syntax - it would be a bit simpler to use the integer pointer extension, but this makes a 
    ! good example.
    !
    ! The steps here are:
    ! 1. Call GetModuleHandle to get a handle to the kernel32 DLL which will already be loaded in this image.
    !    Note that this is not the same as LoadLibrary, which assumes that a DLL is not already loaded.
    ! 2. Call GetProcAddress to get the address of GetLogicalProcessorInformation
    ! 3. Use TRANSFER to convert that address to a C_FUNPTR
    ! 4. Use C_F_PROCPOINTER to convert the C_FUNPTR to a Fortran procedure pointer
    
    call c_f_procpointer( &amp;amp;
        transfer( &amp;amp;
            GetProcAddress( &amp;amp;
                GetModuleHandle("kernel32"//C_NULL_CHAR), &amp;amp;
                "GetLogicalProcessorInformation"//C_NULL_CHAR &amp;amp;
                ), &amp;amp;
            C_NULL_FUNPTR &amp;amp;
            ), &amp;amp;
        glpi)
    
    if (.not. associated(glpi)) then
        print *, "GetLogicalProcessorInformation not supported"
        error stop
    end if
     
    ! We don't know in advance the size of the buffer we need. We'll pick a number, allocate it,
    ! and see if that's sufficient.  If not, we'll use the returned size information and reallocate
    ! the buffer to the required size.
    
    allocate (buffer(20))
    lpi_element_length = C_SIZEOF(buffer(1))
    returnLength = C_SIZEOF(buffer)
    print *, "Trying buffer length of ", returnLength
    ret = glpi(buffer, returnLength)
    print *, "Required buffer length is ", returnLength
    if (ret == FALSE) then ! Failed
        if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) then
            deallocate (buffer)
            allocate (buffer(returnLength/lpi_element_length))
            ret = glpi(buffer, returnLength)
            print *, "Reallocated buffer length to ", returnLength
            if (ret == FALSE) then
                print *, "GetLogicalProcessorInformation call failed with error code ", GetLastError()
                error stop
            end if
        else
            print *, "GetLogicalProcessorInformation call failed with error code ", GetLastError()
            error stop
        end if
    end if
    

    ! Now we can iterate through the elements of buffer and see what we can see
    
    do i=1, returnLength / lpi_element_length ! Number of elements in buffer
        select case (buffer(i)%Relationship)
        case(RelationNumaNode)
            ! NUMA nodes return one record of this type
            numaNodeCount = numaNodeCount + 1
        
        case(RelationProcessorCore)
            if (buffer(i)%Flags == 1) then
                processorCoreCount = processorCoreCount + 1
            else
                ! Pre Windows Vista
                processorCoreCount = processorCoreCount + popcnt(buffer(i)%processorMask)
            end if
                            
            ! A Hyperthreaded core supplies more than one logical processor
            logicalProcessorCount = logicalProcessorCount + popcnt(buffer(i)%processorMask)
            
        case(RelationCache)
            ! One cache descriptor for each cache
            if (buffer(i)%Cache%Level &amp;gt; 0 .and. buffer(i)%Cache%Level &amp;lt;= 3) then
                processorCacheCount(buffer(i)%Cache%Level) = processorCacheCount(buffer(i)%Cache%Level) + 1
            else
                print *, "Invalid processor cache level ", buffer(i)%Cache%Level
            end if
            
        case(RelationProcessorPackage)
            !Logical processors share a physical package (socket)
            processorPackageCount = processorPackageCount + 1
            
        case default
            print *, "Unrecognized relationship code ", buffer(i)%Relationship
            
        end select
    end do
    
        
    ! Display the information we collected
        
    print '(A)', "GetLogicalProcessorInformation results:"
    if (processorPackageCount == 0) then
      print '(A)', "  This operating system does not return processor package count nor", &amp;amp;
        &amp;amp; "    information about Hyperthreading"
      processorCoreCount = logicalProcessorCount
    else
      print '(A,I0)',"  Number of physical processor packages: ", processorPackageCount
    end if
    print '(A,I0)',"  Number of NUMA nodes: ", numaNodeCount
    print '(A,I0)',"  Number of processor cores: ", processorCoreCount
    print '(A,I0)',"  Number of logical processors: ", logicalProcessorCount
    print '(A,*(I0,:,"/"))',"  Number of processor L1/L2/L3 caches: ",processorCacheCount

    end program ProcessorInfo&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 18:09:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1458735#M165254</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2023-02-23T18:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459178#M165274</link>
      <description>&lt;P&gt;Devorah says to check the &lt;A href="https://community.intel.com/t5/Intel-Fortran-Compiler/Intel-Fortran-Compiler-Information-and-Frequently-Asked/m-p/1329533#M158339" target="_blank" rel="noopener"&gt;FAQ&lt;/A&gt; for the link to the samples for Windows.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 20:40:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459178#M165274</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-02-24T20:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459188#M165276</link>
      <description>&lt;P&gt;Do keep in mind that these samples have not been updated since 2019, and probably not since 2016. But, they are still useful.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 20:56:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459188#M165276</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2023-02-24T20:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459250#M165278</link>
      <description>&lt;P&gt;I agree they are really useful,&amp;nbsp; I have some free time whilst I work on the Smithsonian stuff, their download speed is 2g standard, so I was happily just reading the IFORT manual and when I get to a bit of code, I stick it into a blank console and try it.&amp;nbsp; If it throws an error I report it, why not it is easy to do and someone may as well fix it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found some WIN Fortran code, I need some Windows Fortan code as a holder program, I grabbed one from the samples, but it will not compile and I CANNOT FIND ANY REFERENCE TO ERROR CODE 8949 in the PDF manuals or online, and the text is so short on the MSVS it does not make sense to me.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;A data entity with the ALLOCATABLE or POINTER attribute is not interoperable. [BUFFER]. So does this mean I cannot use the statement?&amp;nbsp; It appears to mean that buffer is not transferable to C.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;returnLength = C_SIZEOF(buffer(1))&amp;nbsp; but if I point to buffer(1) it works, just tried it and then the program calculates how much I need.&lt;/P&gt;
&lt;P&gt;So why will c_sizeof work with one element but not the entire array?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2023-02-24 174115.png" style="width: 522px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/38379i023D49CB39A0A710/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Screenshot 2023-02-24 174115.png" alt="Screenshot 2023-02-24 174115.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks the samples pointed to in the FAQ are the same ones that someone loaded into the Forum a few years ago as a zip file.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It appears the ProcessorInfo sample needs to be fixed at line 81 and change buffer to buffer(1)&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 23:46:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459250#M165278</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2023-02-24T23:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459253#M165279</link>
      <description>&lt;P&gt;&lt;FONT color="#0077aa"&gt;of course making the 20 a variable then allows line 3 to be a simple multiplication&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;allocate (buffer(20))
    lpi_element_length = C_SIZEOF(buffer(1))
    returnLength = C_SIZEOF(buffer)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Feb 2023 23:48:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459253#M165279</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2023-02-24T23:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459300#M165282</link>
      <description>&lt;P&gt;&lt;SPAN&gt;returnLength &lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;= size(buffer)*&lt;SPAN&gt;lpi_element_length&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="token operator"&gt;&lt;SPAN&gt;There error is because a few releases back the standards checking improved. The c_sizeof on the allocatable array is not compliant. A single element is so long as the type is bind(c). If the array was not allocatable it would be ok.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Feb 2023 07:23:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459300#M165282</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2023-02-25T07:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459369#M165287</link>
      <description>&lt;P&gt;this points to the need to keep the Samples and the manual up to date, the only way to do that is testing.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it is interesting, you learn a lot looking at other code.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/44501"&gt;@Barbara_P_Intel&lt;/a&gt;&amp;nbsp; - how do we submit changes to the samples?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Feb 2023 16:04:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459369#M165287</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2023-02-25T16:04:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459939#M165309</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/89041"&gt;@JohnNichols&lt;/a&gt;, good question on changes! As Steve said these samples are old. Steve and others developed them. They should be checked, updated as needed and moved to the oneAPI sample github. The samples update process is not as defined as for the documentation.&lt;/P&gt;
&lt;P&gt;If you want just add them to this thread, but I think when the samples get tested against the current compilers the issues will come to light. Sounds like a task for an intern.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 23:21:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459939#M165309</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-02-27T23:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459992#M165311</link>
      <description>&lt;P&gt;"Sounds like a task for an intern."&lt;/P&gt;
&lt;P&gt;Or, heaven forbid, PV (Product Validation). I spent a LOT of time building batch scripts for the samples so that PV could run them as part of its regular testing. I guess that got dropped.&lt;/P&gt;
&lt;P&gt;If one wanted to submit samples to the oneAPI github, how would one go about&amp;nbsp;doing that?&lt;/P&gt;</description>
      <pubDate>Tue, 28 Feb 2023 01:39:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1459992#M165311</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2023-02-28T01:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1460817#M165343</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/5442"&gt;@Steve_Lionel&lt;/a&gt;, why don't you post samples here. I can gather them and add them to the PSXE samples we need to get migrated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 22:26:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1460817#M165343</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-03-01T22:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1460818#M165344</link>
      <description>&lt;P&gt;I was thinking more of fixing up the existing samples, but, sure. The one I did recently with opening a URL could be used, though there isn't currently an Intel module for SHLWAPI.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 22:27:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1460818#M165344</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2023-03-01T22:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1460822#M165345</link>
      <description>&lt;P&gt;Fixing the existing? Love that! Post here when you've got an update.&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2023 22:33:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1460822#M165345</guid>
      <dc:creator>Barbara_P_Intel</dc:creator>
      <dc:date>2023-03-01T22:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1460902#M165350</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JohnNichols_0-1677730149119.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/38555i405D8C773D1999D5/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="JohnNichols_0-1677730149119.png" alt="JohnNichols_0-1677730149119.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I stumbled across this picture today, it made me chuckle and think of this earnest web forum.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are always samples in life.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 04:13:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1460902#M165350</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2023-03-02T04:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1461051#M165352</link>
      <description>&lt;P&gt;I hope Intel appreciates the free work they're getting.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 14:26:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1461051#M165352</guid>
      <dc:creator>Steve_Lionel</dc:creator>
      <dc:date>2023-03-02T14:26:48Z</dc:date>
    </item>
    <item>
      <title>Re: Sample Code</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1461057#M165353</link>
      <description>&lt;P&gt;Actually I got a nice note from Karen at Intel thanking me for the suggestions, so it seems a fair trade.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is also a good way to practice, I am not at the Fortran level of some of you lot.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No one really values free work, but I value the free compiler and the friendships on this forum, otherwise you are like I was in the 80s learning LISP on my own.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was thinking about a short story about the picture,&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Me:&amp;nbsp; I reckon they have about a 2 hour head start it is not steaming, but it is warm.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim:&amp;nbsp; hang on I have a mercury thermometer in my saddle bag&lt;/P&gt;
&lt;P&gt;mecej4, I have a chart of horse output temperature against ambient temperature with time, we can put a finer tolerance on their lead.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim:&amp;nbsp; Has anyone seen Steve,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Me, Steve is fine, Killer, the black stallion, will stop running sooner or later and bring him back, or wait at the next waterhole.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Jim: Your small daughter rides Killer, what happened to Steve,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;me: Forgot to tell him Killer does not like spurs, Rebecca never uses spurs.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fortran in the 1860's.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry, Steve I could not leave you out of the story.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2023 14:50:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Sample-Code/m-p/1461057#M165353</guid>
      <dc:creator>JohnNichols</dc:creator>
      <dc:date>2023-03-02T14:50:45Z</dc:date>
    </item>
  </channel>
</rss>

