|
|
|
|
|
by globular-toast
842 days ago
|
|
One thing to keep in mind is there's three layers of optimisation: 1. The problem,
2. The algorithms,
3. Micro-optimisation. The potential gains shrink rapidly as you descend this list. A lot of people start thinking at level 3 straight away, but this is pointless if you've left performance on the table at the higher levels. For example, no amount of clever bit twiddling will compensate for the wrong algorithm, and even the best algorithm is pointless if you're solving the wrong problem. |
|