Notice
Recent Posts
Recent Comments
Link
«   2025/02   »
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
Tags more
Archives
Today
Total
관리 메뉴

Pure Software Engineer :)

[IPDPS 2010] Adaptive Cache Partitioning Algorithms to Pseudo-LRU Replacement Policies 본문

Software Engineering/Paper

[IPDPS 2010] Adaptive Cache Partitioning Algorithms to Pseudo-LRU Replacement Policies

HelloJaewon 2012. 3. 6. 12:27

기존의 cache partitioning algorithm들은 모두 LRU를 쓴다고 가정하고 LRU의 특징(stack property, ...) 을 사용한다.

하지만 실제로 LRU를 그대로 구현하기에는 cost가 너무커서 pseudo-LRU(NRU(not recently used) or BT(binary tree))를 구현하는데 이 알고리즘들은 LRU와 달라서 기존의 cache partitioning algorithm을 그대로 적용시킬 수 없다.

그래서 이 paper는 partitioning 할 way를 결정하는 profiling logic을 pseudo-LRU에 적용할수 있도록 하는데...