Beating the compiler
(www.mattkeeter.com)
from learnbyexample@programming.dev to programming@programming.dev on 29 Jul 2024 08:40
https://programming.dev/post/17465323
from learnbyexample@programming.dev to programming@programming.dev on 29 Jul 2024 08:40
https://programming.dev/post/17465323
threaded - newest
They have the blog post date in the title but I don’t see it on the page. Header head nor bottom.
Also particularly interesting what didn’t work.
I think this is misrepresenting the advice. I would argue the following:
I don’t think anyone ever said “don’t try to optimize small sections of code you won’t beat the compiler”. Of course you can beat the compiler. But it will require significant upfront and maintenance cost to beat the compiler over time. That cost isn’t worth it for 99.9% of code. But when applied judiciously it can be used for improvements where it matters.
The conclusion should be start by writing everything in a high level language. Then optimize your algorithms and eliminate performance bugs. Then once you have eliminated the low-hanging fruit consider spending the time to profile and optimize your hottest code in assembly.