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

73 lines
1.5 KiB
Rust
Raw Normal View History

2012-02-15 13:52:43 -06:00
// Test for concurrent tasks
enum msg {
ready(comm::chan<msg>),
start,
done(int),
}
fn calc(children: uint, parent_ch: comm::chan<msg>) {
let port = comm::port();
let chan = comm::chan(port);
let mut child_chs = ~[];
let mut sum = 0;
2012-02-15 13:52:43 -06:00
do iter::repeat (children) {||
do task::spawn {||
2012-02-15 13:52:43 -06:00
calc(0u, chan);
};
}
do iter::repeat (children) {||
2012-02-15 13:52:43 -06:00
alt check comm::recv(port) {
ready(child_ch) {
vec::push(child_chs, child_ch);
2012-02-15 13:52:43 -06:00
}
}
}
comm::send(parent_ch, ready(chan));
alt check comm::recv(port) {
start {
do vec::iter (child_chs) { |child_ch|
2012-02-15 13:52:43 -06:00
comm::send(child_ch, start);
}
}
}
do iter::repeat (children) {||
2012-02-15 13:52:43 -06:00
alt check comm::recv(port) {
done(child_sum) { sum += child_sum; }
}
}
comm::send(parent_ch, done(sum + 1));
}
fn main(args: ~[str]) {
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-02-15 13:52:43 -06:00
let port = comm::port();
let chan = comm::chan(port);
do task::spawn {||
2012-02-15 13:52:43 -06:00
calc(children, chan);
};
alt check comm::recv(port) {
ready(chan) {
comm::send(chan, start);
}
}
let sum = alt check comm::recv(port) {
done(sum) { sum }
};
#error("How many tasks? %d tasks.", sum);
}