-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
executable file
·37 lines (33 loc) · 759 Bytes
/
run.sh
File metadata and controls
executable file
·37 lines (33 loc) · 759 Bytes
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
#! /bin/bash
dataset[0]="datasets/graph_10000_1000000.txt"
dataset[1]="datasets/graph_10000_10000000.txt"
dataset[2]="datasets/graph_100k_20m.txt"
for ((i=0; i<5; i++)); do
for ((j=1; j<64; j=j*2)); do
./pagerank_exe \
${j} \
${dataset[0]} \
10000 \
10 \
result_graph_10000_1000000_${i}_${j}.csv \
>> timeStamps_${i}.csv
done
for ((j=1; j<64; j=j*2)); do
./pagerank_exe \
${j} \
${dataset[1]} \
10000 \
10 \
result_graph_10000_10000000_${i}_${j}.csv \
>> timeStamps_${i}.csv
done
for ((j=1; j<64; j=j*2)); do
./pagerank_exe \
${j} \
${dataset[2]} \
100000 \
10 \
result_graph_10000_10000000_${i}_${j}.csv \
>> timeStamps_${i}.csv
done
done