Rob Pike | c30d81b | 2009-08-07 12:53:51 -0700 | [diff] [blame] | 1 | /* |
| 2 | Redistribution and use in source and binary forms, with or without |
| 3 | modification, are permitted provided that the following conditions are met: |
| 4 | |
| 5 | * Redistributions of source code must retain the above copyright |
| 6 | notice, this list of conditions and the following disclaimer. |
| 7 | |
| 8 | * Redistributions in binary form must reproduce the above copyright |
| 9 | notice, this list of conditions and the following disclaimer in the |
| 10 | documentation and/or other materials provided with the distribution. |
| 11 | |
| 12 | * Neither the name of "The Computer Language Benchmarks Game" nor the |
| 13 | name of "The Computer Language Shootout Benchmarks" nor the names of |
| 14 | its contributors may be used to endorse or promote products derived |
| 15 | from this software without specific prior written permission. |
| 16 | |
| 17 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 18 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 19 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 20 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
| 21 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 22 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 23 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 24 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 25 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 26 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 27 | POSSIBILITY OF SUCH DAMAGE. |
| 28 | */ |
| 29 | |
| 30 | /* The Computer Language Benchmarks Game |
| 31 | * http://shootout.alioth.debian.org/ |
| 32 | * |
| 33 | * contributed by The Go Authors. |
| 34 | */ |
| 35 | |
| 36 | package main |
| 37 | |
| 38 | import ( |
Robert Griesemer | 45ca9f7 | 2009-12-15 15:41:46 -0800 | [diff] [blame] | 39 | "flag" |
| 40 | "fmt" |
| 41 | "os" |
Rob Pike | c30d81b | 2009-08-07 12:53:51 -0700 | [diff] [blame] | 42 | ) |
| 43 | |
| 44 | var n = flag.Int("n", 1000, "how many passes") |
| 45 | |
| 46 | const Nthread = 503 |
| 47 | |
| 48 | func f(i int, in <-chan int, out chan<- int) { |
| 49 | for { |
Robert Griesemer | 45ca9f7 | 2009-12-15 15:41:46 -0800 | [diff] [blame] | 50 | n := <-in |
Rob Pike | c30d81b | 2009-08-07 12:53:51 -0700 | [diff] [blame] | 51 | if n == 0 { |
Robert Griesemer | 45ca9f7 | 2009-12-15 15:41:46 -0800 | [diff] [blame] | 52 | fmt.Printf("%d\n", i) |
| 53 | os.Exit(0) |
Rob Pike | c30d81b | 2009-08-07 12:53:51 -0700 | [diff] [blame] | 54 | } |
Robert Griesemer | 45ca9f7 | 2009-12-15 15:41:46 -0800 | [diff] [blame] | 55 | out <- n-1 |
Rob Pike | c30d81b | 2009-08-07 12:53:51 -0700 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | |
| 59 | func main() { |
Robert Griesemer | 45ca9f7 | 2009-12-15 15:41:46 -0800 | [diff] [blame] | 60 | flag.Parse() |
Rob Pike | c30d81b | 2009-08-07 12:53:51 -0700 | [diff] [blame] | 61 | |
Robert Griesemer | 45ca9f7 | 2009-12-15 15:41:46 -0800 | [diff] [blame] | 62 | one := make(chan int) // will be input to thread 1 |
| 63 | var in, out chan int = nil, one |
Rob Pike | 5005fb4 | 2009-08-07 13:30:20 -0700 | [diff] [blame] | 64 | for i := 1; i <= Nthread-1; i++ { |
Robert Griesemer | 45ca9f7 | 2009-12-15 15:41:46 -0800 | [diff] [blame] | 65 | in, out = out, make(chan int) |
| 66 | go f(i, in, out) |
Rob Pike | c30d81b | 2009-08-07 12:53:51 -0700 | [diff] [blame] | 67 | } |
Robert Griesemer | 45ca9f7 | 2009-12-15 15:41:46 -0800 | [diff] [blame] | 68 | go f(Nthread, out, one) |
| 69 | one <- *n |
| 70 | <-make(chan int) // hang until ring completes |
Rob Pike | c30d81b | 2009-08-07 12:53:51 -0700 | [diff] [blame] | 71 | } |