Memory access: sequential vs. random
- POST
It is well known that accessing the memory in a non-sequential way is slower because it leads to a lot of cache miss. This micro-project was made to evaluate the difference in performance.
An array of 10 000 000 elements (size_t) is created. It represents a typical data structure that you will access in your program. A random list of 1 000 000 offsets is generated.
I compare the time used to fetch this million offset in a random order with the time used to fetch the same offsets, but in ascending (or descending) order.