Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectioniii [2012/02/26 23:28] – [The Problem] mugabej | courses:cs211:winter2012:journals:jeanpaul:chapterfour_sectioniii [2012/02/27 03:25] (current) – [Designing the Algorithm] mugabej | ||
---|---|---|---|
Line 17: | Line 17: | ||
==== Designing the Algorithm ==== | ==== Designing the Algorithm ==== | ||
+ | === Algorithm === | ||
+ | |||
+ | >>>>>>>>>>>>> | ||
+ | >>>>>>>>>>>>>>>>>>>> | ||
+ | |||
+ | * This algorithm is called the // | ||
+ | |||
+ | === Analysis === | ||
+ | |||
+ | * A //reduced schedule//: With this schedule, a item d is brought into the cache in a step //i// only if a request to d has been made during the step //i// and d is not already in the cache. This schedule does the minimal work necessary in a given step. | ||
+ | * For a schedule that is not reduced, an item d can be brought into the cache even if there was no request fro d in step i | ||
+ | * Let S be a schedule that is not reduced: | ||
+ | * For a reduction of S(let' | ||
+ | * S** brings d into cache only in the next step j after which d is requested | ||
+ | * So, the cache miss incurred by S** in step j can be charged to the earlier cache operation performed by S in step i, when it brought it in d. | ||
+ | * Thus S** is a reduced schedule that brings in at most as many items as the schedule S | ||
+ | * Proving optimality of Farther-in-Future: | ||
+ | * Let S< | ||
+ | * Let S* be the schedule that incurs the minimum possible number of misses | ||
+ | * -->Let S be a reduced schedule that makes the same eviction decisions as S< | ||
+ | * -->Then there' | ||
+ | * S< | ||
+ | --> | ||
+ | \\ | ||
+ | \\ | ||
+ | * The caching algorithm can be extended to deal with eviction decisions without knowing the future | ||
+ | * Caching algorithms under this requirement are variants of the // | ||
+ | \\ | ||
+ | I give this section a 7/10. | ||
+ |