ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/loops/CyclicBarrierLoops.java
Revision: 1.6
Committed: Thu Dec 18 18:43:22 2014 UTC (9 years, 4 months ago) by jsr166
Branch: MAIN
Changes since 1.5: +1 -1 lines
Log Message:
fix some [rawtypes] warnings

File Contents

# User Rev Content
1 dl 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 jsr166 1.4 * http://creativecommons.org/publicdomain/zero/1.0/
5 dl 1.1 */
6    
7     import java.util.*;
8     import java.util.concurrent.*;
9     //import jsr166y.*;
10    
11 jsr166 1.5 /**
12 dl 1.1 * Based loosely on Java Grande Forum barrierBench
13     */
14     public class CyclicBarrierLoops {
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 final class CyclicBarrierAction implements Runnable {
23     final int id;
24     final int size;
25     final CyclicBarrier barrier;
26     public CyclicBarrierAction(int id, CyclicBarrier b, int size) {
27     this.id = id;
28     this.barrier = b;
29     this.size = size;
30     }
31    
32    
33     public void run() {
34     try {
35     int n = size;
36     CyclicBarrier b = barrier;
37 jsr166 1.3 for (int i = 0; i < n; ++i)
38 dl 1.1 b.await();
39     }
40 jsr166 1.3 catch (Exception ex) {
41 dl 1.1 throw new Error(ex);
42     }
43     }
44     }
45    
46     public static void main(String[] args) throws Exception {
47     int nthreads = NCPUS;
48    
49     if (args.length > 0)
50     nthreads = Integer.parseInt(args[0]);
51    
52     System.out.printf("max %d Threads\n", nthreads);
53 jsr166 1.2
54 dl 1.1 for (int k = 2; k <= nthreads; k *= 2) {
55     for (int size = FIRST_SIZE; size <= LAST_SIZE; size *= 10) {
56     long startTime = System.nanoTime();
57 jsr166 1.2
58 dl 1.1 CyclicBarrier barrier = new CyclicBarrier(k);
59     CyclicBarrierAction[] actions = new CyclicBarrierAction[k];
60     for (int i = 0; i < k; ++i) {
61     actions[i] = new CyclicBarrierAction(i, barrier, size);
62     }
63 jsr166 1.2
64 jsr166 1.6 Future<?>[] futures = new Future<?>[k];
65 dl 1.1 for (int i = 0; i < k; ++i) {
66     futures[i] = pool.submit(actions[i]);
67     }
68     for (int i = 0; i < k; ++i) {
69     futures[i].get();
70     }
71     long elapsed = System.nanoTime() - startTime;
72     long bs = (NPS * size) / elapsed;
73     System.out.printf("%4d Threads %8d iters: %11d barriers/sec\n",
74     k, size, bs);
75     }
76     }
77     pool.shutdown();
78     }
79 jsr166 1.2
80 dl 1.1 }