-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_Prob
57 lines (48 loc) · 1.94 KB
/
run_Prob
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
57
#! /bin/bash
for graph_type in geant abilene dtelekom
do
sbatch ../script.sh ProbGenerate.py --graph_type $graph_type --learners 3 --sources 3 --types 2 --min_bandwidth 5 --max_bandwidth 8
done
for graph_type in erdos_renyi balanced_tree hypercube star grid_2d small_world
do
sbatch ../script.sh ProbGenerate.py --graph_type $graph_type --learners 5 --sources 10 --types 3 --min_bandwidth 5 --max_bandwidth 10
done
for sources in 2 4 5 6
do
for graph_type in geant abilene dtelekom
do
sbatch ../script.sh ProbGenerate.py --graph_type $graph_type --learners 3 --sources $sources --types 2 --min_bandwidth 5 --max_bandwidth 8
done
done
for learners in 2 4 5 6
do
for graph_type in geant abilene dtelekom
do
sbatch ../script.sh ProbGenerate.py --graph_type $graph_type --learners $learners --sources 3 --types 2 --min_bandwidth 5 --max_bandwidth 8
done
done
for sources in 5 8 12 15
do
for graph_type in erdos_renyi balanced_tree hypercube star grid_2d small_world
do
sbatch ../script.sh ProbGenerate.py --graph_type $graph_type --learners 5 --sources $sources --types 3 --min_bandwidth 5 --max_bandwidth 10
done
done
for learners in 3 7 9 11
do
for graph_type in erdos_renyi balanced_tree hypercube star grid_2d small_world
do
sbatch ../script.sh ProbGenerate.py --graph_type $graph_type --learners $learners --sources 10 --types 3 --min_bandwidth 5 --max_bandwidth 10
done
done
for rate in 3 5 7 9 11
do
for graph_type in geant abilene dtelekom
do
sbatch ../script.sh ProbGenerate.py --graph_type $graph_type --min_datarate $rate --max_datarate $rate --learners 3 --sources 3 --types 2 --min_bandwidth 5 --max_bandwidth 8
done
for graph_type in erdos_renyi balanced_tree hypercube star grid_2d small_world
do
sbatch ../script.sh ProbGenerate.py --graph_type $graph_type --min_datarate $rate --max_datarate $rate --learners 5 --sources 10 --types 3 --min_bandwidth 5 --max_bandwidth 10
done
done