2012-08-21 18:37:43 -05:00
|
|
|
// 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;
|
2012-08-21 18:37:43 -05:00
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2012-09-05 14:32:05 -05:00
|
|
|
use std::time;
|
|
|
|
use std::arc;
|
2012-08-21 18:37:43 -05:00
|
|
|
|
|
|
|
// A poor man's pipe.
|
2012-08-26 21:15:10 -05:00
|
|
|
type pipe = arc::MutexARC<~[uint]>;
|
2012-08-21 18:37:43 -05:00
|
|
|
|
|
|
|
fn send(p: &pipe, msg: uint) {
|
|
|
|
do p.access_cond |state, cond| {
|
2012-09-26 19:33:34 -05:00
|
|
|
state.push(msg);
|
2012-08-21 18:37:43 -05:00
|
|
|
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(~[]);
|
2012-08-21 18:37:43 -05:00
|
|
|
((&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);
|
2012-08-21 18:37:43 -05:00
|
|
|
// Send/Receive lots of messages.
|
|
|
|
for uint::range(0u, count) |j| {
|
2012-08-22 19:24:52 -05:00
|
|
|
//error!("task %?, iter %?", i, j);
|
2012-08-21 18:37:43 -05:00
|
|
|
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);
|
2012-08-21 18:37:43 -05:00
|
|
|
let _n = recv(&num_port2);
|
|
|
|
//log(error, _n);
|
2012-08-20 14:23:37 -05:00
|
|
|
num_port = Some(num_port2);
|
2012-08-21 18:37:43 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-09-20 17:59:09 -05:00
|
|
|
fn main(++args: ~[~str]) {
|
2012-08-21 18:37:43 -05:00
|
|
|
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();
|
2012-08-21 18:37:43 -05:00
|
|
|
|
|
|
|
let (num_chan, num_port) = init();
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut num_chan = Some(num_chan);
|
2012-08-21 18:37:43 -05:00
|
|
|
|
|
|
|
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);
|
2012-08-21 18:37:43 -05:00
|
|
|
let (new_chan, num_port) = init();
|
2012-08-20 14:23:37 -05:00
|
|
|
let num_chan2 = ~mut None;
|
2012-08-21 18:37:43 -05:00
|
|
|
*num_chan2 <-> num_chan;
|
2012-08-20 14:23:37 -05:00
|
|
|
let num_port = ~mut Some(num_port);
|
2012-09-07 17:59:14 -05:00
|
|
|
let new_future = future::spawn(|move num_chan2, move num_port| {
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut num_chan = None;
|
2012-08-21 18:37:43 -05:00
|
|
|
num_chan <-> *num_chan2;
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut num_port1 = None;
|
2012-08-21 18:37:43 -05:00
|
|
|
num_port1 <-> *num_port;
|
|
|
|
thread_ring(i, msg_per_task,
|
|
|
|
option::unwrap(num_chan),
|
|
|
|
option::unwrap(num_port1))
|
2012-09-07 17:59:14 -05:00
|
|
|
});
|
2012-09-26 19:33:34 -05:00
|
|
|
futures.push(new_future);
|
2012-08-20 14:23:37 -05:00
|
|
|
num_chan = Some(new_chan);
|
2012-08-21 18:37:43 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
// do our iteration
|
|
|
|
thread_ring(0u, msg_per_task, option::unwrap(num_chan), num_port);
|
|
|
|
|
|
|
|
// synchronize
|
2012-09-19 18:55:01 -05:00
|
|
|
for futures.each |f| { future::get(f) };
|
2012-08-21 18:37:43 -05:00
|
|
|
|
|
|
|
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));
|
2012-08-21 18:37:43 -05:00
|
|
|
}
|