]> git.lizzy.rs Git - rust.git/blob - src/test/bench/shootout-pfib.rs
Honor hidden doc attribute of derivable trait methods
[rust.git] / src / test / bench / shootout-pfib.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11
12 /*
13   A parallel version of fibonacci numbers.
14
15   This version is meant mostly as a way of stressing and benchmarking
16   the task system. It supports a lot of old command-line arguments to
17   control how it runs.
18
19 */
20
21 extern crate getopts;
22 extern crate time;
23
24 use std::os;
25 use std::result::{Ok, Err};
26 use std::task;
27 use std::uint;
28
29 fn fib(n: int) -> int {
30     fn pfib(tx: &Sender<int>, n: int) {
31         if n == 0 {
32             tx.send(0);
33         } else if n <= 2 {
34             tx.send(1);
35         } else {
36             let (tx1, rx) = channel();
37             let tx2 = tx1.clone();
38             task::spawn(proc() pfib(&tx2, n - 1));
39             let tx2 = tx1.clone();
40             task::spawn(proc() pfib(&tx2, n - 2));
41             tx.send(rx.recv() + rx.recv());
42         }
43     }
44
45     let (tx, rx) = channel();
46     spawn(proc() pfib(&tx, n) );
47     rx.recv()
48 }
49
50 struct Config {
51     stress: bool
52 }
53
54 fn parse_opts(argv: Vec<~str> ) -> Config {
55     let opts = vec!(getopts::optflag("", "stress", ""));
56
57     let opt_args = argv.slice(1, argv.len());
58
59     match getopts::getopts(opt_args, opts.as_slice()) {
60       Ok(ref m) => {
61           return Config {stress: m.opt_present("stress")}
62       }
63       Err(_) => { fail!(); }
64     }
65 }
66
67 fn stress_task(id: int) {
68     let mut i = 0;
69     loop {
70         let n = 15;
71         assert_eq!(fib(n), fib(n));
72         i += 1;
73         println!("{}: Completed {} iterations", id, i);
74     }
75 }
76
77 fn stress(num_tasks: int) {
78     let mut results = Vec::new();
79     for i in range(0, num_tasks) {
80         let mut builder = task::task();
81         results.push(builder.future_result());
82         builder.spawn(proc() {
83             stress_task(i);
84         });
85     }
86     for r in results.iter() {
87         r.recv();
88     }
89 }
90
91 fn main() {
92     let args = os::args();
93     let args = if os::getenv("RUST_BENCH").is_some() {
94         vec!("".to_owned(), "20".to_owned())
95     } else if args.len() <= 1u {
96         vec!("".to_owned(), "8".to_owned())
97     } else {
98         args.move_iter().collect()
99     };
100
101     let opts = parse_opts(args.clone());
102
103     if opts.stress {
104         stress(2);
105     } else {
106         let max = uint::parse_bytes(args.get(1).as_bytes(), 10u).unwrap() as
107             int;
108
109         let num_trials = 10;
110
111         for n in range(1, max + 1) {
112             for _ in range(0, num_trials) {
113                 let start = time::precise_time_ns();
114                 let fibn = fib(n);
115                 let stop = time::precise_time_ns();
116
117                 let elapsed = stop - start;
118
119                 println!("{}\t{}\t{}", n, fibn, elapsed.to_str());
120             }
121         }
122     }
123 }