rust/src/test/bench/msgsend-ring-pipes.rs

113 lines
3.3 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// 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.
extern mod std;
use core::cell::Cell;
use core::pipes::recv;
use std::time;
use std::future;
proto! ring (
2012-07-06 01:14:27 -05:00
num:send {
num(uint) -> num
}
)
macro_rules! move_out (
2013-02-15 04:44:18 -06:00
($x:expr) => { unsafe { let y = *ptr::addr_of(&$x); y } }
)
fn thread_ring(i: uint,
count: uint,
+num_chan: ring::client::num,
+num_port: ring::server::num) {
2013-02-15 04:44:18 -06:00
let mut num_chan = Some(num_chan);
let mut num_port = Some(num_port);
// Send/Receive lots of messages.
2012-09-19 00:44:34 -05:00
for uint::range(0, 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;
num_chan2 <-> num_chan;
num_port2 <-> num_port;
num_chan = Some(ring::client::num(num_chan2.unwrap(), i * j));
let port = num_port2.unwrap();
2013-02-15 04:44:18 -06:00
match recv(port) {
2012-08-03 21:59:04 -05:00
ring::num(_n, p) => {
//log(error, _n);
2012-08-20 14:23:37 -05:00
num_port = Some(move_out!(p));
}
}
};
}
fn main() {
let args = os::args();
let args = if os::getenv(~"RUST_BENCH").is_some() {
~[~"", ~"100", ~"10000"]
} else if args.len() <= 1u {
~[~"", ~"100", ~"1000"]
} 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) = ring::init();
let mut num_chan = Cell(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) = ring::init();
let num_chan2 = Cell(num_chan.take());
let num_port = Cell(num_port);
2013-02-15 04:44:18 -06:00
let new_future = do future::spawn || {
let num_chan = num_chan2.take();
let num_port1 = num_port.take();
thread_ring(i, msg_per_task, num_chan, num_port1)
};
2013-02-15 04:44:18 -06:00
futures.push(new_future);
num_chan.put_back(new_chan);
};
// do our iteration
thread_ring(0, msg_per_task, num_chan.take(), num_port);
// synchronize
for futures.each |f| { f.get() };
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));
}