|
|
|
|
|
by _notreallyme_
340 days ago
|
|
Optimizing code on MMU-less processor versus MMU and even NUMA capable processor is vastly different. The fact that the author achieves only a 3 to 6 times speedup on a processor running at a frequency 857 faster should have led to the conclusion that old optimizations tricks are awfully slow on modern architecture. To be fair, execution pipeline optimization still works the same, but not taking into account the different layers of cache, the way the memory management works and even how and when actual RAM is queried will only lead to suboptimal code. |
|