I'm trying to note the concept of memory access granularity, which I've found mentioned in some articles.
It's being said that memory access granularity is [1]:
the size in which a processor accesses memory
On the other hand, the cache line is [2]:
the unit of data transfer between cache and memory
- How does the size of a cache line relate to the granularity of the memory?
- Do they mean the same thing?
Thanks!