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

116 lines
3.1 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.
// This is like msgsend-ring-pipes but adapted to use Arcs.
// This also serves as a pipes test, because Arcs are implemented with pipes.
extern mod extra;
use extra::arc;
2013-09-18 01:48:56 -05:00
use extra::future::Future;
use extra::time;
use std::os;
use std::uint;
// A poor man's pipe.
type pipe = arc::RWArc<~[uint]>;
fn send(p: &pipe, msg: uint) {
p.write_cond(|state, cond| {
state.push(msg);
cond.signal();
})
}
fn recv(p: &pipe) -> uint {
p.write_cond(|state, cond| {
while state.is_empty() {
cond.wait();
}
state.pop().unwrap()
})
}
fn init() -> (pipe,pipe) {
let x = arc::RWArc::new(~[]);
2013-02-15 04:44:18 -06:00
((&x).clone(), x)
}
2013-05-08 19:03:17 -05:00
fn thread_ring(i: uint, count: uint, num_chan: pipe, num_port: pipe) {
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.
for j in range(0u, count) {
2012-08-22 19:24:52 -05:00
//error!("task %?, iter %?", i, j);
let num_chan2 = num_chan.take_unwrap();
let num_port2 = num_port.take_unwrap();
send(&num_chan2, i * j);
2013-02-15 04:44:18 -06:00
num_chan = Some(num_chan2);
let _n = recv(&num_port2);
//log(error, _n);
2013-02-15 04:44:18 -06:00
num_port = Some(num_port2);
};
}
fn main() {
let args = os::args();
let args = if os::getenv("RUST_BENCH").is_some() {
~[~"", ~"100", ~"10000"]
} else if args.len() <= 1u {
~[~"", ~"10", ~"100"]
} else {
2013-07-02 14:47:32 -05:00
args.clone()
};
let num_tasks = from_str::<uint>(args[1]).unwrap();
let msg_per_task = from_str::<uint>(args[2]).unwrap();
2013-11-16 15:26:15 -06:00
let (mut num_chan, num_port) = init();
let start = time::precise_time_s();
// create the ring
let mut futures = ~[];
for i in range(1u, num_tasks) {
2012-08-22 19:24:52 -05:00
//error!("spawning %?", i);
let (new_chan, num_port) = init();
let num_chan_2 = num_chan.clone();
2014-01-27 17:29:50 -06:00
let new_future = Future::spawn(proc() {
thread_ring(i, msg_per_task, num_chan_2, num_port)
2014-01-27 17:29:50 -06:00
});
2013-02-15 04:44:18 -06:00
futures.push(new_future);
2013-11-16 15:26:15 -06:00
num_chan = new_chan;
};
// do our iteration
2013-11-16 15:26:15 -06:00
thread_ring(0, msg_per_task, num_chan, num_port);
// synchronize
for f in futures.mut_iter() {
2013-05-06 21:29:04 -05:00
let _ = 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 f64) / elapsed;
println!("Sent {} messages in {} seconds", num_msgs, elapsed);
println!(" {} messages / second", rate);
println!(" {} μs / message", 1000000. / rate);
}