2012-06-29 18:44:16 -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. It's designed to hammer the global kernel lock, so
|
|
|
|
// that things will look really good once we get that lock out of the
|
|
|
|
// message path.
|
|
|
|
|
2012-07-06 01:14:27 -05:00
|
|
|
// This version uses automatically compiled channel contracts.
|
2012-06-29 18:44:16 -05:00
|
|
|
|
|
|
|
// xfail-pretty
|
|
|
|
|
2012-09-05 14:32:05 -05:00
|
|
|
use future::future;
|
2012-06-29 18:44:16 -05:00
|
|
|
|
2012-09-11 19:46:20 -05:00
|
|
|
extern mod std;
|
2012-09-05 14:32:05 -05:00
|
|
|
use std::time;
|
2012-06-29 18:44:16 -05:00
|
|
|
|
2012-09-05 14:32:05 -05:00
|
|
|
use pipes::recv;
|
2012-06-29 18:44:16 -05:00
|
|
|
|
2012-08-22 20:10:48 -05:00
|
|
|
proto! ring (
|
2012-07-06 01:14:27 -05:00
|
|
|
num:send {
|
|
|
|
num(uint) -> num
|
2012-06-29 18:44:16 -05:00
|
|
|
}
|
2012-08-22 20:10:48 -05:00
|
|
|
)
|
2012-06-29 18:44:16 -05:00
|
|
|
|
|
|
|
fn macros() {
|
|
|
|
#macro[
|
2012-07-31 23:13:57 -05:00
|
|
|
[#move_out[x],
|
2012-10-01 14:47:02 -05:00
|
|
|
unsafe { let y <- *ptr::addr_of(&x); y }]
|
2012-06-29 18:44:16 -05:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
fn thread_ring(i: uint,
|
|
|
|
count: uint,
|
|
|
|
+num_chan: ring::client::num,
|
|
|
|
+num_port: ring::server::num) {
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut num_chan <- Some(num_chan);
|
|
|
|
let mut num_port <- Some(num_port);
|
2012-06-29 18:44:16 -05:00
|
|
|
// Send/Receive lots of messages.
|
2012-07-02 13:38:45 -05:00
|
|
|
for uint::range(0u, count) |j| {
|
2012-08-22 19:24:52 -05:00
|
|
|
//error!("task %?, iter %?", i, j);
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut num_chan2 = None;
|
|
|
|
let mut num_port2 = None;
|
2012-06-29 18:44:16 -05:00
|
|
|
num_chan2 <-> num_chan;
|
|
|
|
num_port2 <-> num_port;
|
2012-08-20 14:23:37 -05:00
|
|
|
num_chan = Some(ring::client::num(option::unwrap(num_chan2), i * j));
|
2012-06-29 18:44:16 -05:00
|
|
|
let port = option::unwrap(num_port2);
|
2012-08-06 14:34:08 -05:00
|
|
|
match recv(port) {
|
2012-08-03 21:59:04 -05:00
|
|
|
ring::num(_n, p) => {
|
2012-06-29 18:44:16 -05:00
|
|
|
//log(error, _n);
|
2012-08-20 14:23:37 -05:00
|
|
|
num_port = Some(move_out!(p));
|
2012-06-29 18:44:16 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-10-03 21:16:27 -05:00
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
2012-07-14 00:57:48 -05:00
|
|
|
let args = if os::getenv(~"RUST_BENCH").is_some() {
|
|
|
|
~[~"", ~"100", ~"10000"]
|
2012-06-29 18:44:16 -05:00
|
|
|
} else if args.len() <= 1u {
|
2012-07-14 00:57:48 -05:00
|
|
|
~[~"", ~"100", ~"1000"]
|
2012-06-29 18:44:16 -05:00
|
|
|
} 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-06-29 18:44:16 -05:00
|
|
|
|
|
|
|
let (num_chan, num_port) = ring::init();
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut num_chan = Some(num_chan);
|
2012-06-29 18:44:16 -05:00
|
|
|
|
|
|
|
let start = time::precise_time_s();
|
|
|
|
|
|
|
|
// create the ring
|
2012-07-11 18:49:02 -05:00
|
|
|
let mut futures = ~[];
|
2012-06-29 18:44:16 -05:00
|
|
|
|
2012-07-02 13:38:45 -05:00
|
|
|
for uint::range(1u, num_tasks) |i| {
|
2012-08-22 19:24:52 -05:00
|
|
|
//error!("spawning %?", i);
|
2012-06-29 18:44:16 -05:00
|
|
|
let (new_chan, num_port) = ring::init();
|
2012-08-20 14:23:37 -05:00
|
|
|
let num_chan2 = ~mut None;
|
2012-06-29 18:44:16 -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 = do future::spawn
|
|
|
|
|move num_chan2, move num_port| {
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut num_chan = None;
|
2012-06-29 18:44:16 -05:00
|
|
|
num_chan <-> *num_chan2;
|
2012-08-20 14:23:37 -05:00
|
|
|
let mut num_port1 = None;
|
2012-06-29 18:44:16 -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-06-29 18:44:16 -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-06-29 18:44:16 -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-06-29 18:44:16 -05:00
|
|
|
}
|