rust/src/test/bench/msgsend-ring-mutex-arcs.rs

116 lines
3.1 KiB
Rust
Raw Normal View History

// This test creates a bunch of tasks that simultaneously send to each
// other in a ring. The messages should all be basically
// independent.
// This is like msgsend-ring-pipes but adapted to use ARCs.
// This also serves as a pipes test, because ARCs are implemented with pipes.
// xfail-pretty
2012-09-05 14:32:05 -05:00
use future::future;
extern mod std;
2012-09-05 14:32:05 -05:00
use std::time;
use std::arc;
// A poor man's pipe.
2012-08-26 21:15:10 -05:00
type pipe = arc::MutexARC<~[uint]>;
fn send(p: &pipe, msg: uint) {
do p.access_cond |state, cond| {
vec::push(*state, msg);
cond.signal();
}
}
fn recv(p: &pipe) -> uint {
do p.access_cond |state, cond| {
while vec::is_empty(*state) {
cond.wait();
}
vec::pop(*state)
}
}
fn init() -> (pipe,pipe) {
2012-08-29 16:45:25 -05:00
let m = arc::MutexARC(~[]);
((&m).clone(), m)
}
fn thread_ring(i: uint,
count: uint,
+num_chan: pipe,
+num_port: pipe) {
2012-08-20 14:23:37 -05:00
let mut num_chan <- Some(num_chan);
let mut num_port <- Some(num_port);
// Send/Receive lots of messages.
for uint::range(0u, count) |j| {
2012-08-22 19:24:52 -05:00
//error!("task %?, iter %?", i, j);
let mut num_chan2 = option::swap_unwrap(&mut num_chan);
let mut num_port2 = option::swap_unwrap(&mut num_port);
send(&num_chan2, i * j);
2012-08-20 14:23:37 -05:00
num_chan = Some(num_chan2);
let _n = recv(&num_port2);
//log(error, _n);
2012-08-20 14:23:37 -05:00
num_port = Some(num_port2);
};
}
fn main(++args: ~[~str]) {
let args = if os::getenv(~"RUST_BENCH").is_some() {
~[~"", ~"100", ~"10000"]
} else if args.len() <= 1u {
~[~"", ~"10", ~"100"]
} else {
copy args
};
2012-09-21 21:37:57 -05:00
let num_tasks = uint::from_str(args[1]).get();
let msg_per_task = uint::from_str(args[2]).get();
let (num_chan, num_port) = init();
2012-08-20 14:23:37 -05:00
let mut num_chan = Some(num_chan);
let start = time::precise_time_s();
// create the ring
let mut futures = ~[];
for uint::range(1u, num_tasks) |i| {
2012-08-22 19:24:52 -05:00
//error!("spawning %?", i);
let (new_chan, num_port) = init();
2012-08-20 14:23:37 -05:00
let num_chan2 = ~mut None;
*num_chan2 <-> num_chan;
2012-08-20 14:23:37 -05:00
let num_port = ~mut Some(num_port);
let new_future = future::spawn(|move num_chan2, move num_port| {
2012-08-20 14:23:37 -05:00
let mut num_chan = None;
num_chan <-> *num_chan2;
2012-08-20 14:23:37 -05:00
let mut num_port1 = None;
num_port1 <-> *num_port;
thread_ring(i, msg_per_task,
option::unwrap(num_chan),
option::unwrap(num_port1))
});
vec::push(futures, new_future);
2012-08-20 14:23:37 -05:00
num_chan = Some(new_chan);
};
// do our iteration
thread_ring(0u, msg_per_task, option::unwrap(num_chan), num_port);
// synchronize
for futures.each |f| { future::get(f) };
let stop = time::precise_time_s();
// all done, report stats.
let num_msgs = num_tasks * msg_per_task;
let elapsed = (stop - start);
let rate = (num_msgs as float) / elapsed;
2012-08-22 19:24:52 -05:00
io::println(fmt!("Sent %? messages in %? seconds",
num_msgs, elapsed));
io::println(fmt!(" %? messages / second", rate));
io::println(fmt!(" %? μs / message", 1000000. / rate));
}