From 8eb0f65729eee5faf76bbdd119cb91334eb57a2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20H=C3=B6lscher?= Date: Tue, 26 Apr 2022 10:00:44 +0200 Subject: [PATCH] Added better cache description to the exercise. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index c24f4b8..7d5b55a 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,8 @@ In this lab session you will learn how to implement a LRU cache in abstract representation. The Goal is to implement an LRU must Join in include/AbstractState.h. +For this we assume a "Set-Associative LRU Cache", with 16 sets an associativity of 4 and a cacheline size of two times instruction size. + The Project can be build, tested and Evaluated with the "helper" script. ## Disclaimer