Skip to content

Commit 2fbdc53

Browse files
committed
Add grid3
1 parent 7885d47 commit 2fbdc53

3 files changed

Lines changed: 30 additions & 1 deletion

File tree

grid_search/apply.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
for i in {1..9}; do
2+
NODE="node$i"
3+
scp ~/distComp/conf.json $NODE:~/distComp/conf.json
4+
done

grid_search/conf_3.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"ghost_to_main_thresh": {
3+
"1": "Hit & Promote"
4+
},
5+
"small_skip_ratio": {
6+
"0.0": "Off",
7+
"0.1": "Light Filter",
8+
"0.25": "Anti-Scan"
9+
},
10+
"ghost_size_ratio": {
11+
"3": "Fixed. Maximize history info.",
12+
"6": "Large. Maximize history info."
13+
},
14+
"small_size_ratio": {
15+
"0.01": "Extra Small",
16+
"0.05": "Static/Stable",
17+
"0.1": "Default",
18+
"0.2": "Dynamic/Churn"
19+
},
20+
"move_to_main_thresh": {
21+
"1": "Recency-friendly",
22+
"2": "Balanced",
23+
"4": "Scan-resistant"
24+
}
25+
}

grid_search/yield_tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
cachesim_path = "/mnt/cfs/_libCacheSim/_build/bin/cachesim"
88
trace_list_path = "/mnt/cfs/_libCacheSim/grid_search/trace_lists.txt"
9-
grid_config_path = "/mnt/cfs/_libCacheSim/grid_search/conf_2.json"
9+
grid_config_path = "/mnt/cfs/_libCacheSim/grid_search/conf_3.json"
1010

1111
with open(trace_list_path, 'r') as f:
1212
data_path_list = f.readlines()

0 commit comments

Comments
 (0)