mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
Merge branch 'develop' of git.rwth-aachen.de:acs/public/villas/VILLASnode into develop
This commit is contained in:
commit
8eb58e62c1
3 changed files with 445 additions and 662 deletions
|
@ -50,12 +50,12 @@ int loopback_parse(struct node *n, json_t *cfg)
|
|||
l->queueflags = QUEUE_SIGNALLED_EVENTFD;
|
||||
else if (!strcmp(mode_str, "pthread"))
|
||||
l->queueflags = QUEUE_SIGNALLED_PTHREAD;
|
||||
#ifdef __APPLE__
|
||||
else if (!strcmp(mode_str, "polling"))
|
||||
l->queueflags = QUEUE_SIGNALLED_POLLING;
|
||||
#endif /* __APPLE__ */
|
||||
#ifdef __APPLE__
|
||||
else if (!strcmp(mode_str, "pipe"))
|
||||
l->queueflags = QUEUE_SIGNALLED_PIPE;
|
||||
#endif /* __APPLE__ */
|
||||
else
|
||||
error("Unknown mode '%s' in node %s", mode_str, node_name(n));
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
65
tests/benchmarks/settings.json
Normal file
65
tests/benchmarks/settings.json
Normal file
|
@ -0,0 +1,65 @@
|
|||
{
|
||||
"3d_plot": {
|
||||
"enabled": true,
|
||||
"ticks": {
|
||||
"x": [100, 1000, 10000, 25000, 50000],
|
||||
"y": [1, 2, 4, 8, 16, 32, 64],
|
||||
"z": [0, 1, 2, 3, 4, 5, 6, 7]
|
||||
},
|
||||
"axis_labels": {
|
||||
"x": "rate",
|
||||
"y": "number of values in sample",
|
||||
"z": "$\\tilde{t}_{lat}$ [µs]"
|
||||
},
|
||||
"dimensions": {
|
||||
"legend": [3.0, 0.3]
|
||||
},
|
||||
|
||||
"legend_columns": 3
|
||||
},
|
||||
|
||||
"median_plot": {
|
||||
"export_figures": true,
|
||||
"labels": [
|
||||
"RC",
|
||||
"UC",
|
||||
"UD"
|
||||
],
|
||||
"axis_labels": {
|
||||
"x": "number of values in sample",
|
||||
"y": "$\\tilde{t}_{lat}$ [µs]"
|
||||
},
|
||||
"ticks": {
|
||||
"x": [1, 2, 4, 8, 16, 32, 64],
|
||||
"y": [0, 1, 2, 3, 4, 5, 6]
|
||||
},
|
||||
|
||||
"colors": [
|
||||
"#000000",
|
||||
"#00549f",
|
||||
"#8ebae5"
|
||||
],
|
||||
|
||||
"dimensions": {
|
||||
"legend": [2.0, 0.3]
|
||||
},
|
||||
|
||||
"legend_columns": 3
|
||||
},
|
||||
|
||||
"histograms": {
|
||||
"export_figures": true,
|
||||
"labels": [
|
||||
"$\\mathtt{t_{lat} = t_{recv}-t_{generation}}$"
|
||||
],
|
||||
"axis_labels": {
|
||||
"x": "$t_{lat}$ [µs]",
|
||||
"y": "frequency"
|
||||
},
|
||||
"dimensions": {
|
||||
"legend": [1.70, 0.3]
|
||||
},
|
||||
|
||||
"legend_columns": 1
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue