vote up 1 vote down star

I would like to understand good code optimization methods and methodology.

  1. How do I keep from doing premature optimization if I am thinking about performance already.
  2. How do I find the bottlenecks in my code?
  3. How do I make sure that over time my program does not become any slower?
  4. What are some common performance errors to avoid (e.g.; I know it is bad in some languages to return while inside the catch portion of a try{} catch{} block
flag

10 Answers

vote up 19 vote down check
  1. Don't think about performance, think about clarity and correctness.
  2. Use a profiler.
  3. Keep using a profiler.
  4. See 1.
link|flag
vote up 0 vote down

1, 2, and 3 have the same answer: Profile. Get a good profiler and run it on your app, both in intrusive and in sampling modes. This will show you where your bottlenecks are, how severe they are, and doing it on a regular basis will show you where perf has gotten worse from week to week.

You can also simply put stopwatches into your app so that it tells you, say, exactly how many seconds it takes to load a file; you'll notice if that number gets bigger, especially if you log it.

4 is a big, big question that ranges all the way from high-level algorithm design down to tiny details of a particular CPU's pipeline. There's lots of resources out there, but always start at the high level -- take your outer loop from O(N^2) to O(N log N) before you start to worry about integer opcode latency and the like.

link|flag
vote up 4 vote down

We had a subcontractor write us a non-trivial amount of code for non-trivial program. Apparently they always used trivial amount of data. So..

  • Use profiler
  • Use non-trivial amount of data when testing. If possible make that humongous amount of data.
  • Use sane algorithms when things become tight.
  • Use profiler to check that whatever "optimization" you've done is actually correct, f.example recent "java jar" fiasco where O(1) operation was done as O(n).
link|flag
vote up 4 vote down

Make sure you have clearly defined performance goals and tests that measure against those goals so you can quickly find out if you even have a problem.

Think about performance more from a design perspective than from a coding perspective - optimizing a poor-performing design just results in faster slow code

When you do have a performance problem, use a tool such as a profiler to identify the problem - you can guess where your bottlenecks are and usually guess wrong.

Fix performance problems early in development rather than putting them off - as time goes on and features make it into the product fixing perf issues will only become more and more difficult.

link|flag
"Fix performance problems early in development rather than putting them off - as time goes on and features make it into the product fixing perf issues will only become more and more difficult." Quoted-for-truth. Sometimes I feel like everyone else on Stack Overflow has forgotten or chosen to ignore this principle. – Crashworks May 21 at 22:41
Yes, I recall one project where they were not even close to meeting their performance goals and had scheduled "performance" for a much later milestone. I don't know how they expected to meet their perf goals later with a load of features piled on top of their already unperforming code base. And their perf milestone was a huge failure. – Michael May 21 at 22:51
vote up 4 vote down

The number one rule I use is, DRY (Don't Repeat Yourself). I find that this rule does a good job of highlighting problem areas that can be fixed without hurting the clarity of the program. It also makes it easier to fix bottlenecks once you discover them.

link|flag
vote up 1 vote down

Profile, profile, profile. Use valgrind if you can (along with the kcachegrind visualizer), otherwise use the venerable gprof.

My top performance hits:

  1. Allocating memory without freeing it. Possible only using C and C++.
  2. Allocating memory.
  3. Calls to really small procedures, functions, or methods that your compiler somehow fails to inline.
  4. Memory traffic.

Everything else is in the noise.

link|flag
vote up 1 vote down

This takes experience, I'm afraid. When you conceive of solutions to a problem, you may think in terms of class hierarchies, or you may think in terms of what information goes in, what comes out, how long does it need to be persistent in between. I recommend the latter.

In any case, what people have said is mostly good advice - keep it clean and simple, and get rid of performance problems as they come in, because they will come in.

Where I part company is I don't find measurement very helpful for locating performance problems compared to this method.

But whatever method you use, hopefully experience will teach you what NOT to do in developing software. I've been solving performance problems for a long time, and these days, the single most popular performance killer is galloping generality. Nobody likes to hear their favorite beliefs questioned, but time after time, especially in big software, what is killing performance is using bazookas to swat flies.

Oddly enough, the reason often given for this over-design is guess what? Performance.

In whatever venue you may have learned to program, chances are you've learned all about academic things like sophisticated data structures, abstract class hierarchies, tricky compiler optimization techniques - all the latest stuff that's fun and interesting to know, and that I like as much as anybody. What they didn't teach you is when to use it, which is almost never.

So what I recommend you do is: Get the experience. It is the best teacher.

link|flag
vote up 9 vote down

The rules of Optimization Club:

  1. The first rule of Optimization Club is, you do not Optimize.
  2. The second rule of Optimization Club is, you do not Optimize without measuring.
  3. If your app is running faster than the underlying transport protocol, the optimization is over.
  4. One factor at a time.
  5. No marketroids, no marketroid schedules.
  6. Testing will go on as long as it has to.
  7. If this is your first night at Optimization Club, you have to write a test case.

http://xoa.petdance.com/Rules_of_Optimization_Club

Rule #3 is the one that trips most people up. It doesn't matter how fast your calculations are if your program sits waiting for disk writes or network transfer.

Rules #6 and #7: Always have tests. If you're optimizing, you're refactoring, and you don't want to be refactoring without having a solid test suite.

link|flag
vote up 3 vote down

Early optimzation isn't always premature - it's bad only if you hurt other interests (readability, maintenance, time to implement, code size, ...) without justification.

On stackoverflow, early optimization is the new goto, don't get discouraged by that. Any decision going wrong early is hard to fix later. Optimization is special only because experience shows it can often be fixed locally, whereas sucky code requires large scale changes.


Sorry for the rant, now for your actual question:

Know your environment!
This includes all the low level details - - e.g. nonlinearity memory access, things the compiler can optimize, etc. The trick is notto fret at's a lot you shouldn't fret to much, just be aware of.

Measure measure measure!
The results of actual optimization attempts are often surprising, especially if you vary seemingly unlrelated factors. It is also the best way to develop a relaxed attitude towards performance - most of the time it really doesn't matter.

Think about algorithms before you think about implementation details.
Most low level optimizations give you a factor of 1.1, a different algorithm can give you a factor of 10. A good (!) caching strategy can give you a factor of 100. Figuring out that you really don't need to make the call gives you Warp 10.

This usually leads me to thinking about how to organize the data: what are frequent operations that are potential bottlenecks, or scalability issues?

link|flag
vote up 0 vote down
  • Only optimize when you have performance issues.
  • Only optimize the slow parts, as measured!
  • Finding a better algorithm can save you orders of magnitude, rather than a few percent.

It's mentioned above, but it's worth talking about more: measure! You must measure to make sure you're optimizing the right thing. You must measure to know if you've improved, or improved enough, and by how much. Record your measurements!

Also, often you will identify a routine as taking, say, >75% of the total time. It's worth taking the time to profile at a finer grain... often you will find most of the time within that routine is spent in a very small part of the code.

link|flag

Your Answer

Get an OpenID
or

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