rust/src/test/bench/msgsend.rs

71 lines
1.9 KiB
Rust
Raw Normal View History

2012-01-23 15:29:09 -08:00
// A port of the simplistic benchmark from
//
// http://github.com/PaulKeeble/ScalaVErlangAgents
//
// I *think* it's the same, more or less.
use std;
2012-08-14 13:38:35 -07:00
import io::Writer;
import io::WriterUtil;
2012-01-23 15:29:09 -08:00
enum request {
get_count,
bytes(uint),
stop
}
2012-08-15 14:10:46 -07:00
fn server(requests: comm::Port<request>, responses: comm::Chan<uint>) {
let mut count = 0u;
let mut done = false;
2012-01-23 15:29:09 -08:00
while !done {
2012-08-06 12:34:08 -07:00
match comm::recv(requests) {
2012-08-03 19:59:04 -07:00
get_count => { comm::send(responses, copy count); }
bytes(b) => { count += b; }
stop => { done = true; }
2012-01-23 15:29:09 -08:00
}
}
comm::send(responses, count);
}
fn run(args: ~[~str]) {
2012-08-08 16:38:26 -04:00
let (from_child, to_child) = do task::spawn_conversation |po, ch| {
server(po, ch);
2012-02-18 16:34:42 -08:00
};
let size = option::get(uint::from_str(args[1]));
let workers = option::get(uint::from_str(args[2]));
2012-01-23 15:29:09 -08:00
let start = std::time::precise_time_s();
let mut worker_results = ~[];
2012-06-30 16:19:07 -07:00
for uint::range(0u, workers) |_i| {
do task::task().future_result(|+r| {
vec::push(worker_results, r);
}).spawn {
2012-06-30 16:19:07 -07:00
for uint::range(0u, size / workers) |_i| {
2012-01-23 15:29:09 -08:00
comm::send(to_child, bytes(100u));
}
2012-02-18 16:34:42 -08:00
};
2012-01-23 15:29:09 -08:00
}
vec::iter(worker_results, |r| { future::get(&r); } );
2012-02-18 16:34:42 -08:00
comm::send(to_child, stop);
let result = comm::recv(from_child);
2012-01-23 15:29:09 -08:00
let end = std::time::precise_time_s();
let elapsed = end - start;
2012-08-22 17:24:52 -07:00
io::stdout().write_str(fmt!("Count is %?\n", result));
io::stdout().write_str(fmt!("Test took %? seconds\n", elapsed));
let thruput = ((size / workers * workers) as float) / (elapsed as float);
2012-08-22 17:24:52 -07:00
io::stdout().write_str(fmt!("Throughput=%f per sec\n", thruput));
2012-01-23 15:29:09 -08:00
}
fn main(args: ~[~str]) {
let args = if os::getenv(~"RUST_BENCH").is_some() {
~[~"", ~"1000000", ~"10000"]
} else if args.len() <= 1u {
~[~"", ~"10000", ~"4"]
} else {
args
2012-08-08 16:38:26 -04:00
};
2012-08-22 17:24:52 -07:00
debug!("%?", args);
run(args);
2012-01-23 15:29:09 -08:00
}