2012-12-10 17:32:48 -08:00
|
|
|
// 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.
|
|
|
|
|
2012-08-21 19:37:43 -04:00
|
|
|
// This test creates a bunch of tasks that simultaneously send to each
|
|
|
|
// other in a ring. The messages should all be basically
|
|
|
|
// independent.
|
2013-07-22 13:57:40 -07:00
|
|
|
// This is like msgsend-ring-pipes but adapted to use Arcs.
|
2012-08-21 19:37:43 -04:00
|
|
|
|
2013-07-22 13:57:40 -07:00
|
|
|
// This also serves as a pipes test, because Arcs are implemented with pipes.
|
2012-08-21 19:37:43 -04:00
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate sync;
|
2014-02-19 19:08:12 -08:00
|
|
|
extern crate time;
|
2013-05-24 19:35:29 -07:00
|
|
|
|
2014-01-30 15:04:47 -05:00
|
|
|
use sync::Arc;
|
|
|
|
use sync::MutexArc;
|
|
|
|
use sync::Future;
|
2013-05-24 19:35:29 -07:00
|
|
|
use std::os;
|
|
|
|
use std::uint;
|
2012-08-21 19:37:43 -04:00
|
|
|
|
|
|
|
// A poor man's pipe.
|
2014-01-30 15:04:47 -05:00
|
|
|
type pipe = MutexArc<~[uint]>;
|
2012-08-21 19:37:43 -04:00
|
|
|
|
|
|
|
fn send(p: &pipe, msg: uint) {
|
2013-05-24 19:35:29 -07:00
|
|
|
unsafe {
|
2013-11-21 19:20:48 -08:00
|
|
|
p.access_cond(|state, cond| {
|
2013-05-24 19:35:29 -07:00
|
|
|
state.push(msg);
|
|
|
|
cond.signal();
|
2013-11-21 19:20:48 -08:00
|
|
|
})
|
2012-08-21 19:37:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
fn recv(p: &pipe) -> uint {
|
2013-05-24 19:35:29 -07:00
|
|
|
unsafe {
|
2013-11-21 19:20:48 -08:00
|
|
|
p.access_cond(|state, cond| {
|
2013-06-08 21:38:47 -04:00
|
|
|
while state.is_empty() {
|
2013-05-24 19:35:29 -07:00
|
|
|
cond.wait();
|
|
|
|
}
|
2013-12-23 16:20:52 +01:00
|
|
|
state.pop().unwrap()
|
2013-11-21 19:20:48 -08:00
|
|
|
})
|
2012-08-21 19:37:43 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn init() -> (pipe,pipe) {
|
2014-01-30 15:04:47 -05:00
|
|
|
let m = MutexArc::new(~[]);
|
2013-02-15 02:44:18 -08:00
|
|
|
((&m).clone(), m)
|
2012-08-21 19:37:43 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-05-08 17:03:17 -07:00
|
|
|
fn thread_ring(i: uint, count: uint, num_chan: pipe, num_port: pipe) {
|
2013-02-15 02:44:18 -08:00
|
|
|
let mut num_chan = Some(num_chan);
|
|
|
|
let mut num_port = Some(num_port);
|
2012-08-21 19:37:43 -04:00
|
|
|
// Send/Receive lots of messages.
|
2013-08-03 12:45:23 -04:00
|
|
|
for j in range(0u, count) {
|
2012-08-22 17:24:52 -07:00
|
|
|
//error!("task %?, iter %?", i, j);
|
2013-07-17 15:31:20 -04:00
|
|
|
let num_chan2 = num_chan.take_unwrap();
|
|
|
|
let num_port2 = num_port.take_unwrap();
|
2012-08-21 19:37:43 -04:00
|
|
|
send(&num_chan2, i * j);
|
2013-02-15 02:44:18 -08:00
|
|
|
num_chan = Some(num_chan2);
|
2012-08-21 19:37:43 -04:00
|
|
|
let _n = recv(&num_port2);
|
|
|
|
//log(error, _n);
|
2013-02-15 02:44:18 -08:00
|
|
|
num_port = Some(num_port2);
|
2012-08-21 19:37:43 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-10-03 19:16:27 -07:00
|
|
|
fn main() {
|
|
|
|
let args = os::args();
|
2013-07-17 15:31:20 -04:00
|
|
|
let args = if os::getenv("RUST_BENCH").is_some() {
|
2012-08-21 19:37:43 -04:00
|
|
|
~[~"", ~"100", ~"10000"]
|
|
|
|
} else if args.len() <= 1u {
|
|
|
|
~[~"", ~"10", ~"100"]
|
|
|
|
} else {
|
2013-07-02 12:47:32 -07:00
|
|
|
args.clone()
|
2013-05-03 19:25:04 -04:00
|
|
|
};
|
2012-08-21 19:37:43 -04:00
|
|
|
|
2013-09-15 07:27:32 +02:00
|
|
|
let num_tasks = from_str::<uint>(args[1]).unwrap();
|
|
|
|
let msg_per_task = from_str::<uint>(args[2]).unwrap();
|
2012-08-21 19:37:43 -04:00
|
|
|
|
2013-11-16 13:26:15 -08:00
|
|
|
let (mut num_chan, num_port) = init();
|
2012-08-21 19:37:43 -04:00
|
|
|
|
|
|
|
let start = time::precise_time_s();
|
|
|
|
|
|
|
|
// create the ring
|
|
|
|
let mut futures = ~[];
|
|
|
|
|
2013-08-03 12:45:23 -04:00
|
|
|
for i in range(1u, num_tasks) {
|
2012-08-22 17:24:52 -07:00
|
|
|
//error!("spawning %?", i);
|
2012-08-21 19:37:43 -04:00
|
|
|
let (new_chan, num_port) = init();
|
2013-12-05 17:37:02 -08:00
|
|
|
let num_chan_2 = num_chan.clone();
|
2014-01-27 18:29:50 -05:00
|
|
|
let new_future = Future::spawn(proc() {
|
2013-12-05 17:37:02 -08:00
|
|
|
thread_ring(i, msg_per_task, num_chan_2, num_port)
|
2014-01-27 18:29:50 -05:00
|
|
|
});
|
2013-02-15 02:44:18 -08:00
|
|
|
futures.push(new_future);
|
2013-11-16 13:26:15 -08:00
|
|
|
num_chan = new_chan;
|
2012-08-21 19:37:43 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// do our iteration
|
2013-11-16 13:26:15 -08:00
|
|
|
thread_ring(0, msg_per_task, num_chan, num_port);
|
2012-08-21 19:37:43 -04:00
|
|
|
|
|
|
|
// synchronize
|
2013-08-03 12:45:23 -04:00
|
|
|
for f in futures.mut_iter() {
|
2013-05-06 19:29:04 -07:00
|
|
|
f.get()
|
|
|
|
}
|
2012-08-21 19:37:43 -04:00
|
|
|
|
|
|
|
let stop = time::precise_time_s();
|
|
|
|
|
|
|
|
// all done, report stats.
|
|
|
|
let num_msgs = num_tasks * msg_per_task;
|
|
|
|
let elapsed = (stop - start);
|
2013-09-26 02:26:09 -04:00
|
|
|
let rate = (num_msgs as f64) / elapsed;
|
2012-08-21 19:37:43 -04:00
|
|
|
|
2013-09-24 22:16:43 -07:00
|
|
|
println!("Sent {} messages in {} seconds", num_msgs, elapsed);
|
|
|
|
println!(" {} messages / second", rate);
|
|
|
|
println!(" {} μs / message", 1000000. / rate);
|
2012-08-21 19:37:43 -04:00
|
|
|
}
|