Hacker News new | ask | show | jobs
by andix 6 days ago
99% of developers should just ignore SIMD. Most projects have a lot of low hanging fruit to increase performance, and still nobody finds the time to solve them.
1 comments

That doesn't mean you should default to a slower implementation for new code. If you do, you're just creating more low-hanging fruit that nobody will find time to solve.
in many cases often its faster just to switch from debug to release - compilers are good to vectorise many loops. Worth to give it a try before rewriting clean loop/code into SIMD/NEON.
Stop using electron
Never. You will have to pry it from my cold, dead hands.
In most cases you should skip SIMD also for new code. Often a non-SIMD version is required for compatibility, just stick with that.