Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add netbench runner #124

Merged
merged 1 commit into from May 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
47 changes: 47 additions & 0 deletions benches/netbench/run.sh
@@ -0,0 +1,47 @@
#!/usr/bin/env bash

# Usage: run.sh TARGET BIN
# Example: run.sh linux server-bw
# run.sh hermit client-bw

set -o errexit

netbench_dir="${0%/*}"
root_dir="$netbench_dir"/../..
rusty_loader_dir="$root_dir"/loader

bin=$2
args="--bytes 1048576 --rounds 1000"

hermit() {
echo "Building rusty-loader"

make -C "$rusty_loader_dir" release=1

echo "Building $bin image"

cargo build --manifest-path "$netbench_dir"/Cargo.toml --bin $bin \
--release

echo "Launching $bin image on QEMU"

qemu-system-x86_64 -cpu host \
-enable-kvm -display none -smp 1 -m 1G -serial stdio \
-kernel "$rusty_loader_dir"/target/x86_64-unknown-hermit-loader/release/rusty-loader \
-initrd "$root_dir"/target/x86_64-unknown-hermit/release/$bin \
-netdev tap,id=net0,ifname=tap10,script=no,downscript=no,vhost=on \
-device virtio-net-pci,netdev=net0,disable-legacy=on \
-append "-- --nonblocking 0 --address 10.0.5.1 $args"
}

linux() {
echo "Launching $bin on linux"

cargo run --manifest-path "$netbench_dir"/Cargo.toml --bin $bin \
--release \
--target x86_64-unknown-linux-gnu \
-- \
--nonblocking 0 --address 10.0.5.3 $args
}

$1