blob: 031908a20f60c0c675e5ca4e0fbb6dedcfe7ab7a [file] [log] [blame]
Rob Pikec30d81b2009-08-07 12:53:51 -07001/*
2Redistribution and use in source and binary forms, with or without
3modification, 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
17THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
21LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27POSSIBILITY 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
36package main
37
38import (
Robert Griesemer45ca9f72009-12-15 15:41:46 -080039 "flag"
40 "fmt"
41 "os"
Rob Pikec30d81b2009-08-07 12:53:51 -070042)
43
44var n = flag.Int("n", 1000, "how many passes")
45
46const Nthread = 503
47
48func f(i int, in <-chan int, out chan<- int) {
49 for {
Robert Griesemer45ca9f72009-12-15 15:41:46 -080050 n := <-in
Rob Pikec30d81b2009-08-07 12:53:51 -070051 if n == 0 {
Robert Griesemer45ca9f72009-12-15 15:41:46 -080052 fmt.Printf("%d\n", i)
53 os.Exit(0)
Rob Pikec30d81b2009-08-07 12:53:51 -070054 }
Robert Griesemer45ca9f72009-12-15 15:41:46 -080055 out <- n-1
Rob Pikec30d81b2009-08-07 12:53:51 -070056 }
57}
58
59func main() {
Robert Griesemer45ca9f72009-12-15 15:41:46 -080060 flag.Parse()
Rob Pikec30d81b2009-08-07 12:53:51 -070061
Robert Griesemer45ca9f72009-12-15 15:41:46 -080062 one := make(chan int) // will be input to thread 1
63 var in, out chan int = nil, one
Rob Pike5005fb42009-08-07 13:30:20 -070064 for i := 1; i <= Nthread-1; i++ {
Robert Griesemer45ca9f72009-12-15 15:41:46 -080065 in, out = out, make(chan int)
66 go f(i, in, out)
Rob Pikec30d81b2009-08-07 12:53:51 -070067 }
Robert Griesemer45ca9f72009-12-15 15:41:46 -080068 go f(Nthread, out, one)
69 one <- *n
70 <-make(chan int) // hang until ring completes
Rob Pikec30d81b2009-08-07 12:53:51 -070071}