From 6ab0defb8174ccd82fdcdd95cdbd2bc94b621173 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Thu, 5 Jan 2023 14:18:51 +0100 Subject: [PATCH] Fix: Actually run the iceoryx dataflow --- examples/benchmark/node/src/main.rs | 4 ++-- examples/benchmark/run.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/benchmark/node/src/main.rs b/examples/benchmark/node/src/main.rs index 726eb484..e559affa 100644 --- a/examples/benchmark/node/src/main.rs +++ b/examples/benchmark/node/src/main.rs @@ -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 diff --git a/examples/benchmark/run.rs b/examples/benchmark/run.rs index b1b5ee2f..c5c2e070 100644 --- a/examples/benchmark/run.rs +++ b/examples/benchmark/run.rs @@ -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?;