-
Notifications
You must be signed in to change notification settings - Fork 22
/
testplan.txt
56 lines (46 loc) · 1.05 KB
/
testplan.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/****************************
* Write Behind *
****************************/
$ ./bin/sim wb traces/trace0.txt
CACHE HITS: 710738
CACHE MISSES: 30478
MEMORY READS: 30478
MEMORY WRITES: 12539
$ ./bin/sim wb traces/trace1.txt
CACHE HITS: 664
CACHE MISSES: 336
MEMORY READS: 336
MEMORY WRITES: 0
$ ./bin/sim wb traces/trace2.txt
CACHE HITS: 6725
CACHE MISSES: 3275
MEMORY READS: 3275
MEMORY WRITES: 1204
$ ./bin/sim wb traces/trace3.txt
CACHE HITS: 796356
CACHE MISSES: 203644
MEMORY READS: 203644
MEMORY WRITES: 155108
/****************************
* Write Through *
****************************/
$ ./bin/sim wt traces/trace0.txt
CACHE HITS: 710738
CACHE MISSES: 30478
MEMORY READS: 30478
MEMORY WRITES: 238846
$ ./bin/sim wt traces/trace1.txt
CACHE HITS: 664
CACHE MISSES: 336
MEMORY READS: 336
MEMORY WRITES: 334
$ ./bin/sim wt traces/trace2.txt
CACHE HITS: 6725
CACHE MISSES: 3275
MEMORY READS: 3275
MEMORY WRITES: 2861
$ ./bin/sim wt traces/trace3.txt
CACHE HITS: 796356
CACHE MISSES: 203644
MEMORY READS: 203644
MEMORY WRITES: 345398