Platform Technology Cache memory Introduction to cache memory

  • Slides: 34
Download presentation
Platform Technology หนวยความจำแคช Cache memory

Platform Technology หนวยความจำแคช Cache memory

������� Introduction to cache memory Hit rate/Miss rate Write Policy Replacement algorithm Mapping function

������� Introduction to cache memory Hit rate/Miss rate Write Policy Replacement algorithm Mapping function

WHAT IS CACHE MEMORY A high speed memory closely connected to the processor

WHAT IS CACHE MEMORY A high speed memory closely connected to the processor

MULTILEVEL CACHE

MULTILEVEL CACHE

LOCALITY OF REFERENCE : EXAMPLE void main (void) { int table[1024]; for (i= 0;

LOCALITY OF REFERENCE : EXAMPLE void main (void) { int table[1024]; for (i= 0; i<100000; i++) k = i % 26; c = table[k] printf(“%d”, c); }

MULTIPROCESSOR

MULTIPROCESSOR

UNIFIED VS SEPARATED CACHE Unified cache Keeping both program and data More simple and

UNIFIED VS SEPARATED CACHE Unified cache Keeping both program and data More simple and higher hit rate Separate cache Keeps program in code cache Keeps data in data cache Suitable for Von-Neuman architecture

UNIFIED CACHE

UNIFIED CACHE

SEPARATED CACHE

SEPARATED CACHE

VON-NEUMANN ARCHITECTURE AND CACHE

VON-NEUMANN ARCHITECTURE AND CACHE

PENTIUM PRO CACHE

PENTIUM PRO CACHE

CACHE MAPPING Direct mapping Fully associative mapping Set associative mapping

CACHE MAPPING Direct mapping Fully associative mapping Set associative mapping

DIRECT MAPPING

DIRECT MAPPING

DIRECT MAPPING

DIRECT MAPPING

DIRECT MAPPING

DIRECT MAPPING

FULLY ASSOCIATIVE MAPPING

FULLY ASSOCIATIVE MAPPING

FULLY ASSOCIATIVE MAPPING

FULLY ASSOCIATIVE MAPPING

2 -WAY SET ASSOCIATIVE MAPPED

2 -WAY SET ASSOCIATIVE MAPPED

2 -WAY SET ASSOCIATIVE MAPPED

2 -WAY SET ASSOCIATIVE MAPPED

4 -WAY SET ASSOCIATIVE MAPPED

4 -WAY SET ASSOCIATIVE MAPPED

4 -WAY SET ASSOCIATIVE MAPPED

4 -WAY SET ASSOCIATIVE MAPPED

PROCESSOR CACHE COMPARISON

PROCESSOR CACHE COMPARISON

CACHE OF INTEL CELERON

CACHE OF INTEL CELERON

CACHE OF INTEL CELERON

CACHE OF INTEL CELERON

CACHE OF AMD ATHLON

CACHE OF AMD ATHLON

CACHE OF AMD ATHLON

CACHE OF AMD ATHLON