Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/code-help-tutor/cachelab
cachelab 代写代做 编程辅导, code help, CS tutor, WeChat: cstutorcs Email: [email protected]
https://github.com/code-help-tutor/cachelab
cachelab
Last synced: about 10 hours ago
JSON representation
cachelab 代写代做 编程辅导, code help, CS tutor, WeChat: cstutorcs Email: [email protected]
- Host: GitHub
- URL: https://github.com/code-help-tutor/cachelab
- Owner: code-help-tutor
- Created: 2024-03-31T03:18:00.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-31T03:18:06.000Z (8 months ago)
- Last Synced: 2024-04-18T09:18:40.815Z (7 months ago)
- Topics: cachelab
- Language: C
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This is the handout directory for the CS:APP Cache Lab.
************************
Running the autograders:
************************Before running the autograders, compile your code:
linux> makeCheck the correctness of your simulator:
linux> ./test-csimCheck 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 67Check 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