How do you normally set up your compiler's optimization settings? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T06:40:27Z http://stackoverflow.com/feeds/question/53811 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings 4 How do you normally set up your compiler's optimization settings? Ferruccio 2008-09-10T11:41:42Z 2008-10-26T14:49:13Z <p>Do you normally set your compiler to optimize for maximum speed or smallest code size? or do you manually configure individual optimization settings? Why?</p> <p>I notice most of the time people tend to just leave compiler optimization settings to their default state, which with visual c++ means max speed. I've always felt that the default settings had more to do with looking good on benchmarks, which tend to be small programs that will fit entirely within the L2 cache than what's best for overall performance, so I normally set it optimize for smallest size.</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/53819#53819 0 Answer by Konrad Rudolph for How do you normally set up your compiler's optimization settings? Konrad Rudolph 2008-09-10T11:47:40Z 2008-09-10T11:47:40Z <p>We always use maximize for optimal speed but then, all the code I write in C++ is somehow related to bioinformatics algorithms and speed is crucial while the code size is relatively small.</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/53823#53823 0 Answer by aku for How do you normally set up your compiler's optimization settings? aku 2008-09-10T11:49:07Z 2008-09-10T11:49:07Z <p>Memory is cheap now days :) So it can be meaningful to set compiler settings to max speed unless you work with embedded systems. Of course answer depends on concrete situation.</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/53825#53825 1 Answer by Mike Arthur for How do you normally set up your compiler's optimization settings? Mike Arthur 2008-09-10T11:49:52Z 2008-09-10T11:49:52Z <p>For me it depends on what platform I'm using. For some embedded platforms or when I worked on the Cell processor you have restraints such as a very small cache or minimal space provided for code.</p> <p>I use GCC and tend to leave it on "-O2" which is the "safest" level of optimisation and favours speed over a minimal size.</p> <p>I'd say it probably doesn't make a huge difference unless you are developing for a very high-performance application in which case you should probably be benchmarking the various options for your particular use-case.</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/53826#53826 4 Answer by Claes Mogren for How do you normally set up your compiler's optimization settings? Claes Mogren 2008-09-10T11:52:50Z 2008-09-15T06:45:29Z <p>As a Gentoo user I have tried quite a few optimizations on the complete OS and there have been endless discussions on the <a href="http://forums.gentoo.org/" rel="nofollow">Gentoo forums</a> about it. Some good flags for GCC can be found in the <a href="http://gentoo-wiki.com/Safe_Cflags" rel="nofollow">wiki</a>.</p> <p>In short, optimizing for size worked best on an old Pentium3 laptop with limited ram, but on my main desktop machine with a Core2Duo, -O2 gave better results over all.</p> <p>There's also a <a href="http://www.pixelbeat.org/scripts/gcccpuopt" rel="nofollow">small script</a> if you are interested in the x86 (32 bit) specific flags that are the most optimized.</p> <p>If you use gcc and really want to optimize a specific application, try <a href="http://www.coyotegulch.com/products/acovea/" rel="nofollow">ACOVEA</a>. It runs a set of benchmarks, then recompile them with all possible combinations of compile flags. There's an example using Huffman encoding on the site (lower is better):</p> <pre><code>A relative graph of fitnesses: Acovea Best-of-the-Best: ************************************** (2.55366) Acovea Common Options: ******************************************* (2.86788) -O1: ********************************************** (3.0752) -O2: *********************************************** (3.12343) -O3: *********************************************** (3.1277) -O3 -ffast-math: ************************************************** (3.31539) -Os: ************************************************* (3.30573) </code></pre> <p>(Note that it found -Os to be the slowest on this Opteron system.)</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/53833#53833 1 Answer by Leon Timmermans for How do you normally set up your compiler's optimization settings? Leon Timmermans 2008-09-10T11:58:31Z 2008-09-10T11:58:31Z <p>I prefer to use minimal size. Memory may be cheap, <b>cache is not</b>.</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/53871#53871 0 Answer by On Freund for How do you normally set up your compiler's optimization settings? On Freund 2008-09-10T12:25:30Z 2008-09-10T12:25:30Z <p>Microsoft ships all its C/C++ software optimized for size. After benchmarking they discovered that it actually gives better speed (due to cache locality).</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/54181#54181 1 Answer by Cd-MaN for How do you normally set up your compiler's optimization settings? Cd-MaN 2008-09-10T14:23:58Z 2008-09-10T14:23:58Z <p>Besides the fact that cache locality matters (as On Freund said), one other things Microsoft does is to profile their application and find out which code paths are executed during the first few seconds of startup. After that they feed this data back to the compiler and ask it to put the parts which are executed during startup close together. This results in faster startup time.</p> <p>I do believe that this technique is available publicly in VS, but I'm not 100% sure.</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/57005#57005 1 Answer by botismarius for How do you normally set up your compiler's optimization settings? botismarius 2008-09-11T16:09:16Z 2008-09-11T16:09:16Z <p>There are many types of optimization, maximum speed versus small code is just one. In this case, I'd choose maximum speed, as the executable will be just a bit bigger. On the other hand, you could optimize your application for a specific type of processor. In some cases this is a good idea (if you intend to run the program only on your station), but in this case it is probable that the program will not work on other architecture (eg: you compile your program to work on a Pentium 4 machine -> it will probably not work on a Pentium 3).</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/61945#61945 1 Answer by ima for How do you normally set up your compiler's optimization settings? ima 2008-09-15T06:49:23Z 2008-09-15T06:49:23Z <p>Build both, profile, choose which works better on specific project and hardware.</p> <p>For performance critical code, that is - otherwise choose any and don't bother.</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/63195#63195 0 Answer by Mark D for How do you normally set up your compiler's optimization settings? Mark D 2008-09-15T14:06:43Z 2008-09-15T14:06:43Z <p>This depends on the application of your program. When programming an application to control a fast industrial process, optimize for speed would make sense. When programming an application that only needs to react to a user's input, optimization for size could make sense. That is, if you are concerned about the size of your executable.</p> http://stackoverflow.com/questions/53811/how-do-you-normally-set-up-your-compilers-optimization-settings/238097#238097 0 Answer by Head Geek for How do you normally set up your compiler's optimization settings? Head Geek 2008-10-26T14:49:13Z 2008-10-26T14:49:13Z <p>Tweaking compiler settings like that is an optimization. On the principle that "premature optimization is the root of all evil," I don't bother with it until the program is near its final shipping state and I've discovered that it's not fast enough -- i.e. almost never.</p>