-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpr_cmds.sh
executable file
·47 lines (40 loc) · 1.34 KB
/
expr_cmds.sh
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
#! /bin/bash
# webpage
./run_expr.sh -w webpages
# Protein
./run_expr.sh -w protein
# DB_X
./run_expr.sh -w db_x
# dblp
for qcount in 1000 2000 3000 4000; do
./run_expr.sh -w dblp_small_${qcount} \
-r data/dblp/small/query${qcount}.txt \
-d data/dblp/small/authors.txt
done
# Expr 2
for qcount in 100 500 2000 2500 5000; do
./run_expr.sh -w synthetic_expr2_q${qcount}_d20000 \
-r data/synthetic/expr2/queries/query_workload_${qcount}.txt \
-d data/synthetic/expr2/datasets/dataset_20000.txt
done
for dcount in 20000 40000 60000 80000 100000; do
./run_expr.sh -w synthetic_expr2_q1000_d${dcount} \
-r data/synthetic/expr2/queries/query_workload_1000_for_${dcount}.txt \
-d data/synthetic/expr2/datasets/dataset_${dcount}.txt
done
# Expr 4
for rob_wl in 1 2 3 4; do
for perc in 10 30 50; do
./run_expr.sh -w synthetic_expr4_rob0${rob_wl}_${perc} \
-r data/synthetic/expr4/queries/Rob0${rob_wl}_queries_${perc}pct.txt \
-r data/synthetic/expr4/queries/Rob0${rob_wl}_test_queries_2pct.txt \
-d data/synthetic/expr4/datasets/Rob0${rob_wl}.txt
done
done
# # Expr 1
# for expr in 0 1 2 3; do
# std_val=$(( ($expr + 1) * 100 ))
# ./run_expr.sh -w synthetic_expr1_${expr} \
# -r data/synthetic/expr1/query_${expr}.txt \
# -d data/synthetic/expr1/data_${expr}_std${std_val}.txt
# done