ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/SpinningTieredPhaserLoops.java
Revision: 1.5
Committed: Tue Mar 15 19:47:06 2011 UTC (13 years, 1 month ago) by jsr166
Branch: MAIN
CVS Tags: release-1_7_0
Changes since 1.4: +1 -1 lines
Log Message:
Update Creative Commons license URL in legal notices

File Contents

# Content
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/publicdomain/zero/1.0/
5 */
6
7 import java.util.*;
8 import java.util.concurrent.*;
9 //import jsr166y.*;
10
11 /*
12 * Based loosely on Java Grande Forum barrierBench
13 */
14
15 public class SpinningTieredPhaserLoops {
16 static final int NCPUS = Runtime.getRuntime().availableProcessors();
17 static final ExecutorService pool = Executors.newCachedThreadPool();
18 static final int FIRST_SIZE = 10000;
19 static final int LAST_SIZE = 1000000;
20 /** for time conversion */
21 static final long NPS = (1000L * 1000 * 1000);
22
23 static int tasksPerPhaser = Math.max(NCPUS / 4, 4);
24
25 static void build(Runnable[] actions, int sz, int lo, int hi, Phaser b) {
26 if (hi - lo > tasksPerPhaser) {
27 for (int i = lo; i < hi; i += tasksPerPhaser) {
28 int j = Math.min(i + tasksPerPhaser, hi);
29 build(actions, sz, i, j, new Phaser(b));
30 }
31 } else {
32 for (int i = lo; i < hi; ++i)
33 actions[i] = new PhaserAction(i, b, sz);
34 }
35 }
36
37 static final class PhaserAction implements Runnable {
38 final int id;
39 final int size;
40 final Phaser phaser;
41 public PhaserAction(int id, Phaser b, int size) {
42 this.id = id;
43 this.phaser = b;
44 this.size = size;
45 phaser.register();
46 }
47
48
49 public void run() {
50 int n = size;
51 Phaser b = phaser;
52 for (int i = 0; i < n; ++i) {
53 int p = b.arrive();
54 while (b.getPhase() == p) {
55 if ((ThreadLocalRandom.current().nextInt() & 127) == 0)
56 Thread.yield();
57 }
58 }
59 }
60 }
61
62 public static void main(String[] args) throws Exception {
63 int nthreads = NCPUS;
64 if (args.length > 0)
65 nthreads = Integer.parseInt(args[0]);
66 if (args.length > 1)
67 tasksPerPhaser = Integer.parseInt(args[1]);
68
69 System.out.printf("Max %d Threads, %d tasks per phaser\n", nthreads, tasksPerPhaser);
70
71 for (int k = 2; k <= nthreads; k *= 2) {
72 for (int size = FIRST_SIZE; size <= LAST_SIZE; size *= 10) {
73 long startTime = System.nanoTime();
74
75 Runnable[] actions = new Runnable [k];
76 build(actions, size, 0, k, new Phaser());
77 Future[] futures = new Future[k];
78 for (int i = 0; i < k; ++i) {
79 futures[i] = pool.submit(actions[i]);
80 }
81 for (int i = 0; i < k; ++i) {
82 futures[i].get();
83 }
84 long elapsed = System.nanoTime() - startTime;
85 long bs = (NPS * size) / elapsed;
86 System.out.printf("%4d Threads %8d iters: %11d barriers/sec\n",
87 k, size, bs);
88 }
89 }
90 pool.shutdown();
91 }
92
93 }