Sound bites considered harmful

Knuth said:

premature optimization is the root of all evil.

Only, what he actually said was:

There is no doubt that the grail of efficiency leads to abuse. Programmers waste enormous amounts of time thinking about, or worrying about, the speed of noncritical parts of their programs, and these attempts at efficiency actually have a strong negative impact when debugging and maintenance are considered. We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil.

Yet we should not pass up our opportunities in that critical 3%. A good programmer will not be lulled into complacency by such reasoning, he will be wise to look carefully at the critical code; but only after that code has been identified. It is often a mistake to make a priori judgments about what parts of a program are really critical, since the universal experience of programmers who have been using measurement tools has been that their intuitive guesses fail. After working with such tools for seven years, I’ve become convinced that all compilers written from now on should be designed to provide all programmers with feedback indicating what parts of their programs are costing the most; indeed, this feedback should be supplied automatically unless it has been specifically turned off.

In that context, the quote takes on a very different meaning.

About Graham

I make it faster and easier for you to create high-quality code.
This entry was posted in software-engineering. Bookmark the permalink.

One Response to Sound bites considered harmful

  1. Rick DeNatale says:

    To me this expanded quote means exactly what I’ve always said. I interpret this sentence:

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

    To mean that 97% of the small efficiencies aren’t worth the cost in debugging, maintenance; and, unmentioned here by Knuth, of developing ‘optimized’ code.

    It’s not just optimization which is the root of all evil, it’s *premature* optimization, which is optimization before discovering what that 3% or so which *needs* to be optimized.

Comments are closed.