Starting from:

$29.99

PROJECT 5 - CACHE Solution

PROJECT 5 - CACHE
INTRODUCTION
Caches are complex memory and sometimes difficult to understand. One way to understand them is to build them. However, due to time constraints and lack of hardware expertise, we will instead write a cachesimulator. Inthisproject,youwillbeimplementingacachesimulatorandthenrunningsomedesign experiments to find an optimal cache for the given workloads. We have provided you the following files, written in your favorite programming language C: • cachesim driver.c - The file that drives your cache. • cachesim.h - Header file containing important declarations. • cachesim.c - The cache simulator, missing some vital portions of code that you will be filling in. • Makefile - To compile your code. Modify at your own risk. • traces - The workloads inside the traces directory • solution.txt - The solution generated by the TA’s. You must debug your simulator untill all the test cases match. • run script.sh - A script to run all the test cases. You will be filling in the subroutines in the cachesim.c file, and then validating your output against the sample output the TA’s have generated.
This is a simple assignment that will check your understanding of how caches work. However, keep in mind that your choice of data structure used will greatly impact the difficulty of coding the simulator If you are struggling to write code, then step back and review the concepts.
RULES
Please make sure to follow the following rules: • All code must be your own work. There should be no sharing of code. Please follow the Georgia Tech Honor Code. • You may not use any standard libraries, or code that you have written in the past for completing this assignment. All work must be yours and done anew. • Youmaydiscussimplementationdetailswithyourpeers,buttheycannotdebugyourcodeorprovide you with any code. • DO NOT MODIFY the driver file. This may cause our auto grader to break, and you may get no credit for your hard work.
CACHE - CORE CAPABILITIES
Here are the specifications that your simulator must meet:
1. Thesimulatormustmodelacachewith2C bytesofdatastorage,having2B byteblockswith2S blocks per set. Note: S = 0 implies a direct map cache, and S = C - B is a fully associative cache. 2. The cache implements a write back, write allocate strategy. This means there has to be a dirty bit for each block in the cache. 3. There is a valid bit for each block. This should be set to 0 at the start of the simulation.
1

4. The cache implements an LRU replacement policy. This means that the least recently used block is chosen for replacement. 5. All memory accesses are 64-bit (i.e Address length is 64 bits). 6. The cache is byte addressable. 7. The following formula is used for Average Access Time (aka EMAT) • AAT = Hit Time (HT) + Miss Rate(MR) * Miss Penalty(MP) • Given that HT = 2ns, and MP = 100ns (Set in cachesim.h) IMPLEMENTATION
Your task is to fill out the following functions:
void cache init(uint64 t c, uint64 t s, uint64 t b)
This is the subroutine that initializes the cache. You may add and initialize as many global or heap (malloc’ed) variables here.
void cache access(char type, uint64 t address, cache stats t *stats)
This is the subroutine that will simulate cache accesses, one access at a time. The ‘type‘ is going to be either READ or WRITE kind. The ‘address‘ field is the memory address that is being accessed. ‘stats‘ should be used for updating the cache statistics.
void cache cleanup(cache stats t *stats)
Use this function to cleanup any memory and for calculating final statistics. Update changes in the ‘stats‘ parameter. Hint - All malloc’ed memory must be freed here.
STATISTICS - AKA THE OUTPUT
The output from your final cache is the statistics that your cache calculates for each workload. Here is the list of fields inside the cache stats t struct and their meaning: 1. accesses - The total number of memory accesses your cache gets 2. reads - The number of accesses that were reads (type == READ) 3. read misses - The total number of misses that were cache misses 4. writes - The number of accesses that were writes (type == WRITE) 5. write misses - The total number of writes that were cache misses 6. misses - The total number of misses (Reads + Writes) 7. write backs - The total number of times data was written back to memory 8. access time - The access time of the cache (It is already set to 2ns in the driver) 9. miss penalty - The miss penalty for a cache miss (It is already set to 100ns in the driver) 10. miss rate - The miss rate for the cache 11. avg access time - The average access time for your cache, aka EMAT The driver displays the output for these parameters onto the terminal screen. You only need to fill in the ‘stats‘ structure passed in the cache access() and cache cleanup() functions.
2

VALIDATION REQUIREMENT
FoursamplesimulationoutputswillbeprovidedonT-square. Youmustrunyoursimulatoranddebugtill your output perfectly matches all the statistics given in the sample output.
DESIGN EXPERIMENT
After validating your cache against the output given by the TA’s, you need to design a cache for each trace in the trace directory under the following constraints: 1. Maximumcachesizeis32KiloBytesincludingthecachetagstore,validbits,dirtybitsandtheactual data. You can exclude the bits used for LRU replacement. 2. The cache should have the lowest possible AAT. You can vary any parameter, cache size, associativity and block size (C, B, S). However, keep in mind that the maximum block size is 64 bytes, that is B is maximum 6.
Writea1-2pagereportgivingthespecificationsofthebestcacheyoucameupwithforeachofthe4traces we have provided you.
HOW TO RUN YOUR CODE
We have provided you a ‘Makefile‘ that you can use to compile your code. Modify the Makefile at your own risk
Use these commands to run the cache simulator driver: $: make $: ./cachesim -c <Cache Size-b <Block Size-s <Associativity-i <Trace File Name • If you don’t provide the cache size, block size and set associativity, the default value will be used. • Note: To store the output of yoursimulator in a text file, pipe the output of the simulator to a text file by adding ‘‘ <File Name to the above command. To run a script that will run all the tests, do the following: $: bash run script
Finally: To pipe the output for all the test cases to a text file, you could run $: bash run script <Filename
To verify that you are matching the TA generated output, you can use the ‘diff‘ command. Here is how you can do it: $: diff <File Name solution.txt
WHAT TO SUBMIT
To generate a submittable version of your project, type in ‘make submit‘ into the terminal. You need to submit the following: • The tarball you just generated • The report summarizing the best cache for each trace

More products