Browse Source

Fix: Actually run the iceoryx dataflow

benchmark
Philipp Oppermann 3 years ago
parent
commit
6ab0defb81
Failed to extract signature
2 changed files with 3 additions and 3 deletions
  1. +2
    -2
      examples/benchmark/node/src/main.rs
  2. +1
    -1
      examples/benchmark/run.rs

+ 2
- 2
examples/benchmark/node/src/main.rs View File

@@ -18,8 +18,8 @@ fn main() -> eyre::Result<()> {
4 * 4096,
10 * 4096,
100 * 4096,
1000 * 4096,
10000 * 4096,
// 1000 * 4096,
// 10000 * 4096,
];

// test latency first


+ 1
- 1
examples/benchmark/run.rs View File

@@ -25,7 +25,7 @@ async fn main() -> eyre::Result<()> {
.await?;
println!("\n\nICEORYX:");
dora_coordinator::run(dora_coordinator::Args {
run_dataflow: dataflow_zenoh.to_owned().into(),
run_dataflow: dataflow_iceoryx.to_owned().into(),
runtime: None,
})
.await?;


Loading…
Cancel
Save