<?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 Executable size in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972064#M97315</link>
    <description>&lt;P&gt;Our rather large executable just went from 22MB to 39MB (several developers have added to the code but mostly bug fixes).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What should I look for to see what caused the change?&lt;/P&gt;
&lt;P&gt;IVF 13.&amp;nbsp; Latest update&lt;/P&gt;</description>
    <pubDate>Thu, 14 Mar 2013 11:21:10 GMT</pubDate>
    <dc:creator>lklawrie</dc:creator>
    <dc:date>2013-03-14T11:21:10Z</dc:date>
    <item>
      <title>Executable size</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972064#M97315</link>
      <description>&lt;P&gt;Our rather large executable just went from 22MB to 39MB (several developers have added to the code but mostly bug fixes).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What should I look for to see what caused the change?&lt;/P&gt;
&lt;P&gt;IVF 13.&amp;nbsp; Latest update&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2013 11:21:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972064#M97315</guid>
      <dc:creator>lklawrie</dc:creator>
      <dc:date>2013-03-14T11:21:10Z</dc:date>
    </item>
    <item>
      <title>You can reduce the code size</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972065#M97316</link>
      <description>&lt;P&gt;You can reduce the code size by reducing the number of processor designs. Look at /Qx{code}, /Qax{code}, /arch:{code} and /QxHost&lt;/P&gt;
&lt;P&gt;Also, Interprocedural Optimizationqs (IPO) are enabled by default. This performs more inlining of code (increases code size to reduce execution time). Use /Qip to control the degree of or disable IPO.&lt;/P&gt;
&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2013 12:23:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972065#M97316</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2013-03-14T12:23:47Z</dc:date>
    </item>
    <item>
      <title>New compiler releases</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972066#M97317</link>
      <description>&lt;P&gt;New compiler releases continually tinker with thresholds for in-lining, so Jim's suggestions are good.&lt;/P&gt;
&lt;P&gt;You might also try dumpbin /dependents to see if you changed any libraries from .dll to static link.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2013 14:40:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972066#M97317</guid>
      <dc:creator>TimP</dc:creator>
      <dc:date>2013-03-14T14:40:26Z</dc:date>
    </item>
    <item>
      <title>I'm talking about no change</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972067#M97318</link>
      <description>&lt;P&gt;I'm talking about no change in compiler settings from one to the next.&amp;nbsp; Same compiler.&amp;nbsp; I don't necessarily want to reduce code size.&amp;nbsp; I want to know why it suddenly changed -- is there something in the code that would cause that?&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2013 12:17:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972067#M97318</guid>
      <dc:creator>lklawrie</dc:creator>
      <dc:date>2013-03-15T12:17:20Z</dc:date>
    </item>
    <item>
      <title>That ratio of size change is</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972068#M97319</link>
      <description>&lt;P&gt;That ratio of size change is what I from release (with no traceback info) &amp;nbsp;to full debug configuration.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2013 14:25:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972068#M97319</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2013-03-15T14:25:05Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt; I want to know why it</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972069#M97320</link>
      <description>&lt;P&gt;&amp;gt;&amp;gt; I want to know why it suddenly changed -- is there something in the code that would cause that.&lt;/P&gt;
&lt;P&gt;As stated earlier:&lt;/P&gt;
&lt;P&gt;Newer compilers support newer processor features. Examples of which are: SSE, SSE2, SSE3, SSSE3, SSE4.1, SSE4.2, AVX, AVX2 (others?). When the compiler is instructed to compile for all supported processors, the compiler may elect to generate multiple code paths, where the choice of code path is made at run time (i.e. code can run fast on all platforms).&amp;nbsp;The newer compilers will generally generate more code paths&amp;nbsp;than prior compilers. You as a programmer, can elect to&amp;nbsp;generate all&amp;nbsp;code paths, some code paths, fewer code paths or one code path.&amp;nbsp;The path(s) of which are under your control.&lt;/P&gt;
&lt;P&gt;Newer &amp;nbsp;compilers will also perform more aggressive inlining of code. Subroutine FOO may have been "CALL"'d by way of formal CALL instruction in earlier version for each CALL statement, but in newer compiler the body of FOO may have been inserted in place of the CALL statement (thus increasing code size while reducing execution time). You as the programmer can control the degree of inlining with /Qip... as well as with !DEC$ compiler directives.&lt;/P&gt;
&lt;P&gt;It makes little sense for each improvement in compiler to default to NOT using those improvements.&lt;/P&gt;
&lt;P&gt;Jim Dempsey&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2013 14:43:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972069#M97320</guid>
      <dc:creator>jimdempseyatthecove</dc:creator>
      <dc:date>2013-03-15T14:43:00Z</dc:date>
    </item>
    <item>
      <title>@Jimd...    The OP did say he</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972070#M97321</link>
      <description>&lt;P&gt;@Jimd... &amp;nbsp; &amp;nbsp;The OP did say he has not changed compliler&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2013 15:09:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972070#M97321</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2013-03-15T15:09:30Z</dc:date>
    </item>
    <item>
      <title>Same compiler.  Same settings</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972071#M97322</link>
      <description>&lt;P&gt;Same compiler.&amp;nbsp; Same settings.&amp;nbsp; Increase in size. No increase in debug info that I can remember.&amp;nbsp; Same traceback setting.&lt;/P&gt;
&lt;P&gt;I guess I will go through one by one with the changes in source.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2013 15:10:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972071#M97322</guid>
      <dc:creator>lklawrie</dc:creator>
      <dc:date>2013-03-15T15:10:43Z</dc:date>
    </item>
    <item>
      <title>Answered my own question. </title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972072#M97323</link>
      <description>&lt;P&gt;Answered my own question.&amp;nbsp; Was not any of the suggestions -- rather a static addition of array sizes.&amp;nbsp; (rather than allocatable).&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2013 19:50:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Executable-size/m-p/972072#M97323</guid>
      <dc:creator>lklawrie</dc:creator>
      <dc:date>2013-03-15T19:50:58Z</dc:date>
    </item>
  </channel>
</rss>

