-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.toml
64 lines (58 loc) · 1.99 KB
/
config.toml
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
58
59
60
61
62
63
64
# main configuration for running experiment
[main]
# choose if use tcp_probe
enable_tcp_probe = false
# choose 'mahimahi' or 'tc' for delay emulator
delay_emulator = 'mahimahi'
# folder path to save all kinds of files
[path]
log_folder = "log"
trace_folder = "traces"
fig_folder = "figures"
ccp_fig_folder = "ccp"
mahimahi_fig_folder = "mahimahi"
area_fig_folder = "area"
# experiment parameters configuration
[data]
# each element in delay_list stands for the mean and varience of link's RTT(in milliseconds)
delay_list = [ [25.0, 2.5],]
# each element in packet_buffer_list stands for the link's bottleneck buffer size in packets(each packet is 1500 Byte)
packet_buffer_list = [ 40, 100]
alg = "ccp"
# each element in trace_list is a list, details see comments of function _link_trace_multibw_generator() in class TraceLoader in utils/traceloader.py
# trace_list = [ [ [ 12, 2, 130000, 1,],], [ [ 48, 8, 130000, 1,],], [ [ 24, 6, 130000, 1,],],]
trace_list = [ [ [ 12, 2, 130000, 1,],],[ [ 48, 2, 130000, 1,],]]
# how many iterations need to run for one set of parameters
iteration = 100
# how long experiment lasts
exp_duration = 80
# CCA's name and its executable file path
[data.ccp_algs]
bbr = "./bbr/target/release/bbr"
# copa = "./copa/target/release/copa"
cubic = "./generic-cong-avoid/target/release/cubic"
reno = "./generic-cong-avoid/target/release/reno"
# configuration used in log parse and plot
[data.log]
# binsize of throughput time interval
binsize = 0.02
# how long of the time sequence to be used for analysis
duration = 60
# choose if plot every algorithm
enable_iteration_plot = false
# choose if plot every iteration
enable_alg_plot = false
# actual CCA's name used in voilin figures plot
[data.plot_name_map]
copa= "Copa"
bbr = "BBR"
cubic = "Cubic"
reno = "Reno"
# configuration used in trace loader
[trace]
# whether save the link_trace in trace_folder or not
link_trace_save=true
# whether save the raw_data in .npy or not
raw_data_save=true
# whether save the trace_info in .json or not
trace_info_save=true