<?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: Silly program takes a very long time to get compiled in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372254#M160772</link>
    <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-03-27 103249.png" style="width: 769px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/28022iFC36E77BCC2C6031/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 2022-03-27 103249.png" alt="Screenshot 2022-03-27 103249.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;18000 has an out of memory error on 64 bit debug build on a core i7.&amp;nbsp; And theoretically 18000 will take 6 hours to compile.&amp;nbsp; At 5 hours it crashed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ideas to solve that one?&amp;nbsp; I have to solve a bridge problem.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 27 Mar 2022 15:43:21 GMT</pubDate>
    <dc:creator>JNichols</dc:creator>
    <dc:date>2022-03-27T15:43:21Z</dc:date>
    <item>
      <title>Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372016#M160760</link>
      <description>&lt;P&gt;At the Fortran discourse site (&lt;A href="https://fortran-lang.discourse.group/t/computing-at-compile-time/3044/13" target="_blank"&gt;https://fortran-lang.discourse.group/t/computing-at-compile-time/3044/13&lt;/A&gt;) there is a discussion about the possibility to use compile-time computation. I wrote a small program to meet a challenge that was posted, getting a list of prime numbers at run-time. While hardly the right tool of course, for more serious purposes, it is short and it causes an amazing problem it seems for the compiler. The Intel Fortran oneAPI compiler has been running for more than 4 hours (as has the gfortran compiler).&lt;/P&gt;
&lt;P&gt;Here is the code:&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;! primesieve.f90 --
!     Is it possible t obuild a prime sieve using compile-time computation?
!
program primesieve
    implicit none

    integer, parameter :: N = 1000
    integer            :: i, j
    integer, parameter :: candidates(*) = [(i, i=2,N)]
    integer, parameter :: multiples(*)  = [(( i*j, i=2,N), j=2,N)]
    integer, parameter :: primes(*)     = pack( candidates, [(all(candidates(i) /= multiples), i = 1,size(candidates))] )

    write(*,*) primes

end program primesieve
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 13:30:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372016#M160760</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2022-03-25T13:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372027#M160761</link>
      <description>&lt;P&gt;Now that is an interesting test!&amp;nbsp; Our compiler has had issues with the speed of initializations.&amp;nbsp; I had a bug open against IFX on this general topic.&amp;nbsp; Not this example, but rather a source file with 80,000 or so lines of code with DATA statements.&amp;nbsp; Or was is simple initializations?&amp;nbsp; In either case, IFX was slower than IFORT but a substantial factor ( 3-5x or so slower).&amp;nbsp; &amp;nbsp;We improved IFX and got it 'roughly' the same as IFORT but it was non-trivial.&amp;nbsp; Sounds easy, right?&amp;nbsp; Sometimes those 'easy' code fixes worm throughout the code and end up taking weeks to get right.&amp;nbsp; With all the problems to solve in a compiler, compile time data initialization speed and efficiency just isn't the top of the priorities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I might scale this down to something that compilers in 10minutes or so and see where IFX is wrt to IFORT wrt gfortran 11.&amp;nbsp; A Friday diversion.&amp;nbsp; Thanks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ron&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 14:31:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372027#M160761</guid>
      <dc:creator>Ron_Green</dc:creator>
      <dc:date>2022-03-25T14:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372031#M160762</link>
      <description>&lt;P&gt;While the programs I work on are hardly of the complexity level of a compiler, I know the feeling ;). The reason I mention it, is not to urge you to do something about it, but to report it as one of those &lt;EM&gt;faits divers &lt;/EM&gt;that you can sometimes do little about. Being aware of the problem is at least a bit better than getting surprised.&lt;/P&gt;
&lt;P&gt;We recently found that the results of one of our programs changed subtly when we added a new feature. The changes caused a number of tests to fail because they tested a rather sensitive module. There was no direct connection with the code change, as far we could see. We suspected all manner of complicated issues, but in the end we solved it by using a double precision variable to do a summation over a handful of values. The search for the bug (if you can call it that) was systematic at first and in the wrong place. As nothing untoward revealed itself we were getting desperate ... One saliant detail: the debug version was okay, the release version showed the failing tests. I am not sure anymore how we found out what the cause was.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 14:43:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372031#M160762</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2022-03-25T14:43:31Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372112#M160765</link>
      <description>&lt;P&gt;This was a fun Friday diversion.&amp;nbsp; With N=100&lt;/P&gt;
&lt;P&gt;gfortran ~ 5secs&lt;/P&gt;
&lt;P&gt;IFX and IFORT ~48secs&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We do know we have some issues with compile-time initialization.&amp;nbsp; This is a textbook case for it.&amp;nbsp; I'll put this on our 'to do' list (feature request) for some future date.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Mar 2022 20:47:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372112#M160765</guid>
      <dc:creator>Ron_Green</dc:creator>
      <dc:date>2022-03-25T20:47:52Z</dc:date>
    </item>
    <item>
      <title>Re:Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372142#M160766</link>
      <description>&lt;P&gt;Bug ID CMPLRLLVM-36328&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 26 Mar 2022 00:22:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372142#M160766</guid>
      <dc:creator>Ron_Green</dc:creator>
      <dc:date>2022-03-26T00:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372151#M160767</link>
      <description>&lt;P&gt;Here is a modified version of Arjen_Markus's program, which the current versions of IFort and IFx compile in less than 1 second even for N = 1000, while retaining the computing-at-compile-time attribute. The modifications exploit two properties of the calculation:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;No need to consider even integers (other than 2) as candidate prime numbers&lt;/LI&gt;
&lt;LI&gt;No need to insert entries larger than N in the &lt;STRONG&gt;multiples&lt;/STRONG&gt; array.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Here is the code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;program primesieve
    implicit none

    integer, parameter :: N = 1000
    integer, parameter :: rtN = 31 ! isqrt(N)
    integer            :: i, j
    integer, parameter :: candidates(*) = [2,(i, i=3,N-1,2)]
    integer, parameter :: multiples(*)  = [(( i*j, i=j,N/j,2), j=3,rtN,2)]
    integer, parameter :: primes(*)     = pack( candidates, [(all(candidates(i) /= multiples), i = 1,size(candidates))] )

    write(*,'(10I8)') primes
    print *
    write(*,*) size(multiples),size(primes)

end program primesieve&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 04:15:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372151#M160767</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2022-03-26T04:15:59Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372195#M160769</link>
      <description>&lt;P&gt;Nice modifications,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had a look at the compile times for increasing N.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="none"&gt;N      Time(s)           sqrt(N)       Time(s)   log(time)
1000	2		31.6227766	2	0.301029996
2000	9		44.72135955	9	0.954242509
3000	31		54.77225575	31	1.491361694
4000	85		63.2455532	85	1.929418926
5000	190		70.71067812	190	2.278753601
6000	435		77.45966692	435	2.638489257
7000	740		83.66600265	740	2.86923172
8000	1030		89.4427191	1030	3.012837225
9000	1240		94.86832981	1240	3.093421685
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-03-26 132650.png" style="width: 700px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/28016i7D36BAF8CBDA6D34/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 2022-03-26 132650.png" alt="Screenshot 2022-03-26 132650.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-03-26 132712.png" style="width: 744px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/28017i40079EE46EADAA10/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 2022-03-26 132712.png" alt="Screenshot 2022-03-26 132712.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;A quick look suggested that to do N == 100000 that we are looking at centuries of time, but I will do a few more cycles to see if it bends over.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 18:28:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372195#M160769</guid>
      <dc:creator>JNichols</dc:creator>
      <dc:date>2022-03-26T18:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372219#M160771</link>
      <description>&lt;P&gt;I suspect that you will get a better fit if you curve-fit the relation&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;log(t_compile) = a + b log(N) + c loglog(N)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;at least for the smaller ranges of N. For large N, the compile time evaluation may be significantly affected by the memory caches.&lt;/P&gt;</description>
      <pubDate>Sat, 26 Mar 2022 23:02:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372219#M160771</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2022-03-26T23:02:15Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372254#M160772</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2022-03-27 103249.png" style="width: 769px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/28022iFC36E77BCC2C6031/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 2022-03-27 103249.png" alt="Screenshot 2022-03-27 103249.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;18000 has an out of memory error on 64 bit debug build on a core i7.&amp;nbsp; And theoretically 18000 will take 6 hours to compile.&amp;nbsp; At 5 hours it crashed.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ideas to solve that one?&amp;nbsp; I have to solve a bridge problem.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 27 Mar 2022 15:43:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372254#M160772</guid>
      <dc:creator>JNichols</dc:creator>
      <dc:date>2022-03-27T15:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372255#M160773</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/176766"&gt;@JNichols&lt;/a&gt;: "And theoretically 18000 will take 6 hours to compile.&amp;nbsp; At 5 hours it crashed."&lt;/P&gt;
&lt;P&gt;On another forum, a NAG software engineer reported that the NAG 7.1 compiler gave the following results for compilation times:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;N=100,000 in &lt;STRIKE&gt;8&lt;/STRIKE&gt;&amp;nbsp;14 seconds.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;N=200,000 in &lt;STRIKE&gt;32&lt;/STRIKE&gt;&amp;nbsp;58 seconds.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;P.S.: timings revised, the earlier reported timings were for a version of the program that had a bug.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 11:11:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372255#M160773</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2022-03-28T11:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372330#M160777</link>
      <description>&lt;P&gt;Odd, I stopped the compiler after it had been trying to build an N=1000 version for two days and two hours. That was not a debug build though, just a plain compile and link without specific options.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 06:23:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372330#M160777</guid>
      <dc:creator>Arjen_Markus</dc:creator>
      <dc:date>2022-03-28T06:23:04Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372432#M160784</link>
      <description>&lt;P&gt;Here is an improved version that can be built and run with Ifort, Ifx and Gfortran in a few seconds.&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;
&lt;LI-CODE lang="fortran"&gt;program primesieve
    implicit none

    integer, parameter :: rtrtN = 10, rtN = 100, N = 10000
    integer            :: i, np
    integer, parameter :: candidates1(*) = [(i, i=rtrtN+1+mod(rtrtN,2),rtN-1-mod(rtN,2),2)]
    integer, parameter :: primes0(*)  = [2,3,5,7] ! primes &amp;lt;= rtrtN, used to seed calculation
    integer, parameter :: primes1(*) = &amp;amp;
       pack( candidates1, [(all(mod(candidates1(i),primes0) /= 0), &amp;amp;
          i = 1,size(candidates1))] )  ! newly identified primes &amp;lt; rtN
    integer, parameter :: candidates2(*) = [(i,i=rtN+1+mod(rtN,2),N-1-mod(N,2),2)]
    integer, parameter :: primes01(*) = [primes0, primes1]        ! primes &amp;lt;= rtN
    integer, parameter :: primes2(*) = pack(candidates2,[(all(mod(candidates2(i),primes01) /=0), &amp;amp;
                   i = 1,size(candidates2))])

    np = size(primes2)
    write(*,'(i5,A10,i4)') size(primes01),' primes &amp;lt; ',rtN
    write(*,'(i5,A10,i7)') size(primes01)+size(primes2),' primes &amp;lt; ',N
    print *
    print *,' Last 10 primes &amp;lt; ',N,' :'
    write(*,'(10I8)') primes2(np-9:np)

end program primesieve&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The expected output:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;   25 primes &amp;lt;  100
 1229 primes &amp;lt;   10000

  Last 10 primes &amp;lt;  10000  :
    9887    9901    9907    9923    9929    9931    9941    9949    9967    9973&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A useful resource for checking such output:&amp;nbsp;&lt;A href="https://primes.utm.edu/howmany.html" target="_self"&gt;How many primes are there?&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 20:09:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372432#M160784</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2022-03-28T20:09:16Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372482#M160789</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41971"&gt;@mecej4&lt;/a&gt;&amp;nbsp; - I have 40 years of experimental data collection. I set up a new solution file in Intel, added you code and then hand timed the runs.&amp;nbsp; In the end I used Alexa to set an alarm to then follow the run.&amp;nbsp; &amp;nbsp;Here is the zip file of the solution - you can run it on any computer.&amp;nbsp; It includes the Excel file.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Running on a stock standard CORE7 with a Samsung 970 SSD, 8 GB memory and the latest Windows 11 Preview and VS 2022 and the latest Intel oneapi.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use one Fortran compiler, I have used MS through to Intel since 1988, I do not play with other compilers, and LINUX is a pain in the ear to run.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I measured most of them twice to make sure and they follow a pretty good regression, I did not have the time for your suggestion, but it will be close to a fourth order polynomial.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Al Hill identified a slow down in Windows 11, but according to MAX PC that was solved last year.&amp;nbsp; They have never published anything I have found to be incorrect that I was interested in,&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It is not a perfect machine, but it is not that slow, I did not run anything else whilst I was doing the runs.&amp;nbsp;&amp;nbsp;&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>Mon, 28 Mar 2022 17:36:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372482#M160789</guid>
      <dc:creator>JNichols</dc:creator>
      <dc:date>2022-03-28T17:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372486#M160790</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/176766"&gt;@JNichols&lt;/a&gt; "Al Hill identified a slow down in Windows 11".&amp;nbsp;&amp;nbsp;&amp;nbsp; Highly unlikely this is related, John.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Doc (not an Intel employee or contractor)&lt;BR /&gt;[Maybe Windows 12 will be better]&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 18:08:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372486#M160790</guid>
      <dc:creator>AlHill</dc:creator>
      <dc:date>2022-03-28T18:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372491#M160791</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/21"&gt;@AlHill&lt;/a&gt;&amp;nbsp;, I know, but I just wanted you to know I had thought about it.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is no real Windows 11 - IMHO , it is just an extension of 10, all the internal product numbers code as 10.&amp;nbsp; They are doing some interesting things as well on the front end.&amp;nbsp; I had to play with UBUNTU for a week and it gave me headaches, you need a lifetime to understand that little OS.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41971"&gt;@mecej4&lt;/a&gt;&amp;nbsp; can you load you latest program as a.f90 file, I cannot get opera to copy your code, it just does not copy.&amp;nbsp; I have rebooted and sworn at the Titans and it does not work.&amp;nbsp; I am refusing the Minoan method to solve a problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 18:27:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372491#M160791</guid>
      <dc:creator>JNichols</dc:creator>
      <dc:date>2022-03-28T18:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372505#M160792</link>
      <description>&lt;P&gt;Ron:&lt;/P&gt;
&lt;P&gt;I absolutely cannot copy anything from this website at the moment.&amp;nbsp; I select the text and when I try to copy the selected text looses the highlight.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any ideas&lt;/P&gt;
&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 19:55:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372505#M160792</guid>
      <dc:creator>JNichols</dc:creator>
      <dc:date>2022-03-28T19:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372508#M160793</link>
      <description>&lt;P&gt;&lt;EM&gt;25 prime numbers&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;from 1 to&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;100&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;This is the statement that really gets up my wick.&amp;nbsp; There are 25 primes from 1 to 97.&amp;nbsp; 100 is just a decimal number in the stretch to the next&amp;nbsp; prime at 101, it is not even in the middle of the stretch. The famous equation from 19th century predicts the mid point of the non-prime stretches, but the other function of interest,&amp;nbsp; is the one that predicts the 97, 101 as an upper limit.&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;It is not that great a predictor.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Mar 2022 20:01:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372508#M160793</guid>
      <dc:creator>JNichols</dc:creator>
      <dc:date>2022-03-28T20:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372753#M160809</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/176766"&gt;@JNichols&lt;/a&gt; wrote, "I select the text and when I try to copy the selected text looses the highlight.&amp;nbsp;&amp;nbsp;Any ideas"&lt;/P&gt;
&lt;P&gt;Yes. Click-drag to select text with the mouse, but don't let up on the mouse yet. With the other hand (usually left hand) press down the control key, and have another finger ready to press the C key. Let go of the mouse and press the C, in quick succession. Then, let up on the control key. The text will have been copied to the clipboard.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 17:00:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372753#M160809</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2022-03-29T17:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372757#M160810</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41971"&gt;@mecej4&lt;/a&gt;&amp;nbsp;, thanks, you are a useful gold mine, much like D. Callum in the book Winter Holiday.&amp;nbsp; If you have not read it and you have a young grandchild 8 to 12 get it for them it will teach them scientific method without pain.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 17:26:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372757#M160810</guid>
      <dc:creator>JNichols</dc:creator>
      <dc:date>2022-03-29T17:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Silly program takes a very long time to get compiled</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372788#M160812</link>
      <description>&lt;P&gt;And God works in mysterious ways, I am using an Intel Fortran program as a data collection device.&amp;nbsp; I take this computer into the field to collect data with a friend and the blasted battery goes flat on the friend.&amp;nbsp; Data collection can be quite interesting in terms of problems.&amp;nbsp; So I buy a new battery, fit it to the machine, which has the smallest screws I have seen outside a watch.&amp;nbsp; Then boot manager starts throwing errors, unknown equipment,&amp;nbsp; it is a blasted battery why would it even know the difference.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Finally after using tricks to keep it working BSOD this morning.&amp;nbsp; Wipe hard drive, install windows, it installs Windows 11 Home with a pro key.&amp;nbsp; &amp;nbsp;Renter a pro key into activation point, says good to go. Restart and there is home still.&amp;nbsp; You have to go the Microsoft store and tell it to upgrade.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As I am installing VS 2022, there is a note to say 2022 Preview is out for the next edition, next screen tells me support for VS 2017 has stopped.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Lastly why do they not put the 32 bit version of MKL in the main base install.&amp;nbsp; It would save 20 wasted minutes and it is only about 32 MB.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why does Opera use Oslo as the base city for weather on a clean install?&amp;nbsp; That is a weird choice.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Back to install.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then again it only takes a few hours and not a day as for Windows 7.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Mar 2022 20:34:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Silly-program-takes-a-very-long-time-to-get-compiled/m-p/1372788#M160812</guid>
      <dc:creator>JNichols</dc:creator>
      <dc:date>2022-03-29T20:34:23Z</dc:date>
    </item>
  </channel>
</rss>

