这是一个本人学习 csapp 的 learning 库
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 
朱文韬 09bc033bb5 feat: finish data_lab před 1 rokem
..
traces feat: finish data_lab 删除 před 1 rokem
Makefile feat: finish data_lab před 1 rokem
README feat: finish data_lab před 1 rokem
cachelab.c feat: finish data_lab před 1 rokem
cachelab.h feat: finish data_lab před 1 rokem
csim feat: finish data_lab před 1 rokem
csim-ref feat: finish data_lab před 1 rokem
csim.c feat: finish data_lab před 1 rokem
csim.exe feat: finish data_lab před 1 rokem
driver.py feat: finish data_lab před 1 rokem
gentle-handin.tar feat: finish data_lab před 1 rokem
test-csim feat: finish data_lab před 1 rokem
test-trans feat: finish data_lab před 1 rokem
test-trans.c feat: finish data_lab před 1 rokem
tracegen feat: finish data_lab před 1 rokem
tracegen.c feat: finish data_lab před 1 rokem
trans.c feat: finish data_lab před 1 rokem
trans.o feat: finish data_lab před 1 rokem

README

This is the handout directory for the CS:APP Cache Lab. 

************************
Running the autograders:
************************

Before running the autograders, compile your code:
linux> make

Check the correctness of your simulator:
linux> ./test-csim

Check the correctness and performance of your transpose functions:
linux> ./test-trans -M 32 -N 32
linux> ./test-trans -M 64 -N 64
linux> ./test-trans -M 61 -N 67

Check everything at once (this is the program that your instructor runs):
linux> ./driver.py

******
Files:
******

# You will modifying and handing in these two files
csim.c Your cache simulator
trans.c Your transpose function

# Tools for evaluating your simulator and transpose function
Makefile Builds the simulator and tools
README This file
driver.py* The driver program, runs test-csim and test-trans
cachelab.c Required helper functions
cachelab.h Required header file
csim-ref* The executable reference cache simulator
test-csim* Tests your cache simulator
test-trans.c Tests your transpose function
tracegen.c Helper program used by test-trans
traces/ Trace files used by test-csim.c