]> git.lizzy.rs Git - rust.git/blob - src/test/bench/shootout-pfib.rs
Merge pull request #20510 from tshepang/patch-6
[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
23 use std::sync::mpsc::{channel, Sender};
24 use std::os;
25 use std::result::Result::{Ok, Err};
26 use std::thread::Thread;
27 use std::time::Duration;
28
29 fn fib(n: int) -> int {
30     fn pfib(tx: &Sender<int>, n: int) {
31         if n == 0 {
32             tx.send(0).unwrap();
33         } else if n <= 2 {
34             tx.send(1).unwrap();
35         } else {
36             let (tx1, rx) = channel();
37             let tx2 = tx1.clone();
38             Thread::spawn(move|| pfib(&tx2, n - 1)).detach();
39             let tx2 = tx1.clone();
40             Thread::spawn(move|| pfib(&tx2, n - 2)).detach();
41             tx.send(rx.recv().unwrap() + rx.recv().unwrap());
42         }
43     }
44
45     let (tx, rx) = channel();
46     Thread::spawn(move|| pfib(&tx, n) ).detach();
47     rx.recv().unwrap()
48 }
49
50 struct Config {
51     stress: bool
52 }
53
54 fn parse_opts(argv: Vec<String> ) -> Config {
55     let opts = vec!(getopts::optflag("", "stress", ""));
56
57     let argv = argv.iter().map(|x| x.to_string()).collect::<Vec<_>>();
58     let opt_args = argv.slice(1, argv.len());
59
60     match getopts::getopts(opt_args, opts.as_slice()) {
61       Ok(ref m) => {
62           return Config {stress: m.opt_present("stress")}
63       }
64       Err(_) => { panic!(); }
65     }
66 }
67
68 fn stress_task(id: int) {
69     let mut i = 0i;
70     loop {
71         let n = 15i;
72         assert_eq!(fib(n), fib(n));
73         i += 1;
74         println!("{}: Completed {} iterations", id, i);
75     }
76 }
77
78 fn stress(num_tasks: int) {
79     let mut results = Vec::new();
80     for i in range(0, num_tasks) {
81         results.push(Thread::spawn(move|| {
82             stress_task(i);
83         }));
84     }
85     for r in results.into_iter() {
86         let _ = r.join();
87     }
88 }
89
90 fn main() {
91     let args = os::args();
92     let args = if os::getenv("RUST_BENCH").is_some() {
93         vec!("".to_string(), "20".to_string())
94     } else if args.len() <= 1u {
95         vec!("".to_string(), "8".to_string())
96     } else {
97         args.into_iter().map(|x| x.to_string()).collect()
98     };
99
100     let opts = parse_opts(args.clone());
101
102     if opts.stress {
103         stress(2);
104     } else {
105         let max = args[1].parse::<int>().unwrap();
106
107         let num_trials = 10;
108
109         for n in range(1, max + 1) {
110             for _ in range(0u, num_trials) {
111                 let mut fibn = None;
112                 let dur = Duration::span(|| fibn = Some(fib(n)));
113                 let fibn = fibn.unwrap();
114
115                 println!("{}\t{}\t{}", n, fibn, dur);
116             }
117         }
118     }
119 }