rust/src/test/bench/task-perf-one-million.rs

89 lines
2.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.
2012-02-15 13:52:43 -06:00
// Test for concurrent tasks
enum msg {
2012-12-13 16:18:47 -06:00
ready(oldcomm::Chan<msg>),
2012-02-15 13:52:43 -06:00
start,
done(int),
}
2012-12-13 16:18:47 -06:00
fn calc(children: uint, parent_ch: oldcomm::Chan<msg>) {
let port = oldcomm::Port();
let chan = oldcomm::Chan(&port);
let mut child_chs = ~[];
let mut sum = 0;
2012-02-15 13:52:43 -06:00
for iter::repeat (children) {
do task::spawn {
2012-02-15 13:52:43 -06:00
calc(0u, chan);
};
}
for iter::repeat (children) {
2012-12-13 16:18:47 -06:00
match oldcomm::recv(port) {
2012-08-03 21:59:04 -05:00
ready(child_ch) => {
child_chs.push(child_ch);
2012-02-15 13:52:43 -06:00
}
2012-08-23 16:44:58 -05:00
_ => fail ~"task-perf-one-million failed (port not ready)"
2012-02-15 13:52:43 -06:00
}
}
2012-12-13 16:18:47 -06:00
oldcomm::send(parent_ch, ready(chan));
2012-02-15 13:52:43 -06:00
2012-12-13 16:18:47 -06:00
match oldcomm::recv(port) {
2012-08-03 21:59:04 -05:00
start => {
for vec::each(child_chs) |child_ch| {
2012-12-13 16:18:47 -06:00
oldcomm::send(*child_ch, start);
}
2012-02-15 13:52:43 -06:00
}
2012-08-23 16:44:58 -05:00
_ => fail ~"task-perf-one-million failed (port not in start state)"
2012-02-15 13:52:43 -06:00
}
for iter::repeat (children) {
2012-12-13 16:18:47 -06:00
match oldcomm::recv(port) {
2012-08-03 21:59:04 -05:00
done(child_sum) => { sum += child_sum; }
2012-08-23 16:44:58 -05:00
_ => fail ~"task-perf-one-million failed (port not done)"
2012-02-15 13:52:43 -06:00
}
}
2012-12-13 16:18:47 -06:00
oldcomm::send(parent_ch, done(sum + 1));
2012-02-15 13:52:43 -06:00
}
fn main() {
let args = os::args();
let args = if os::getenv(~"RUST_BENCH").is_some() {
~[~"", ~"100000"]
} else if args.len() <= 1u {
~[~"", ~"100"]
2012-02-15 13:52:43 -06:00
} else {
args
2012-02-15 13:52:43 -06:00
};
let children = uint::from_str(args[1]).get();
2012-12-13 16:18:47 -06:00
let port = oldcomm::Port();
let chan = oldcomm::Chan(&port);
do task::spawn {
2012-02-15 13:52:43 -06:00
calc(children, chan);
};
2012-12-13 16:18:47 -06:00
match oldcomm::recv(port) {
2012-08-03 21:59:04 -05:00
ready(chan) => {
2012-12-13 16:18:47 -06:00
oldcomm::send(chan, start);
2012-02-15 13:52:43 -06:00
}
2012-08-23 16:44:58 -05:00
_ => fail ~"task-perf-one-million failed (port not ready)"
2012-02-15 13:52:43 -06:00
}
2012-12-13 16:18:47 -06:00
let sum = match oldcomm::recv(port) {
2012-08-03 21:59:04 -05:00
done(sum) => { sum }
2012-08-23 16:44:58 -05:00
_ => fail ~"task-perf-one-million failed (port not done)"
2012-02-15 13:52:43 -06:00
};
2012-08-22 19:24:52 -05:00
error!("How many tasks? %d tasks.", sum);
}