>_ First Things First: Hardware Counters
12.9× slower — and that’s the easy part Two loops over the same array. Same data. Same sum operation. One walks the array sequentially; the other uses a random permutation for indirection. BenchmarkDotNet says SumRandom is 12.88× slower at one million elements. No surprise — random memory access is slower. Everyone knows that. But how much slower will it get when the dataset grows 64×? ...