ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/PhaserLoops.java
(Generate patch)

Comparing jsr166/src/test/loops/PhaserLoops.java (file contents):
Revision 1.1 by dl, Sun Nov 1 21:28:56 2009 UTC vs.
Revision 1.5 by jsr166, Sun Oct 21 06:40:21 2012 UTC

# Line 1 | Line 1
1   /*
2   * Written by Doug Lea with assistance from members of JCP JSR-166
3   * Expert Group and released to the public domain, as explained at
4 < * http://creativecommons.org/licenses/publicdomain
4 > * http://creativecommons.org/publicdomain/zero/1.0/
5   */
6  
7   import java.util.*;
8   import java.util.concurrent.*;
9   //import jsr166y.*;
10  
11 < /*
11 > /**
12   * Based loosely on Java Grande Forum barrierBench
13   */
14
14   public class PhaserLoops {
15      static final int NCPUS = Runtime.getRuntime().availableProcessors();
16      static final ExecutorService pool = Executors.newCachedThreadPool();
# Line 35 | Line 34 | public class PhaserLoops {
34          public void run() {
35              int n = size;
36              Phaser b = phaser;
37 <            for(int i = 0; i < n; ++i)
37 >            for (int i = 0; i < n; ++i)
38                  b.arriveAndAwaitAdvance();
39          }
40      }
# Line 44 | Line 43 | public class PhaserLoops {
43          int nthreads = NCPUS;
44          if (args.length > 0)
45              nthreads = Integer.parseInt(args[0]);
46 <        
46 >
47          System.out.printf("max %d Threads\n", nthreads);
48 <        
48 >
49          for (int k = 2; k <= nthreads; k *= 2) {
50              for (int size = FIRST_SIZE; size <= LAST_SIZE; size *= 10) {
51                  long startTime = System.nanoTime();
52 <                
52 >
53                  Phaser phaser = new Phaser();
54                  PhaserAction[] actions = new PhaserAction[nthreads];
55                  for (int i = 0; i < k; ++i) {
56                      actions[i] = new PhaserAction(i, phaser, size);
57                  }
58 <                
58 >
59                  Future[] futures = new Future[k];
60                  for (int i = 0; i < k; ++i) {
61                      futures[i] = pool.submit(actions[i]);
# Line 72 | Line 71 | public class PhaserLoops {
71          }
72          pool.shutdown();
73      }
75    
76 }
77
74  
75 + }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines