Homework 3: Cache Organization and Indexing

Assigned Thursday, November 10, 2016
Due Date Friday, November 18, 2016 at 11:45pm
Submissions Submit a PDF file of your solutions using the course's Assignment Drop Box.

Introduction

The purpose of written homework assignments is to get you thinking about the topics being covered in lecture and in readings in the textbook which are not represented in the hands-on, programming lab assignments. These written assignments also better prepare you for exams. It is worth noting that the book contains many practice problems similar to the problems we ask on these written assignments! The solutions for those practice problems are located at the end of each chapter and should give you a feel for the kind of answers we expect you to turn in for these kind of assignments.

Logistics

Please write up your answers and submit them as a PDF file in the online dropbox.

We will provide solutions to all of the problems in the written homework assignments in a timely fashion after the assignment is due. This may be around 4 or 5 days after the due date, because some students may use late days.

Make sure you are using the 3rd edition of Computer Systems: A Programmer's Perspective. If you're not using the right book, you might be doing the wrong problems!

Questions

Answer the following problems, some from the 3rd edition of the textbook. Notice that several of these problems are practice problems. If a practice problem is listed, try to solve the problem on your own first, then check your answer at the end of the chapter. Make sure you understand the solution provided, then complete the additional questions we ask about the practice problem below. Your write-up only needs to contain the information necessary to understand your answer to the *additional questions listed here* - you do NOT need to turn in the answer to the practice problem in its entirety.

  1. Structs: Practice Problem 3.41, p. 268.
  2. Cache structure: Practice Problem 6.9, p. 616.
    Repeat this problem for the following two real caches:
    • Intel Xeon L1 data cache: m = 38, C = 32768, B = 64, E = 8
    • AMD Opteron 6168 L2 unified cache: m = 48, C = 524288, B = 64, E = 16
  3. Miss rates: Practice Problem 6.10, p. 624.
    Assume that instead our cache is 2-way set associative. That is, C=64, S=2, E=2, B=16. So our cache is twice as big, and each set now contains two lines. Please give a separate answer for each of these two scenarios:
    • a) What will the overall miss rate be for the original layout of the two arrays in this cache (include all accesses to array x and array y)?
    • b) What will the overall miss rate be for the padded version?
  4. Cache operation: Practice Problems 6.12-6.16, p. 628-630. (Nothing required for turn-in.)
  5. Cache optimization: Practice Problem 6.18, p. 637.
  6. Cache operation: Homework Problem 6.28, p. 650.
  7. Cache operation: Homework Problem 6.29, p. 651.