1. 笔记
cache基本概念
1.cache:S、E、B
- S:sets
- E:the number of lines per set
- B:the number of bytes per block
2.地址格式:
- 一般:tag bits+set index+block offset
- 可选:set index + tag bits + block offset
3.直接映射:one line per set(E=1)
4.E-way Set Associative Cache
- find set
- 检查valid位
- 检查组内的tag
5.write(dirty bit)
- write through
- write back
- write allocate
- No-write-allocate
6.intel core i7 cache hierarchy
- core内部:L1 cache(区分Data和Instruction)和L2 unified cache
- core共享:L3 unified cache
- 参数:L1(32kB,8-way,4 cycles)、L2(256KB,8-way,10 cycles)、L3(8MB,16-way,40-75 cycles)
- block size:64B
1.2 利用cache提升程序性能
1.memory mountain test function
- 测试cache的性能
理解CMU 15213:Cache Memories与性能提升

这篇博客介绍了CMU 15213课程中的Cache基础知识,包括S、E、B的概念,地址格式,直接映射与E-way Set Associative Cache的工作原理,以及Intel Core i7的缓存层次结构。强调了利用Cache提升程序性能的策略,如memory mountain测试、优化空间和时间局部性。博主分享了进行的两个Cache模拟实验,第一个实验模拟了Cache工作,第二个实验旨在降低Cache miss次数,通过分析矩阵操作来优化。
最低0.47元/天 解锁文章
727

被折叠的 条评论
为什么被折叠?



