summaryrefslogtreecommitdiff
path: root/configs/boot/client.netperf.stream
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2004-07-08 16:01:13 -0400
committerNathan Binkert <binkertn@umich.edu>2004-07-08 16:01:13 -0400
commit989eb88576d1cbeca19e0b9ca5054a182411c15f (patch)
tree0534132c1b62c6d802d287a7f5ca7afd7f63cc85 /configs/boot/client.netperf.stream
parent7c2084dcfe7b7b2133a6c0055e52fab745550f81 (diff)
downloadgem5-989eb88576d1cbeca19e0b9ca5054a182411c15f.tar.xz
Scripts that can be used with server.readfile and client.readfile
to run the netperf benchmark --HG-- extra : convert_revision : a2ce490e0c44996d0876a6839ad333643ec252c8
Diffstat (limited to 'configs/boot/client.netperf.stream')
-rw-r--r--configs/boot/client.netperf.stream33
1 files changed, 33 insertions, 0 deletions
diff --git a/configs/boot/client.netperf.stream b/configs/boot/client.netperf.stream
new file mode 100644
index 000000000..925c0bbf6
--- /dev/null
+++ b/configs/boot/client.netperf.stream
@@ -0,0 +1,33 @@
+#!/bin/sh
+SERVER=10.0.0.1
+CLIENT=10.0.0.2
+
+echo "setting up network..."
+ifconfig lo 127.0.0.1
+ifconfig eth0 $CLIENT
+
+echo -n "waiting for server..."
+/usr/bin/netcat -c -l -p 8000
+
+BINARY=/usr/bin/netperf
+TEST="TCP_STREAM"
+SHORT_ARGS="-l -100k"
+LONG_ARGS="-k16384,0 -K16384,0 -- -m 65536 -M 65536 -s 262144 -S 262144"
+
+
+SHORT="$BINARY -H $SERVER -t $TEST $SHORT_ARGS"
+LONG="$BINARY -H $SERVER -t $TEST $LONG_ARGS"
+
+echo "starting test..."
+echo "netperf warmup"
+echo $SHORT
+eval $SHORT
+
+echo "netperf benchmark"
+echo $LONG
+/sbin/m5 ivlb 1
+/sbin/m5 resetstats
+/sbin/m5 dumpresetstats 2000000000 2000000000
+/sbin/m5 checkpoint 2000000000 2000000000
+eval $LONG
+/sbin/m5 exit