show/hide this revision's text 2 added 330 characters in body

Well the business case makes sense. Compared to open heart surgery on a software architecture, it's hard to argue with Moore's law (but software environments have added so many layers of abstraction that we're getting there :-)

Back in the day I was able to get a 30% speedup in an encryption implementation by looking at the assembler that the compiler produced and removing a single unnecessary instruction from an inner loop. Nowadays we are so many abstractions away from the raw metal that this sort of thing would be impossible to even contemplate.

However

edit: I think there is still a place for optimisation of the sort where you replace an naive algorithm of O(N^2) or O(N!) with one of O(N) - but that is almost in the category of bug fix rather than optimisation. And generally you may be able to get some useful gains with small local optimisations in well encapsulated code that is heavily used.

But I'm also reminded of the rules of optimisation:

Rule 1: Don't optimise

Rule 2 (for experts only): Optimise later

show/hide this revision's text 1

Well the business case makes sense. Compared to open heart surgery on a software architecture, it's hard to argue with Moore's law (but software environments have added so many layers of abstraction that we're getting there :-)

Back in the day I was able to get a 30% speedup in an encryption implementation by looking at the assembler that the compiler produced and removing a single unnecessary instruction from an inner loop. Nowadays we are so many abstractions away from the raw metal that this sort of thing would be impossible to even contemplate.

However I'm also reminded of the rules of optimisation:

Rule 1: Don't optimise

Rule 2 (for experts only): Optimise later