rust/src/test/bench/shootout-pfib.rs

117 lines
2.6 KiB
Rust
Raw Normal View History

// -*- rust -*-
/*
A parallel version of fibonacci numbers.
This version is meant mostly as a way of stressing and benchmarking
the task system. It supports a lot of command-line arguments to
control how it runs.
*/
use std;
import std::ivec;
import std::uint;
import std::time;
import std::str;
import std::int::range;
2011-08-11 21:14:38 -05:00
import std::io;
2011-07-07 19:28:20 -05:00
import std::getopts;
import std::task;
import std::u64;
2011-08-13 18:03:28 -05:00
import std::comm;
import std::comm::_port;
import std::comm::mk_port;
import std::comm::_chan;
import std::comm::send;
2011-07-27 07:19:39 -05:00
fn fib(n: int) -> int {
2011-08-13 18:03:28 -05:00
fn pfib(c: _chan[int], n: int) {
2011-07-27 07:19:39 -05:00
if n == 0 {
2011-08-13 18:03:28 -05:00
send(c, 0);
2011-07-27 07:19:39 -05:00
} else if (n <= 2) {
2011-08-13 18:03:28 -05:00
send(c, 1);
2011-07-27 07:19:39 -05:00
} else {
2011-08-13 18:03:28 -05:00
let p = mk_port[int]();
2011-08-13 18:03:28 -05:00
let t1 = task::_spawn(bind pfib(p.mk_chan(), n - 1));
let t2 = task::_spawn(bind pfib(p.mk_chan(), n - 2));
2011-08-13 18:03:28 -05:00
send(c, p.recv() + p.recv());
}
}
2011-08-13 18:03:28 -05:00
let p = mk_port();
let t = task::_spawn(bind pfib(p.mk_chan(), n));
ret p.recv();
}
2011-07-27 07:19:39 -05:00
type config = {stress: bool};
2011-07-07 19:28:20 -05:00
2011-08-11 23:37:27 -05:00
fn parse_opts(argv: [str]) -> config {
let opts = ~[getopts::optflag("stress")];
2011-07-07 19:28:20 -05:00
2011-08-11 23:37:27 -05:00
let opt_args = ivec::slice(argv, 1u, ivec::len(argv));
2011-07-07 19:28:20 -05:00
2011-07-27 07:19:39 -05:00
2011-08-12 01:27:32 -05:00
alt getopts::getopts(opt_args, opts) {
2011-07-27 07:19:39 -05:00
getopts::success(m) { ret {stress: getopts::opt_present(m, "stress")} }
getopts::failure(_) { fail; }
2011-07-07 19:28:20 -05:00
}
}
2011-07-27 07:19:39 -05:00
fn stress_task(id: int) {
let i = 0;
while true {
let n = 15;
assert (fib(n) == fib(n));
2011-07-07 19:28:20 -05:00
i += 1;
log_err #fmt("%d: Completed %d iterations", id, i);
}
}
2011-07-27 07:19:39 -05:00
fn stress(num_tasks: int) {
2011-08-13 18:03:28 -05:00
let tasks = [];
for each i: int in range(0, num_tasks) {
2011-08-13 18:03:28 -05:00
tasks += [task::_spawn(bind stress_task(i))];
2011-07-07 19:28:20 -05:00
}
2011-08-13 18:03:28 -05:00
for t in tasks { task::join_id(t); }
2011-07-07 19:28:20 -05:00
}
2011-07-27 07:19:39 -05:00
fn main(argv: vec[str]) {
2011-08-11 23:37:27 -05:00
let iargv = ivec::from_vec(argv);
if ivec::len(iargv) == 1u {
assert (fib(8) == 21);
log fib(8);
2011-07-27 07:19:39 -05:00
} else {
// Interactive mode! Wooo!!!!
2011-08-11 23:37:27 -05:00
let opts = parse_opts(iargv);
2011-07-27 07:19:39 -05:00
2011-07-27 07:19:39 -05:00
if opts.stress {
2011-07-07 19:28:20 -05:00
stress(2);
2011-07-27 07:19:39 -05:00
} else {
2011-08-12 01:36:43 -05:00
let max = uint::parse_buf(str::bytes(iargv.(1)), 10u) as int;
2011-07-27 07:19:39 -05:00
let num_trials = 10;
2011-08-11 21:14:38 -05:00
let out = io::stdout();
for each n: int in range(1, max + 1) {
for each i: int in range(0, num_trials) {
2011-07-27 07:19:39 -05:00
let start = time::precise_time_ns();
let fibn = fib(n);
let stop = time::precise_time_ns();
2011-07-27 07:19:39 -05:00
let elapsed = stop - start;
out.write_line(#fmt("%d\t%d\t%s", n, fibn,
u64::str(elapsed)));
2011-07-07 19:28:20 -05:00
}
}
}
}
}