ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/SpinningTieredPhaserLoops.java
Revision: 1.6
Committed: Sun Oct 21 06:40:21 2012 UTC (11 years, 6 months ago) by jsr166
Branch: MAIN
Changes since 1.5: +1 -2 lines
Log Message:
no blank line between javadoc and corresponding code

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