vote up 17 vote down star
6

How do you know when you should worry about optimising code? Are there any rules of thumb for this?

flag

22 Answers

vote up 31 vote down check

Don't try and predict when to optimise.

Always implement a good design for flexibility and maintenance. Only afterwards should you start optimizing if you have performance issues. You will never predict correctly the code that will have issues. I have seem many programmers waste good hours creating very clever algorithms only to find that the real performance issues were somewhere else entirely.

link|flag
I agree with this answer. Knuth (?) said that premature optimmization is the root of all evil. However, that doesn't mean you can blindly choose O(n squared) algorithms. You can make some performance choices initially. – David G Oct 7 '08 at 12:34
A lot of questions on Stack Overflow lead me to believe that a lot of premature optimization is going on. It bothers me. – FogleBird Jun 29 at 14:04
@David G - actually, C A R Hoare said that. en.wikipedia.org/wiki/C._A._R._Hoare – ldigas Jun 29 at 14:15
@Phil - As i sit in front of Visual Studio 2008, which is bigger and slower than VS 2005, which was bigger and slower than VS 2003, which was way bigger and slower than VS6, I find myself increasingly frustrated that so many modern programmers consider performance requirements as secondary to functional requirements. Bigger, fatter, slower seems to be the order of the day for so many mainstream applications. I blame this on failing to optimise to meet performance requirements at design stage. Why wait until you've got the code, Knuth certainly didn't. – smacl Jun 29 at 15:44
@ldigas: Knuth said that, not Hoare! Read the Wikipedia article carefully, or see shreevatsa.wordpress.com/2008/05/… – ShreevatsaR Nov 23 at 13:52
vote up 27 vote down

A very quick, off-the-cuff answer:

  • Optimise the architecture from the start
  • Optimise the design if you think it's likely to be a bottleneck
  • Optimise the implementation when you've proved it's a bottleneck

Other points:

  • Make sure you have a good idea of what you're trying to optimise for (and what's acceptable)
  • Don't optimise before measuring - you won't know whether it's worked or not
  • Measure as soon and as often as possible, to get early warning of possible difficulties
link|flag
If you look at your first three points in order, carrying out each in turn means you are less likely to have to expend as much resource on the next. The implication of this is that you are advocating early optimisation, prior to coding, which would also be my stance on the issue. The 'dont optimise before measuring' is a bit crafty, as many will assume the model you are measuring against is executing code and the measuring tool is a profiler, whereas the the model could be an abstract alogorithm design or network capacity and usage design and the tool pen and paper. I'm only saying'... ;) – smacl Jun 29 at 14:09
@Skeet: Perfect. The three top bullet points say it exactly right. @Smacl: That's funny...I was just thinking the exact same thing when I read your answer and was thinking about this one. Thinking a bit before you start is likely to pay divedends in the long run. – Beska Jun 29 at 14:18
vote up 17 vote down

I think someone clever said something to this effect....

Make it WORK
Make it RIGHT
Make it FAST      <-- Optimise here

link|flag
Actually just skip the 'make it work' part, do it right the first time! :) – leppie Oct 7 '08 at 11:43
Your proposal leaves some room for improvement: Make it right the first time :P – Gene Oct 7 '08 at 11:43
That someone clever obviously didn't design racing cars ;) Sometimes peformance is a primary requirement. – smacl Oct 7 '08 at 12:02
@smacl in your case then performance would fall under "make it work" or "make it right" since those deal with requirement aspects. – FryHard Oct 7 '08 at 12:08
smacl sounds like a Tony Stewart fan. =) – StingyJack Oct 7 '08 at 12:36
show 3 more comments
vote up 5 vote down

To quote Donald Knuth:

"We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil."

In most cases, I would say get the code working exactly how you want it to function, then use that as a sanity check against your optimisations.

link|flag
Actaully, that was Knuth quoting Tony Hoare, – brian d foy Oct 7 '08 at 11:54
Thanks. You learn something new every day. See more info here: shreevatsa.wordpress.com/2008/05/… – jeremy Oct 7 '08 at 12:05
1  
And there is my dumb mistake for the day too. That blog attributes it to Knuth. – jeremy Oct 7 '08 at 12:13
vote up 4 vote down

I find it amusing that so many people jump straight to speed of execution when the term 'optimisation' is in a question. The original question did not specify what required optimising only when to start optimising. The answer is simple:

Optimise when, and only when, a parameter is outside of its specified range.

The parameters and their acceptable values should be defined in the specification, e.g.:

  • There must be visual feedback to user within 10ms of user input
  • The application must fit into 4K of ROM
  • The display refresh rate must be fixed at 30Hz
  • There must not be any pause/loading screen when loading game data
  • Application data must fit onto a CD ROM

and so on. It may not be possible to meet all the requirements.

Skizz

link|flag
vote up 2 vote down

Optimization matters only when it matters. When it matters, it matters a lot, but until you know that it matters, don't waste a lot of time doing it. Even if you know it matters, you need to know where it matters. Without performance data, you won't know what to optimize, and you'll probably optimize the wrong thing.

http://www.flounder.com/optimization.htm

link|flag
vote up 1 vote down

As soon as you've measured it and found a bottleneck. If your code is performing fine, then don't bother optimizing. That's time that could be spent writing new code or debugging something that doesn't work.

link|flag
vote up 1 vote down

As soon as you open up the editor/IDE and select to open a new file/project/solution.

In fact, before then. Although possibly just after thinking about how to make things extendible and re-using old tools.

link|flag
vote up 1 vote down

Optimize your algorithms and leave the rest for later profiling if you still need it. For example, I worked with a guy who'd use "select * from table" and then filter the results in code. No amount of micro-optimization elsewhere would have fixed this fundamentally damaged design.

Honestly, there have been maybe 3 or 4 times in my entire career where low-level optimization was necessary. In every other case, my time was much better spent making sure my approach was sane and efficient.

link|flag
vote up 1 vote down

It depends very much on your performance requirements, both present and going forward into the future. If you design your application well, by selecting efficient algorithms and data structures before you start coding, you are much less likely to require optimization later on.

My experience has been that the cost of doing almost anything at requirements and design stages is much less than at coding and testing stages. If it does not perform at testing stage, fixing through optimization may be necessary and may provide a solution. Personally, I think of this as a design shortcoming should should have been predicted prior to testing.

So my answer; If you need the performance, start optimizing before you start coding.

link|flag
This answer has gotten some flack because it seems to go against what people are saying in general: "optimize only when you know there's a problem." I agree with that sentiment...but I think this is still a valuable answer. With experience, you can realize that some paths are going to lead to problems. If performance of a key element is a key issue, it makes sense at the archetecture stage, to do some thinking about how to design your code so that you don't paint yourself into a corner. Fine tuning will be later, of course, but you want to be able to do it. – Beska Jun 29 at 14:15
@Beska, thanks for the feedback. The issue that I have with "optimise only when you know there's a problem" suggests to me you have already carried out a lot of coding that you may have to dump because it doesn't meet performance requirements. It's a bit like trying to get somewhere, driving down a road that seems to lead in the right direction, and only taking the map out when you're lost, then going cross country to try and get back on track. If performance is a requirement, it must be designed for much like a functional requirement. – smacl Jun 29 at 14:35
vote up 0 vote down

You should always be looking for ways to improve your code. Sometimes when I finish writing a line I realize that it could be written more efficiently and start over.

Always keep your mind open when looking at your code for ways to improve it.

link|flag
vote up 0 vote down

After you the brute force solution passes butter (ie passes the unit tests / or simply implements the specced functionality).

Optimization is easiest when the code is new and fresh in your mind, so do it then.

link|flag
vote up 0 vote down

Code Complete has a chapter on optimization. Optimization often throws "good design" out the door. For example, in extreme cases it is faster to have everything in the same function (depending on your compiler) because it doesn't have to load the stack and move to that function. In most applications today, the database interaction is the pain point.

link|flag
vote up 0 vote down

As you are writing code it is important to be aware of the cost implications of each action that you write, i.e. the cost in terms of CPU cycles, database access, File IO etc. I am frequently amazed at the amount of code that is in production that is written by someone who has no concept of these concepts. Also watch third party libraries as they can hide all manner of inefficiencies.

As you test during development fix anything that is noticable slow.

During system testing anything that is too slow needs to be fixed. The best optimisation is usually to choose a better way of doing the same thing rather than saving cpu cycles.

link|flag
vote up 0 vote down

You should start optimizing your code when your application is too slow. If you lose days on small optimisation that does not mathers, it's not really productive. Often, you will need to change only a function or a classes in your code to gain several seconds of load. But optimisation of some miliseconds is not that helpful.

But it always depends on the project. If you do an application that needs to be as fast as possible, you will want to start optimizing in the beggining. If you work on a project like an ERP, the optimisation will be less present because there's not a big difference between a .5 second load and a 1 second load.

link|flag
vote up 0 vote down

Yoda says "Do, or not do. There is no optimize". ;)

link|flag
vote up 0 vote down

I would say that optimizations are only required if you have performance issues that cannot be corrected by hardware/platform upgrades within a reasonable cost.

If better performance is still required, a performance analysis in an enviroment resembling the deployed enviroment can give answers to where the bottleneck might be.

When optimizing I always try to avoid making the code more difficult to maintain. Adding complexity can easily become a maintanance nightmare.

Simple framework optimizations like using string.IsNullOrEmpty(string) in stead of (myString != null && myString.Length > 0) are simply best-practice coding conventions that is part of everyday work.

link|flag
vote up 0 vote down

consider this: the time you spend with optimizations is wasted on two levels:

  1. while you optimize, you don't add features (IOW make progress) and at the same time you make the code less maintainable, because most of the time optimization means trading program simplicity/clarity for runtime speed. meanwhile your competition is busy making progress.
  2. with every second you spend on optimizing your program the hardware is getting cheaper and cheaper.

we never optimize before a performance issue actually pops up. never. but when it does, then we look at the profiler and take the lowest hanging fruits by optimizing some of the easiest hot-spots.

but you need a language that helps this way of development. we work in lisp, where you have a chance to factor out most of your abstractions, which later makes it very easy to shape the code and/or to optimize the framework behind the scene.

link|flag
vote up 0 vote down

I would say it takes two steps.

  1. Keep the design as simple as possible. In particular, have as few classes as possible, and don't let "performance" be the reason for any complexity in the data structure.

  2. Only when a performance problem appears, do performance analysis. My favorite method is "deep sampling" http://en.wikipedia.org/wiki/Performance_analysis#Simple_manual_technique . It's simple, quick, doesn't require any tools, and is very effective.

That way, you fix performance problems you actually have, without getting in the bind of creating performance problems by having complicated data structure whose purpose was to solve performance problems you thought you might have.

link|flag
vote up 0 vote down

Only when you need to. (Or if your bored and have nothing else to do...)

link|flag
vote up 0 vote down

Always remember the 80/20 rule, and always weigh developer time/cost against hardware upgrade costs. Don't optimize until you have a problem. This presupposes good design and best practices, of course.

link|flag
vote up 0 vote down

The rules for optimizations at source level are:

  1. Don't do it
  2. (For experts only) Don't do it yet

If you really think that you need to optimize, you first need to identify the real bottleneck of the system (not to be confused with what you think is the bottleneck). Use a good profiler, it will tell you where most of the time is spent.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.